diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-23 22:56:11 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-23 22:56:11 +0200 |
| commit | 2900d9c81646f442369b4adf0c2fa85afb03ff29 (patch) | |
| tree | ed78074c8e22eec8277e8aa0eb81f4688bc32e00 /prompts/skills/auditing-code-quality | |
| parent | e6350999ce83c29b117af7b6b40e740ff3682d6f (diff) | |
Update
Diffstat (limited to 'prompts/skills/auditing-code-quality')
| -rw-r--r-- | prompts/skills/auditing-code-quality/SKILL.md | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/prompts/skills/auditing-code-quality/SKILL.md b/prompts/skills/auditing-code-quality/SKILL.md index 0cedbf6..4e5f700 100644 --- a/prompts/skills/auditing-code-quality/SKILL.md +++ b/prompts/skills/auditing-code-quality/SKILL.md @@ -85,5 +85,18 @@ create a task for every HIGH and MEDIUM severity finding. Each task should: - Have a clear, actionable description (e.g., "Refactor UserService to fix SRP violation"). - Include the principle, category, and file location in an annotation. -- Be tagged with `code-quality`. -- Use priority `H` for HIGH-severity findings and `M` for MEDIUM ones and `L` for LOW ones. +- Be tagged with `+code-quality` (separate arg, never quoted together with the description). +- Set priority via the `priority:H`, `priority:M`, or `priority:L` modifier (separate arg). + +**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 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 +``` |
