summaryrefslogtreecommitdiff
path: root/prompts/skills/agent-task-management/references/2-start-task.md
diff options
context:
space:
mode:
Diffstat (limited to 'prompts/skills/agent-task-management/references/2-start-task.md')
-rw-r--r--prompts/skills/agent-task-management/references/2-start-task.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/prompts/skills/agent-task-management/references/2-start-task.md b/prompts/skills/agent-task-management/references/2-start-task.md
index 78af213..ac3a234 100644
--- a/prompts/skills/agent-task-management/references/2-start-task.md
+++ b/prompts/skills/agent-task-management/references/2-start-task.md
@@ -15,7 +15,7 @@ The task itself should already contain references to all required context (added
## Finding a task
```bash
-ask ready | head
+do ready | head
```
## Mark task as started
@@ -23,7 +23,7 @@ ask ready | head
When you begin working on a task, **always mark it as started** so current work is visible:
```bash
-ask start <id>
+do start <id>
```
Do this as soon as you start work on the task.
@@ -31,6 +31,6 @@ Do this as soon as you start work on the task.
## Conventions
- Start each new task with a fresh context; rely on the task's description and annotations for all required context.
-- Run `ask start <id>` when you start working on the task, not only when listing or completing.
+- Run `do start <id>` when you start working on the task, not only when listing or completing.
- Do not start a second task for the same project while one is already started and not done, unless the user explicitly asks.
- When a task is selected via the review/overview step, use the alias ID from the list or task details for subsequent `start` operations.