What problem does it solve? Developers frequently hit "port already in use" errors when starting servers, and manually hunting down the offending PID with netstat or lsof is tedious and OS-specific. This Skill finds and terminates the process blocking any port using the correct native commands for your platform. ## Core Features & Use Cases - Cross-Platform Port Freeing: Detects Windows (PowerShell or Git Bash), macOS, or Linux and uses the right tool — Get-NetTCPConnection, netstat/taskkill, lsof, or fuser. - Multiple Ports at Once: Processes several ports sequentially (e.g., 3000, 8080, 5432) and reports the result for each. - Clear Reporting: Outputs which PID was killed on which port, and notes ports that were already free. - Use Case: Your dev server fails to start with "EADDRINUSE: port 3000". Ask the assistant to free port 3000, and it finds the stale process and kills it so you can restart immediately. ## Quick Start Kill whatever process is running on port 3000 and port 8080 so I can restart my dev server.