Code Simplifier
Summary
Clean up code for clarity, consistency, and maintainability without changing what it does.
Features
- Simplifies for clarity while preserving behaviour
- Improves consistency with surrounding code
- Explicit about what it will not change
Install This Skill
Add this skill to your favorite AI agent in a few steps.
Skill Content
Description
A refactoring skill with a firm constraint: behaviour must not change. Everything it does is in service of the next person to read the code.
It removes unnecessary indirection, collapses redundant branches, improves naming, aligns the code with the conventions used elsewhere in the file, and deletes dead paths. It does not add features, change interfaces, or "improve" logic it thinks is wrong — those are separate decisions requiring separate review.
That restraint is the point. Refactoring changes that quietly alter behaviour are the ones that reach production, because the diff looks cosmetic and nobody reads it carefully. Published by Sentry.
Related Skills
Deno Guidance
by Deno
Deno's official foundational skill — project setup, package choices, configuration, and CLI commands done the current way.
Gradio App Builder
by Hugging Face
Build Gradio web UIs and ML demos in Python with the current API — components, layouts, events, and chat interfaces.
Cloudflare Platform
by Cloudflare
Cloudflare's official platform skill — Workers, Pages, storage, AI, networking, security, and IaC in one reference.
Verification Before Completion
by Jesse Vincent
Never claim work is complete, fixed, or passing without running the check and reading the output first.