summaryrefslogtreecommitdiff
path: root/prompts/skills/project-taskwarrior/4-annotate-update-task.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-21 16:14:03 +0200
committerPaul Buetow <paul@buetow.org>2026-02-21 16:14:03 +0200
commite91df0ffec673ed2e2c93424c51cb3ebabc5fe05 (patch)
tree8c25850fa2bd01f4a2db5d6caa667d5d2ec48f16 /prompts/skills/project-taskwarrior/4-annotate-update-task.md
parentd7eaade8a45bec55c274f4683ad209e94c0f3308 (diff)
add project taskwarrior
Diffstat (limited to 'prompts/skills/project-taskwarrior/4-annotate-update-task.md')
-rw-r--r--prompts/skills/project-taskwarrior/4-annotate-update-task.md40
1 files changed, 40 insertions, 0 deletions
diff --git a/prompts/skills/project-taskwarrior/4-annotate-update-task.md b/prompts/skills/project-taskwarrior/4-annotate-update-task.md
new file mode 100644
index 0000000..f96d46b
--- /dev/null
+++ b/prompts/skills/project-taskwarrior/4-annotate-update-task.md
@@ -0,0 +1,40 @@
+# Annotate / update task
+
+Use with `00-context.md`. Project name and global rules apply.
+
+## Reading task context
+
+When working on a task, **always read the full context:** description, summary, and **all annotations**. Annotations often contain progress, challenges, and references to files or documents — use them for further reference.
+
+View full task (including annotations):
+
+```bash
+task <id>
+```
+
+## Annotate a task
+
+```bash
+task <id> annotate "Note about progress or context"
+```
+
+While making progress, **add annotations** to reflect progress, challenges, or decisions. You may refer to files, documents, or other resources (paths, doc links, snippets) so the task history stays useful for later work and for the pre-completion review.
+
+## Modify a task
+
+```bash
+task <id> modify +<tag>
+task <id> modify depends:<id2>
+task <id> modify priority:H
+```
+
+## Delete a task
+
+```bash
+task <id> delete
+```
+
+## Conventions
+
+- Read description, summary, and all annotations when working on a task.
+- Annotate with implementation notes, progress, challenges, and references to files or documents as you go.