← Back to registry
Simplify
verified
Reviews changed code for reuse, quality, and efficiency — then fixes issues found
by anthropicv1.0.00 downloads~ tokens
Install to project
curl -sL https://api.freeskill.cloud/skills/simplify/SKILL.md -o .claude/skills/simplify/SKILL.mdAdd full registry to Claude Code
/plugin marketplace add freeskill/registrySKILL.md
--- name: Simplify description: Reviews changed code for reuse, quality, and efficiency — then fixes issues found tags: [efficiency, quality, refactoring] author: anthropic version: 1.0.0 --- # Simplify Review the provided code changes and: 1. Identify duplication — is this logic already handled elsewhere? 2. Check efficiency — any unnecessary allocations, redundant work, or O(n²) where O(n) is possible? 3. Assess clarity — would a future reader understand this in 30 seconds? 4. Fix any issues found — produce the improved version, not just a list of suggestions Changes should be minimal. Don't rewrite code that isn't broken. Don't add abstractions for hypothetical future use.