summaryrefslogtreecommitdiff
path: root/prompts
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-04-11 22:17:03 +0300
committerPaul Buetow <paul@buetow.org>2026-04-11 22:17:03 +0300
commit57a667c8c1f3701d335fc551c6b867340bbb4f29 (patch)
tree2f78ccb7219af8a7c3c7aa9d223a36ece17ccff2 /prompts
parent64420306d30d19baa5c72e02c639a63e54804fd2 (diff)
Update
Diffstat (limited to 'prompts')
-rw-r--r--prompts/skills/auditing-code-quality/SKILL.md20
1 files 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
```