Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "kill-dev-process" skill in my project. Repository: https://github.com/nokonoko1203/claude-code-settings Please read the repo to find the SKILL.md file(s), then: 1. Download them into the correct skills directory (.claude/skills/ or .cursor/skills/) 2. Include any companion files referenced by the skill 3. Confirm what was installed and where
Description
Kill orphaned dev servers, browsers, and port-hogging processes spawned during development. Use when ports are occupied, too many node/browser processes are running, or you want a fresh start.
Browser processes (including those from Playwright/Chrome DevTools MCP)
ps aux | grep -E '[C]hromium|[c]hrome|[C]hrome Helper|[p]laywright' | grep -v 'grep' `
Dev Environment Cleanup
Safely clean up processes accumulated during development (dev servers, browsers, node, etc.). Usage: /kill-dev-process Usage: /kill-dev-process $MODE $ARGUMENTS to specify mode: • ports — Only processes occupying listening ports • browsers — Only browser processes • all — Process all categories at once • No argument — Interactive selection
Step 1: Investigate the Current State
Run the following commands in parallel to assess the current situation: `bash
List listening TCP ports (macOS)
lsof -iTCP -sTCP:LISTEN -P -n 2>/dev/null | grep -v "^COMMAND" ` `bash
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster
