summaryrefslogtreecommitdiff
path: root/prompts/skills/agent-task-management/references/5-review-overview-tasks.md
diff options
context:
space:
mode:
Diffstat (limited to 'prompts/skills/agent-task-management/references/5-review-overview-tasks.md')
-rw-r--r--prompts/skills/agent-task-management/references/5-review-overview-tasks.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/prompts/skills/agent-task-management/references/5-review-overview-tasks.md b/prompts/skills/agent-task-management/references/5-review-overview-tasks.md
index 9045a65..324c640 100644
--- a/prompts/skills/agent-task-management/references/5-review-overview-tasks.md
+++ b/prompts/skills/agent-task-management/references/5-review-overview-tasks.md
@@ -7,13 +7,13 @@ Use with `00-context.md`. Project name and global rules apply.
Only list tasks that have `+agent` (project + tag matching). When listing, order by **priority first, then urgency**:
```bash
-~/go/bin/ask list sort:priority-,urgency-
+ask list sort:priority-,urgency-
```
By tag (keep `+agent`, same order):
```bash
-~/go/bin/ask list +<tag> sort:priority-,urgency-
+ask list +<tag> sort:priority-,urgency-
```
## Picking what to work on (next task)
@@ -23,14 +23,14 @@ By tag (keep `+agent`, same order):
**Check already-started tasks first.** Before suggesting or starting a new task:
```bash
-~/go/bin/ask list start.any: sort:priority-,urgency-
+ask list start.any: sort:priority-,urgency-
```
- If any tasks are already started, **use one of those** (pick by priority, then urgency) — do not start a second task unless the user explicitly asks.
- Only if no tasks are in progress, show the next actionable (READY) task, ordered by priority then urgency:
```bash
-~/go/bin/ask ready
+ask ready
```
Once you have chosen a task from one of these lists, **use its alias ID** from the list output for all subsequent operations and handoffs. When returning or recording the chosen task for another agent or a later step, **include its alias ID**.
@@ -38,7 +38,7 @@ Once you have chosen a task from one of these lists, **use its alias ID** from t
## View task details
```bash
-~/go/bin/ask info <id>
+ask info <id>
```
Always read description, summary, and **all annotations** when working on or reviewing a task.
@@ -48,14 +48,14 @@ Always read description, summary, and **all annotations** when working on or rev
Dependency tree (all agent tasks):
```bash
-~/go/bin/ask list
+ask list
```
Blocked vs ready (with `+agent`):
```bash
-~/go/bin/ask list +BLOCKED sort:priority-,urgency-
-~/go/bin/ask ready
+ask list +BLOCKED sort:priority-,urgency-
+ask ready
```
## Conventions