simplify
Installation
SKILL.md
Simplify
This is an expanded profile of code-simplification that adds multi-agent parallel review. For the canonical simplification workflow, see skills/code-simplification/SKILL.md.
Workflow
- Identify recently changed files via
git diff --stat - Spawn three parallel review agents:
| Agent | Focus | Finds |
|---|---|---|
| Code Reuse | Duplication | Repeated logic, extractable functions, copy-paste patterns |
| Quality | Complexity | Dead code, poor naming, deep nesting, missing error handling |
| Efficiency | Performance | Redundant allocations, unnecessary iterations, missing caches |
- Aggregate findings: deduplicate, sort by impact (bugs > performance > readability > style)
- Apply fixes one at a time, verifying after each
- Report confidence (0.0-1.0)