Claude Code skills for production-ready code cleanup.
| Skill | Description |
|---|---|
production-clean-js |
Cleans JS/TS (React, Next.js) projects |
production-clean-python |
Cleans Python/Django projects |
There is no combined
production-cleanskill. Install the one that matches your stack, or install both.
JavaScript / TypeScript (React, Next.js):
npx skills add Reyretee/claude-clean --skill production-clean-jsPython / Django:
npx skills add Reyretee/claude-clean --skill production-clean-pythonBoth:
npx skills add Reyretee/claude-clean --skill production-clean-js
npx skills add Reyretee/claude-clean --skill production-clean-pythonAfter installation, open Claude Code in your project and run:
/production-clean-js
or
/production-clean-python
Claude will:
- Scan your project for code pollution
- Show a summary and ask for confirmation before touching anything
- Clean only what you approve
- Generate a
production-clean-report.md
production-clean-js — JavaScript / TypeScript:
console.log,console.debug,debuggerstatements- Unused imports
- Unused variables and destructured values
- Commented-out code and meaningless comments
production-clean-python — Python / Django:
print(),pprint(),breakpoint(),pdb.set_trace()- Unused imports
- Unused variables
- Commented-out code blocks
JS/TS: console.error/warn, JSDoc comments, index.ts re-exports, .d.ts files, config files, Next.js special files
Python/Django: settings.py, migrations/, @receiver signal handlers, @admin.register decorators, __init__.py public imports, urls.py lazy imports