From 43f00f6e00785c1d4ecedc4df59806674345c809 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 8 Apr 2026 10:07:38 +0300 Subject: 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 --- prompts/skills/auditing-code-quality/SKILL.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'prompts/skills') 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 ``` -- cgit v1.2.3