mit einem Klick
cleanup-guide
Detect unnecessary files and provide cleanup recommendations
Menü
Detect unnecessary files and provide cleanup recommendations
Patterns for configuring agent tools correctly
Philosophical/meta project analysis - critical analysis framework that asks "why?"
Smart routing wizard for creating skills, agents, commands with complexity-based skill loading
Language, style, and comment quality guidelines for plugin content
Protocol-based workflow enforcement with validation dependencies and anti-bypass protection
Analyze vague user ideas and recommend architecture based on actual needs, not predefined categories. Front-end for clarifying ambiguous requests before routing to appropriate skillmaker tools.
| name | cleanup-guide |
| description | Detect unnecessary files and provide cleanup recommendations |
| allowed-tools | ["Read","Glob","Grep","Bash"] |
Detect and clean unnecessary files in plugin/project directories.
| Category | Risk | Examples | Action |
|---|---|---|---|
| SENSITIVE | HIGH | .env, *.pem, credentials.json | Immediate gitignore + secret rotation |
| DELETE | MEDIUM | *.log, __pycache__, node_modules | Remove with cleanup commands |
| GITIGNORE | LOW | .DS_Store, .idea/ | Add to .gitignore |
# Run validation with W036 check
python3 scripts/validate_all.py . 2>&1 | grep -A 50 "W036"
See references/file-patterns.md for complete pattern list.
After identifying issues, generate cleanup script:
# Logs
rm -f *.log firebase-debug.log npm-debug.log
# Caches
rm -rf __pycache__ .pytest_cache .mypy_cache .cache
# Large dirs (careful!)
rm -rf node_modules
# Update gitignore
cat >> .gitignore << 'EOF'
*.log
__pycache__/
.DS_Store
.env
EOF
This skill is automatically called by /forge-editor:wizard validate via W036 check.