npx claudepluginhub plurigrid/asi --plugin asiThis skill uses the workspace's default tool permissions.
Rapid parallel investigation and cleanup of disk storage.
Audits drives for orphaned git worktrees, large AI caches (.ollama, .gemini, .cursor, npm, pip), and artifacts (node_modules, .venv). Generates prioritized cleanup and migration plans for low disk space.
Audits macOS disk usage, cleans developer caches (brew, uv, pip, npm, cargo, Docker), detects forgotten large stale files, triages Downloads. Use for low space, cleanup, or storage issues.
Batch-scans Flutter/Android/iOS/Node.js projects for build artifacts, dependencies, and caches; reports sizes; performs tiered cleanup to free disk space on low storage.
Share bugs, ideas, or general feedback.
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.