diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-27 22:57:35 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-27 22:57:35 +0200 |
| commit | 4d4d27cf2403b8e0e717ac48bf866c3ee9e2fe1a (patch) | |
| tree | 8e92cfbdbac81a74d4461a40ceea6fe035bf8f69 /prompts/skills/taskwarrior-task-management/references/4-annotate-update-task.md | |
| parent | 40c58a284ee0bc78d79e87234e5670f1adc3dd03 (diff) | |
add references
Diffstat (limited to 'prompts/skills/taskwarrior-task-management/references/4-annotate-update-task.md')
| -rw-r--r-- | prompts/skills/taskwarrior-task-management/references/4-annotate-update-task.md | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/prompts/skills/taskwarrior-task-management/references/4-annotate-update-task.md b/prompts/skills/taskwarrior-task-management/references/4-annotate-update-task.md new file mode 100644 index 0000000..067af8b --- /dev/null +++ b/prompts/skills/taskwarrior-task-management/references/4-annotate-update-task.md @@ -0,0 +1,44 @@ +# Annotate / update task + +Use with `00-context.md`. Project name and global rules apply. Only annotate, modify, or delete tasks that have both `project:<name>` and the `+agent` tag. Use numeric IDs only within a single report; for any stored or shared reference (annotations, docs, handoffs), **refer to tasks by UUID** and prefer `uuid:<uuid>` selectors when running commands. + +## 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 uuid:<uuid> 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. + +Whenever you mention another task inside an annotation (for example, as a dependency or related work), include that other task’s **UUID**, not just its numeric ID. + +## Modify a task + +```bash +task <id> modify +<tag> +task <id> modify depends:<id2> +task <id> modify priority:H +``` + +Use `uuid:<uuid>` in place of `<id>` when modifying tasks selected earlier or referenced from annotations or other docs, so changes are applied to the correct task even if IDs have been renumbered. + +## 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. |
