CodebuffAI / cleanup
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/cleanup && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/1586" && unzip -o skill.zip -d .claude/skills/cleanup && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/cleanup/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Simplify and clean code
0 views
0 installs
Skill Content
--- name: cleanup description: Simplify and clean code --- # Cleanup Please review the uncommitted changes (staged and unstaged) and find ways to simplify the code. Clean up logic. Find a simpler design. Reuse existing functions. Move utilities to utility files. Lower the cyclomatic complexity. Remove try/catch statements when not completely necessary.