Stop all clawd-eyes servers by killing processes on their ports
Kills all clawd-eyes processes and frees ports 4000, 4001, and 5173.
/plugin marketplace add arevlo/claude-code-workflows/plugin install clawd-eyes@claude-code-workflowsStop all clawd-eyes processes and free up the ports.
Kill processes on all clawd-eyes ports
lsof -ti :4000 :4001 :5173 2>/dev/null | xargs kill -9 2>/dev/null; echo "Processes killed"
Verify ports are free
lsof -i :4000,:4001,:5173 2>/dev/null | grep LISTEN || echo "All ports free"
Report to user
| Port | Service |
|---|---|
| 4000 | HTTP API |
| 4001 | WebSocket |
| 5173 | Web UI (Vite) |
/clawd-eyes:start