From claw
Check health and status of the running Claw multi-agent stack. Use when the user wants to see if agents are running, check for errors, or get connection URLs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claw:statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Check the status of all Claw services and report a summary.
Check the status of all Claw services and report a summary.
Find the claw workspace. Check ./claw-workspace/generated/ or the current directory for generated/docker-compose.yml.
Check if the stack is running:
cd <workspace>/generated && docker compose ps 2>/dev/null
If nothing is running, tell the user and suggest /claw:up.
cd <workspace>/generated && docker compose logs --tail=5 --no-log-prefix 2>/dev/null | grep -E '\[(analyst|coder|agent)\]'
wc -l <workspace>/generated/logs/traffic.jsonl 2>/dev/null
<workspace>/claw.yaml and report a clean summary:| Service | Status | URL |
|---|---|---|
| synapse | healthy | (internal) |
| mitmproxy | healthy | http://localhost:PORT |
| element | running | http://localhost:PORT |
| agent-X | running | (last log line) |
If any containers are unhealthy, show their recent logs.
Remind the user of login credentials from claw.yaml.
npx claudepluginhub jeff-mccoy/silver-octo-meme --plugin clawGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.