simplify · v1.0.0 · 2026-03-21 · sha256 f3679b063dfefb9d
simplify v1.0.0A
Immutable. This exact content is served forever at /api/v1/blob/f3679b063dfefb9d.
--- name: simplify description: Run code simplification on a target path category: shortcut aliases: [simple] tags: [simplify, refactor, complexity] version: "1.0.0" --- # simplify Run the SimplifyCodeWorkflow on a target path to find and reduce unnecessary complexity. ## Context (pre-computed) ```bash git diff --name-only HEAD~1 2>/dev/null || echo "No recent commits" ``` ## Instructions Use `AskUserQuestion` to scope: - Which path to simplify? (recently changed files, specific module, or full src/) - Minimum complexity threshold? (default: 5) Then run: ```bash uv run attune workflow run simplify-code --path <target> ``` Present results as a table of hotspots with file, function, complexity score, and suggested simplification.