/status
Show DAG state, agent progress, and branch status for an AgentHub session. Use when the user runs /hub:status or asks how the AgentHub agents are doing.
One skill from claude-skills.
shell
$ npx -y skills add alirezarezvani/claude-skills --skill status --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/status
Context preview
The summary Claude sees to decide when to auto-load this skill.
Show DAG state, agent progress, and branch status for an AgentHub session. Use when the user runs /hub:status or asks how the AgentHub agents are doing.
Stats
Stars23,060
Forks3,139
LanguagePython
LicenseMIT
Ships with claude-skills
SKILL.md
status.SKILL.md
--- name: "status" description: "Show DAG state, agent progress, and branch status for an AgentHub session. Use when the user runs /hub:status or asks how the AgentHub agents are doing." command: /hub:status --- # /hub:status — Session Status Display the current state of an AgentHub session: agent branches, commit counts, frontier status, and board updates. ## Usage ``` /hub:status # Status for latest session /hub:status 20260317-143022 # Status for specific session ``` ## What It Does 1. Run session overview: ```bash python {skill_path}/scripts/session_manager.py --status {session-id} ``` 2. Run DAG analysis: ```bash python {skill_path}/scripts/dag_analyzer.py --status --session {session-id} ``` 3. Read recent board updates: ```bash python {skill_path}/scripts/board_manager.py --read progress ``` ## Output Format ``` Session: 20260317-143022 (running) Task: Optimize API response time below 100ms Agents: 3 | Base: dev
