An agentic software-development methodology: composable skills that push a coding agent through spec, plan, TDD and review instead of straight into code.
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
Tencent's skill-evolution harness: it rewrites a whole skill folder — SKILL.md, scripts and references together — and lands every decision as a real Git issue, PR and wiki entry you can review.
Take an OpenSearch search application from requirements to a running cluster — BM25, dense and sparse vectors, hybrid retrieval, agentic search and RAG, with relevance evaluation built in.
Auth0's official agent skill: a router that detects your framework and intent, then loads the right Auth0 guidance for login, MFA, Organizations, tenant audits, debugging or provider migration.