computer-cleanlisted
Install: claude install-skill vanducng/skills
# Computer Clean — macOS Disk Cleanup
Goal: surface the largest reclaimable space on the user's Mac, classify by risk, **always confirm before destructive ops**, then execute.
## Operating principle
**Audit → Classify → Confirm → Execute → Verify.** Never skip the confirm step for 🟡/🔴 buckets. The 🟢 cache bucket can run after a single user "go".
The skill **discovers** what's actually on the user's machine — don't assume specific apps/caches exist. Run audit commands first, then classify what was found.
---
## Phase 1 — Audit (read-only)
Run these in parallel. Report top consumers per bucket.
```bash
# Volume stats
df -h /
# Home Library hot zones
du -sh ~/Library/Caches ~/Library/Logs ~/Library/Containers \
~/Library/Application\ Support ~/Downloads ~/.Trash 2>/dev/null
# Drill the heavy ones — top 15 each
du -sh ~/Library/Application\ Support/* 2>/dev/null | sort -rh | head -15
du -sh ~/Library/Caches/* 2>/dev/null | sort -rh | head -15
du -sh ~/Library/Containers/* 2>/dev/null | sort -rh | head -10
du -sh ~/Downloads/* 2>/dev/null | sort -rh | head -15
# Common dev caches outside Library (skip silently if missing)
du -sh ~/.npm ~/.yarn ~/.pnpm-store ~/Library/pnpm \
~/go/pkg ~/.cargo ~/.gradle ~/.m2 ~/.rustup \
~/.cache ~/.docker 2>/dev/null
# Drill ~/.cache children (uv, pip, puppeteer, pre-commit, etc.)
du -sh ~/.cache/* 2>/dev/null | sort -rh | head -15
# Xcode (developers only)
du -sh ~/Library/Developer/Xcode/{DerivedData,Archives,