diff --git a/tasks.md b/tasks.md
index 9988702..733c79f 100644
--- a/tasks.md
+++ b/tasks.md
@@ -53,6 +53,54 @@ Uses [custom module](https://github.com/karlb/doagain/blob/master/remotestorage-
See https://github.com/SolidOS/issue-pane
+When you create an issue tracker, it creates a folder on your pod, with an index.ttl and a state.ttl file in there, for instance:
+
+* https://michielbdejong.solidcommunity.net/shops/Tracker/id1718099958673/index.ttl
+```turtle
+@prefix : <#>.
+@prefix dc: .
+@prefix foaf: .
+@prefix wf: .
+@prefix xsd: .
+@prefix c: .
+
+:this
+ a wf:Tracker;
+ dc:author c:me;
+ dc:created
+ "2024-06-11T09:59:31Z"^^xsd:dateTime, "2024-06-11T09:59:32Z"^^xsd:dateTime;
+ wf:assigneeClass foaf:Person;
+ wf:initialState wf:Open;
+ wf:issueClass wf:Task;
+ wf:stateStore .
+```
+* https://michielbdejong.solidcommunity.net/shops/Tracker/id1718099958673/state.ttl
+```
+@prefix : <#>.
+@prefix dc: .
+@prefix dct: .
+@prefix foaf: .
+@prefix sioc: .
+@prefix wf: .
+@prefix xsd: .
+@prefix ind: .
+@prefix c: .
+
+ind:this wf:stateStore <>.
+
+:Iss1718100013562
+ a wf:Open;
+ dc:title "get coffee";
+ dct:created "2024-06-11T10:00:13Z"^^xsd:dateTime;
+ wf:description "description\n";
+ wf:message :Msg1718100029761;
+ wf:tracker ind:this.
+:Msg1718100029761
+ dct:created "2024-06-11T10:00:29Z"^^xsd:dateTime;
+ sioc:content "comment";
+ foaf:maker c:me.
+```
+
## Solid-Focus
See https://github.com/NoelDeMartin/solid-focus/blob/master/src/models/soukai/Task.ts