From asi
Identifies and cleans disk hogs like Rust target/, node_modules, Python venvs, git garbage, Docker images, Homebrew caches, and hidden temps. Use when disk space is low or full.
How this skill is triggered — by the user, by Claude, or both
Slash command
/asi:storage-reclaimThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Rapid parallel investigation and cleanup of disk storage.
Rapid parallel investigation and cleanup of disk storage.
# Top-level overview
du -sh /path/*/ 2>/dev/null | sort -hr | head -20
# Drill into specific directory
du -sh /path/subdir/*/ 2>/dev/null | sort -hr | head -15
target/)cargo build)# Find all Rust target directories
find ~ -type d -name "target" -exec du -sh {} \; 2>/dev/null | sort -hr | head -20
# Clean specific project
rm -rf /path/to/project/target
# Or use cargo
cd /path/to/project && cargo clean
.git/objects/pack/tmp_pack_*# Check for git garbage
git count-objects -vH
# Look for "size-garbage" line
# Remove stale pack files
rm -f .git/objects/pack/tmp_pack_*
# Verify cleanup
git count-objects -vH
node_modules/ in JS projects# Find all node_modules
find ~ -type d -name "node_modules" -prune -exec du -sh {} \; 2>/dev/null | sort -hr
# Remove (can reinstall with npm install)
rm -rf /path/to/project/node_modules
.venv/, venv/, env/find ~ -type d \( -name ".venv" -o -name "venv" -o -name "env" \) -exec du -sh {} \; 2>/dev/null | sort -hr
.tmp/, .cache/, __pycache__/du on directories# Check hidden dirs specifically
du -sh /path/.* 2>/dev/null | sort -hr | head -10
~/.julia/artifacts/, ~/.julia/compiled/du -sh ~/.julia/*/ 2>/dev/null | sort -hr
docker system df
docker system prune -a # Remove all unused images/containers
brew cleanup --dry-run # Preview
brew cleanup # Actually clean
du -sh /path/*/ | sort -hr | head -20du -sh /path/.* | sort -hrgit count-objects -vH in any repotarget/, node_modules/, .tmp/, __pycache__/, build/.git/ (might have garbage, might be real history).git/objects/pack/*.pack (real packs)cargo build, npm install, pip install createsRun multiple du commands simultaneously for faster discovery:
# In parallel (use separate terminal or background)
du -sh ~/project1/*/ | sort -hr &
du -sh ~/project2/*/ | sort -hr &
wait
This skill connects to the K-Dense-AI/claude-scientific-skills ecosystem:
general: 734 citations in bib.duckdbThis skill maps to Cat# = Comod(P) as a bicomodule in the equipment structure:
Trit: 0 (ERGODIC)
Home: Prof
Poly Op: ⊗
Kan Role: Adj
Color: #26D826
The skill participates in triads satisfying:
(-1) + (0) + (+1) ≡ 0 (mod 3)
This ensures compositional coherence in the Cat# equipment structure.
npx claudepluginhub plurigrid/asi --plugin asiCross-drive storage audit and cleanup. Surveys all drives, finds orphaned git worktrees, large AI tool caches, and build artifacts. Produces a prioritized action plan with migration commands.
Run disk usage analysis and cleanup preview on the local Mac. Always validates snapshot coverage before quoting and never deletes without user approval.
Audit and clean a developer's machine — dotfolders, caches, language toolchains, package globals — with per-target classification and risk surfacing. Produces cleanup records. Not for cleaning code or user files.