From buddy-evolver
This skill should be used when the user asks to "clean cache", "cache clean", "clear build cache", "free disk space", "clean up", "remove build artifacts", "clean .build", "manage cache", or "show cache size".
How this skill is triggered — by the user, by Claude, or both
Slash command
/buddy-evolver:clean-cacheThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Clean up Swift `.build/` directories, `.DS_Store` files, and other accumulated artifacts from Buddy Evolver worktrees.
Clean up Swift .build/ directories, .DS_Store files, and other accumulated artifacts from Buddy Evolver worktrees.
Run a dry-run first to show the user what will be removed:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/cache-clean.sh" --dry-run --verbose
Show the output to the user. Explain:
.build/ directories are build cache (~33MB each) that rebuild in ~5 seconds on next use.DS_Store files are macOS Finder metadata with no impact.build/ is preserved by default (mention --all if they want total cleanup)Ask the user if they want to proceed with cleanup. If they want to also clean the current worktree's build cache, add --all.
bash "${CLAUDE_PLUGIN_ROOT}/scripts/cache-clean.sh" --verbose
Or with --all if the user requested full cleanup:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/cache-clean.sh" --verbose --all
Show the user:
npx claudepluginhub soul-craft/buddy-evolver --plugin buddy-evolverBatch-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.
Cross-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.
Reclaims disk space on a Mac dev machine by deleting regenerable caches (Cargo, node_modules, pnpm/npm, OS/app caches) and thinning APFS local snapshots. Invoke with /dev-clean-mac when low on disk.