Loading...
Loading...
Scan disk space usage, identify safely deletable caches, compilation artifacts, installation packages, etc., and perform interactive cleanup to free up space
npx skill4agent add majiayu000/claude-arsenal disk-cleaner~df -h /du -sh ~/Desktop ~/Downloads ~/Documents ~/Pictures ~/Music ~/Movies ~/Library 2>/dev/null | sort -rhdu -sh ~/.[!.]* 2>/dev/null | sort -rh | head -20du -sh ~/Desktop/code/*/* 2>/dev/null | sort -rh | head -20du -d1 -h ~/Library/Application\ Support/ 2>/dev/null | sort -rh | head -15du -sh ~/.Trash/ 2>/dev/nullfind ~/Desktop/code -name "target" -type d -maxdepth 5 -exec du -sh {} \; 2>/dev/null | sort -rhfind ~/Desktop/code -name "node_modules" -type d -maxdepth 5 -exec du -sh {} \; 2>/dev/null | sort -rh | head -15find ~/Desktop/code -name ".next" -type d -maxdepth 5 -exec du -sh {} \; 2>/dev/null | sort -rhdu -sh ~/.cache/uv ~/.cache/huggingface ~/.cache/pre-commit ~/.cache/puppeteer ~/.cache/rod ~/.npm/_cacache ~/.pnpm-store ~/.bun ~/.gradle 2>/dev/null | sort -rhfind ~/Downloads -maxdepth 1 \( -name "*.dmg" -o -name "*.pkg" -o -name "*.app" \) -exec ls -lhS {} \; 2>/dev/nullfind ~/Desktop/code -name ".git" -type d -maxdepth 4 -exec du -sh {} \; 2>/dev/null | sort -rh | head -10docker system df 2>/dev/null || true## Disk Overview
Total Capacity: XXX | Used: XXX | Available: XXX
## Cleanable Items (Sorted by Space Freed)
### 🔴 High Value (Can be safely deleted, frees up a large amount of space)
| Category | Size | Description |
|------|------|------|
| Rust target Compilation Cache | XXG | Can be restored by running cargo build again |
| Package Manager Caches | XXG | Will be automatically re-downloaded when needed |
| ... | ... | ... |
### 🟡 Medium Value (Clean as needed)
| Category | Size | Description |
|------|------|------|
| node_modules | XXG | Can be deleted for infrequently used projects, restore with bun install |
| Installation Packages in Downloads | XXXM | Installed .dmg/.pkg files can be deleted |
| ... | ... | ... |
### 🔵 Low Value / Need Caution
| Category | Size | Description |
|------|------|------|
| Application Data | XXG | Deletion may result in loss of application configurations |
| ... | ... | ... |
## Estimated Space to Free: XXG.gittarget/node_modules/df -h /chmod -R u+w