Check status of clawd-eyes servers
Checks status of clawd-eyes services and reports which components are running.
/plugin marketplace add arevlo/claude-code-workflows/plugin install clawd-eyes@claude-code-workflowsCheck if clawd-eyes services are running.
Check each service:
echo "=== clawd-eyes Status ===" && \
echo "Browser CDP (9222): $(curl -s http://localhost:9222/json/version > /dev/null && echo 'Available' || echo 'Not available')" && \
echo "Backend API (4000): $(lsof -i :4000 2>/dev/null | grep LISTEN > /dev/null && echo 'Running' || echo 'Not running')" && \
echo "WebSocket (4001): $(lsof -i :4001 2>/dev/null | grep LISTEN > /dev/null && echo 'Running' || echo 'Not running')" && \
echo "Web UI (5173): $(lsof -i :5173 2>/dev/null | grep LISTEN > /dev/null && echo 'Running' || echo 'Not running')"
Report to user
| Port | Service | Description |
|---|---|---|
| 9222 | Browser CDP | User's browser with remote debugging |
| 4000 | Backend API | HTTP API for requests |
| 4001 | WebSocket | Live page updates |
| 5173 | Web UI | Vite dev server |
| Service | URL |
|---|---|
| Web UI | http://localhost:5173 |
| API | http://localhost:4000 |
| WebSocket | ws://localhost:4001 |
| CDP | http://localhost:9222 |