From pipecrew
Kills stale PipeCrew site-view servers left running after session restarts. Discovers all running instances via probe and kills them; supports selective keep flags.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pipecrew:siteview-cleanupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Kill stale site-view servers. Often you end up with 3–6 servers running after restarting Claude or re-launching the UI during a session; this skill clears them.
Kill stale site-view servers. Often you end up with 3–6 servers running after restarting Claude or re-launching the UI during a session; this skill clears them.
/pipecrew:siteview-cleanup [--keep-port=<N>] [--keep-run=<run-id>] [--keep-latest] [--all] [--dry-run]
Default: --dry-run — prints what WOULD be killed and exits without touching any process. Opt in to actually kill with one of the explicit flags.
Flags:
--keep-port=<N> — preserve the server on port N; kill the rest.--keep-run=<run-id> — preserve all servers serving this run-id; kill the rest.--keep-latest — keep the server on the highest-numbered port; kill the rest.--all — kill every PipeCrew site-view server found.--dry-run (default if no kill flag set) — preview only.When the user invokes /siteview-cleanup:
node {plugin_dir}/skills/siteview-cleanup/cleanup.js [user's flags]
--keep-latest--keep-run=<run-id>--all--dry-run is the default — there's no way to accidentally kill by invoking without flags.Flag semantics + exit codes documented in {plugin_dir}/skills/siteview-cleanup/cleanup.js header.
npx claudepluginhub pipecrew-ai/pipecrew --plugin pipecrewLists every PipeCrew site-view server on localhost by probing ports 5173-5195. Reports port, PID, workspace, run-id, character count, and input status. Use when tracking multiple runs or cleaning up stale servers.
Finds stale and resource-hungry processes, scores waste, and presents cleanup report. Activates on RAM queries or slow machine, or proactively when noticing sluggishness.
Lists all listening ports with process info, framework detection (Next.js, Vite, Django), Docker containers, and interactive kill commands. Works on macOS.