skills/simplify/SKILL.md
Use when the user asks to simplify or improve changed code.
npx skillsauth add goofansu/pi-stuff simplifyInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Review all changed files for reuse, quality, and efficiency. Fix any issues found.
Run git diff (or git diff HEAD if there are staged changes) to see what changed. If there are no git changes, review the most recently modified files that the user mentioned or that you edited earlier in this conversation.
Launch all three agents concurrently using the subagent tool. Pass each agent the full diff so it has the complete context.
Subagent tool (general-purpose):
description: "Code Reuse Review"
prompt: |
Review the following diff for code reuse opportunities.
## Diff
[paste full diff here]
## Your Job
For each change:
1. Search for existing utilities and helpers that could replace newly written code.
Look for similar patterns elsewhere in the codebase — common locations are utility
directories, shared modules, and files adjacent to the changed ones.
2. Flag any new function that duplicates existing functionality. Suggest the existing
function to use instead.
3. Flag any inline logic that could use an existing utility — hand-rolled string
manipulation, manual path handling, custom environment checks, ad-hoc type guards,
and similar patterns are common candidates.
## Report Format
For each finding, report:
- File and line
- What was written
- What existing utility/function should be used instead
- If no issues found, say "No reuse issues found."
Subagent tool (general-purpose):
description: "Code Quality Review"
prompt: |
Review the following diff for code quality issues.
## Diff
[paste full diff here]
## Your Job
Look for these hacky patterns:
1. **Redundant state**: state that duplicates existing state, cached values that could
be derived, observers/effects that could be direct calls
2. **Parameter sprawl**: adding new parameters to a function instead of generalizing
or restructuring existing ones
3. **Copy-paste with slight variation**: near-duplicate code blocks that should be
unified with a shared abstraction
4. **Leaky abstractions**: exposing internal details that should be encapsulated, or
breaking existing abstraction boundaries
5. **Stringly-typed code**: using raw strings where constants, enums (string unions),
or branded types already exist in the codebase
6. **Unnecessary JSX nesting**: wrapper elements that add no layout value — check if
inner component props already provide the needed behavior
7. **Nested conditionals**: ternary chains, nested if/else, or nested switch 3+ levels
deep — flatten with early returns, guard clauses, a lookup table, or if/else-if
8. **Unnecessary comments**: comments explaining WHAT the code does (well-named
identifiers already do that), narrating the change, or referencing the task/caller
— delete; keep only non-obvious WHY (hidden constraints, subtle invariants,
workarounds)
## Report Format
For each finding, report:
- File and line
- Pattern violated
- Suggested fix
- If no issues found, say "No quality issues found."
Subagent tool (general-purpose):
description: "Code Efficiency Review"
prompt: |
Review the following diff for efficiency issues.
## Diff
[paste full diff here]
## Your Job
Look for these efficiency problems:
1. **Unnecessary work**: redundant computations, repeated file reads, duplicate
network/API calls, N+1 patterns
2. **Missed concurrency**: independent operations run sequentially when they could
run in parallel
3. **Hot-path bloat**: new blocking work added to startup or per-request/per-render
hot paths
4. **Recurring no-op updates**: state/store updates inside polling loops, intervals,
or event handlers that fire unconditionally — add a change-detection guard so
downstream consumers aren't notified when nothing changed
5. **Unnecessary existence checks**: pre-checking file/resource existence before
operating (TOCTOU anti-pattern) — operate directly and handle the error
6. **Memory**: unbounded data structures, missing cleanup, event listener leaks
7. **Overly broad operations**: reading entire files when only a portion is needed,
loading all items when filtering for one
## Report Format
For each finding, report:
- File and line
- Problem category
- Suggested fix
- If no issues found, say "No efficiency issues found."
Wait for all three subagents to complete. Aggregate their findings and fix each issue directly. If a finding is a false positive or not worth addressing, note it and move on — do not argue with the finding, just skip it.
When done, briefly summarize what was fixed (or confirm the code was already clean).
data-ai
Use when the user asks to hand off the current session to a fresh agent.
development
Use when the user asks to research a topic online, find current information, compare options, or produce a research report.
content-media
Use when the user asks to transcribe audio files to text.
testing
Grilling session that challenges your plan against the existing domain model, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when user wants to stress-test a plan against their project's language and documented decisions.