Check and kill processes using specific ports
Find and terminate processes using specific ports. Check what's running on ports like 3000 or 8080, then safely kill processes after confirmation.
/plugin marketplace add arevlo/claude-code-workflows/plugin install arevlo-dev@claude-code-workflowsCheck which processes are using specific ports and optionally kill them.
lsof -i :<port> to check what's using itkill -9 <PID> to terminate the processlsof -i :<port> againkill -9 (SIGKILL) only after confirmationkill <PID> (SIGTERM) first for graceful shutdown if appropriate