From code-simplifier
Simplify recently written or modified code for clarity, consistency, reuse, and maintainability without changing behavior. Apply three review lenses: reuse, quality, and efficiency. Use when the user asks to simplify, clean up, refine, polish, or make code clearer; after a feature, bug fix, or refactor leaves code working but harder to read; or when changed code feels too nested, repetitive, clever, or inconsistent with the surrounding project style.
How this skill is triggered — by the user, by Claude, or both
Slash command
/code-simplifier:code-simplifierThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Simplify only the relevant changed code unless the user explicitly asks for a broader sweep. Preserve behavior, outputs, error semantics, side effects, and public interfaces.
Simplify only the relevant changed code unless the user explicitly asks for a broader sweep. Preserve behavior, outputs, error semantics, side effects, and public interfaces.
Default to a single-agent simplification pass. Use spawn_agent only when the user explicitly asks for delegation, parallel subagents, or a multi-agent review and the touched scope is broad enough to benefit.
AGENTS.md, nearby code, formatter and lint rules, and type patterns.spawn_agent for bounded subtasks that can run in parallel with your local work.fork_context only when the subagent truly needs the same conversation history.explorer agents for read-heavy simplification analysis. Reserve worker agents for implementation only when the write scope can be split into disjoint files or modules.explorer subagents: one for reuse opportunities, one for quality/readability issues, and one for obvious efficiency cleanup in the touched scope.wait_agent sparingly. Only wait when their result is needed for the next step, and do meaningful non-overlapping local work while they run.send_input when a follow-up stays on the same narrow problem; otherwise spawn a new bounded task.worker subagents only when the user explicitly wants parallel implementation and each worker can own a disjoint write set. Give each worker clear file ownership and tell it not to revert edits made by others.gpt-5.5 when available and fall back to gpt-5.4 when it is not.gpt-5.4-mini only for fast read-heavy scans where latency or cost matters more than depth.Simplify this codeClean up this implementationMake this clearer without changing behaviorPolish the refactorReduce the complexity in this functionReview this refactor for reuse, quality, and efficiencyReview this refactor in parallel with subagentsUse subagents to scan this diff for reuse, quality, and efficiencyGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.
npx claudepluginhub scavanna/fork014_agent-skills --plugin opus-4-7-prompt-writer