summaryrefslogtreecommitdiff
path: root/prompts/skills
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-04-08 10:07:38 +0300
committerPaul Buetow <paul@buetow.org>2026-04-08 10:07:38 +0300
commit43f00f6e00785c1d4ecedc4df59806674345c809 (patch)
tree438e4c2a320256da06e18589c535afa02dd12c85 /prompts/skills
parent0c9a4cc33db108ef816dd413b356ec9b69872390 (diff)
prompts: rename task CLI examples from ask to do
Update agent command docs and auditing-code-quality skill so examples match the Hexai task binary (do, formerly ask). Made-with: Cursor
Diffstat (limited to 'prompts/skills')
-rw-r--r--prompts/skills/auditing-code-quality/SKILL.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/prompts/skills/auditing-code-quality/SKILL.md b/prompts/skills/auditing-code-quality/SKILL.md
index 4e5f700..a0465ec 100644
--- a/prompts/skills/auditing-code-quality/SKILL.md
+++ b/prompts/skills/auditing-code-quality/SKILL.md
@@ -91,12 +91,12 @@ create a task for every HIGH and MEDIUM severity finding. Each task should:
**Exact command format** — keep each part as a separate argument, never quoted together:
```bash
-ask add priority:H +code-quality "Refactor UserService to fix SRP violation"
-ask add priority:M +code-quality "Fix high cognitive complexity in parser.go"
+do add priority:H +code-quality "Refactor UserService to fix SRP violation"
+do add priority:M +code-quality "Fix high cognitive complexity in parser.go"
```
Do NOT do this (causes tag to land in description):
```bash
-ask add "+code-quality Fix foo" # wrong: tag+desc quoted as one arg
-ask add "+code-quality -p M Fix foo" # wrong: everything in one quoted arg
+do add "+code-quality Fix foo" # wrong: tag+desc quoted as one arg
+do add "+code-quality -p M Fix foo" # wrong: everything in one quoted arg
```