From 57a667c8c1f3701d335fc551c6b867340bbb4f29 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 11 Apr 2026 22:17:03 +0300 Subject: Update --- prompts/skills/auditing-code-quality/SKILL.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/prompts/skills/auditing-code-quality/SKILL.md b/prompts/skills/auditing-code-quality/SKILL.md index a0465ec..390cc2e 100644 --- a/prompts/skills/auditing-code-quality/SKILL.md +++ b/prompts/skills/auditing-code-quality/SKILL.md @@ -1,13 +1,15 @@ --- name: auditing-code-quality description: > - Full code quality audit combining SOLID principles, system-level architecture - principles, and Go best practices. Use when asked to "audit code quality", - "full design review", "check all principles", "code health check", or - "architecture and code audit". Triggers on: audit, code quality, design review, - full review, health check. + Run a comprehensive code quality audit by orchestrating specialized skills + for Go best practices, SOLID principles, and system-level architecture, then + create actionable tasks for the findings. Use when asked to "audit code + quality", "full design review", "code health check", or "architecture and + code audit". --- +References are relative to /home/paul/.agents/skills/auditing-code-quality. + # Auditing Code Quality Run a comprehensive code quality audit by invoking three specialized skills in @@ -91,12 +93,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 -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" +~/go/bin/do add priority:H +code-quality "Refactor UserService to fix SRP violation" +~/go/bin/do add priority:M +code-quality "Fix high cognitive complexity in parser.go" ``` Do NOT do this (causes tag to land in description): ```bash -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 +~/go/bin/do add "+code-quality Fix foo" # wrong: tag+desc quoted as one arg +~/go/bin/do add "+code-quality -p M Fix foo" # wrong: everything in one quoted arg ``` -- cgit v1.2.3