From 00-orchestrator
Power-user status dump for the active orchestrator run. Reads ${CLAUDE_PLUGIN_DATA}/state.sqlite and prints run + node summaries. User-only (not auto-invoked).
How this skill is triggered — by the user, by Claude, or both
Slash command
/00-orchestrator:statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run this Bash command and report the output verbatim:
Run this Bash command and report the output verbatim:
sqlite3 "${CLAUDE_PLUGIN_DATA}/state.sqlite" "SELECT run_id, status, mode, datetime(created_at/1000,'unixepoch') AS created FROM runs WHERE status NOT IN ('complete','aborted','failed') ORDER BY created_at DESC; SELECT '---'; SELECT node_id, run_id, pillar, agent, status, datetime(started_at/1000,'unixepoch') AS started FROM nodes WHERE status IN ('running','queued') ORDER BY started_at DESC;"
If $ARGUMENTS is non-empty (a run_id), filter both queries by WHERE run_id = '$ARGUMENTS'.
If the sqlite3 command errors with "no such table" or "unable to open database file", surface that to the user — it means the orchestrator's SessionStart bootstrap hasn't run yet. Suggest the user run any prompt to trigger SessionStart.
npx claudepluginhub jpk0512/ryu-next --plugin 00-orchestratorCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.