clean-codebase
Installation
SKILL.md
clean-codebase
When to Use
Use this skill when a codebase has accumulated hygiene debt:
- Lint warnings have piled up during rapid development
- Unused imports and variables clutter files
- Dead code paths exist but were never removed
- Formatting is inconsistent across files
- Static analysis tools report fixable issues
Do NOT use for architectural refactoring, bug fixes, or business logic changes. This skill focuses purely on hygiene and automated cleanup.
Inputs
| Parameter | Type | Required | Description |
|---|---|---|---|
codebase_path |
string | Yes | Absolute path to codebase root |
Related skills