From 2900d9c81646f442369b4adf0c2fa85afb03ff29 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 23 Mar 2026 22:56:11 +0200 Subject: Update --- .../references/1-create-task.md | 24 +++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) (limited to 'prompts/skills/agent-task-management') diff --git a/prompts/skills/agent-task-management/references/1-create-task.md b/prompts/skills/agent-task-management/references/1-create-task.md index 02d1448..b9ec5e7 100644 --- a/prompts/skills/agent-task-management/references/1-create-task.md +++ b/prompts/skills/agent-task-management/references/1-create-task.md @@ -17,10 +17,20 @@ Use with `00-context.md`. Project name and global rules apply. New tasks get `+a ## Add a task -`ask add` already injects `project: +agent`, so only add the extra feature tag(s) and description: +`ask add` already injects `project: +agent`, so only add the extra feature tag(s), optional priority, and description. + +**Each part must be a separate shell argument — never quote tag and description together:** ```bash ask add + "Description" +ask add priority:H + "Description" +ask add priority:M + "Description" +``` + +Do NOT do this (causes tag/priority to appear in the description instead of being applied): +```bash +ask add "+ Description" # wrong: tag and desc in one quoted string +ask add "+ -p M Description" # wrong: everything in one quoted arg ``` Then add the workflow annotation using `uuid:` as returned by `ask add`: @@ -31,11 +41,19 @@ ask annotate uuid: "Agent workflow: load the agent-task-management skill a ## With dependency +Add the task first, then set the dependency separately: + ```bash -ask add + "Description" dep:add: +uuid=$(ask add + "Description") +ask dep add uuid:$uuid ``` -Multiple dependencies: `dep:add: +dep:add:`. +Multiple dependencies: + +```bash +ask dep add uuid:$uuid +ask dep add uuid:$uuid +``` After adding (with or without dependency), run the same annotations using the UUID from `ask info uuid:`. -- cgit v1.2.3