← ClaudeAtlas

ccc-infralisted

Infrastructure probe — manage Fleet Commander, Synapse, Cost tracking, CloudCLI, AO, Paperclip, TaskMaster. Use when the user says 'infrastructure', 'fleet', 'cost',…
KevinZai/commander · ★ 3 · DevOps & Infrastructure · score 79
Install: claude install-skill KevinZai/commander
# /ccc-infra > Placeholders like ~~monitoring refer to connected tools. See [CONNECTORS.md](../../CONNECTORS.md). Probe all local CC Commander infrastructure services, report their status, and recommend next actions. Menu sourced from `references/infrastructure.json`. ## Quick Mode (default) Run a fast port scan and present a status summary with recommended action: ```bash curl -s --max-time 2 http://localhost:4680/api/status && echo "fleet:ok" || echo "fleet:down" curl -s --max-time 2 http://localhost:3100/api/health && echo "paperclip:ok" || echo "paperclip:down" curl -s --max-time 2 http://localhost:18789/health && echo "openclaw:ok" || echo "openclaw:down" pm2 list --no-color 2>/dev/null | grep -E 'online|stopped|errored' | head -10 ``` Show a compact status table, then offer 3 actions via AskUserQuestion: - "View full infrastructure menu" - "Start a stopped service" - "Back to main menu" ## Power Mode Full infrastructure menu from `references/infrastructure.json`. Activate by passing `--power` or `full` as argument. ### Step 1 — Probe All Services Run these Bash commands (2-second timeout so dead services don't hang): ```bash curl -s --max-time 2 http://localhost:4680/api/status && echo "fleet:ok" || echo "fleet:down" curl -s --max-time 2 http://localhost:4682/api/status && echo "synapse:ok" || echo "synapse:down" curl -s --max-time 2 http://localhost:3005/api/status && echo "ao:ok" || echo "ao:down" curl -s --max-time 2 http://localhost:4681/api/status && ech