/hub:hub-status — Session Status
Show DAG state, agent progress, and branch status for an AgentHub session.
How to use it
Claude Code
- Run the line below. It pulls the whole folder into
~/.claude/skills/hub-status. - Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit alirezarezvani/claude-skills/engineering/agenthub/skills/hub-status#main ~/.claude/skills/hub-statusFor one project only, change the path to .claude/skills/hub-status.
Claude (web or desktop app)
- On this page open ⋯ → Download .md.
- Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
- Pick the file and Save. Claude shows the name and description and runs a security scan.
- Check the skill is switched on.
- Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
- ChatGPT: make a Project and paste it into Instructions.
- Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
- Check which app you pasted it into — the steps above name the right one.
- Some skills need the paid tier of Claude or ChatGPT.
Paste into Claude, ChatGPT or Cursor.
Source of /hub:hub-status — Session Status
Show the full text79 lines
| name | description | command |
|---|---|---|
| hub-status | Show DAG state, agent progress, and branch status for an AgentHub session. Use when the user runs /hub:hub-status or asks how the AgentHub agents are doing. | /hub:hub-status |
/hub:hub-status — Session Status
Display the current state of an AgentHub session: agent branches, commit counts, frontier status, and board updates.
Usage
/hub:hub-status # Status for latest session
/hub:hub-status 20260317-143022 # Status for specific session
What It Does
- Run session overview:
python {skill_path}/scripts/session_manager.py --status {session-id}
- Run DAG analysis:
python {skill_path}/scripts/dag_analyzer.py --status --session {session-id}
- Read recent board updates:
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
AGENT BRANCH COMMITS STATUS LAST UPDATE
agent-1 hub/20260317-143022/agent-1/attempt-1 3 frontier 2026-03-17 14:35:10
agent-2 hub/20260317-143022/agent-2/attempt-1 5 frontier 2026-03-17 14:36:45
agent-3 hub/20260317-143022/agent-3/attempt-1 2 frontier 2026-03-17 14:34:22
Recent Board Activity:
[progress] agent-1: Implemented caching, running tests
[progress] agent-2: Hash map approach working, benchmarking
[results] agent-2: Final result posted
Example output for a content task:
Session: 20260317-151200 (running)
Task: Draft 3 competing taglines for product launch
Agents: 3 | Base: dev
AGENT BRANCH COMMITS STATUS LAST UPDATE
agent-1 hub/20260317-151200/agent-1/attempt-1 2 frontier 2026-03-17 15:18:30
agent-2 hub/20260317-151200/agent-2/attempt-1 2 frontier 2026-03-17 15:19:12
agent-3 hub/20260317-151200/agent-3/attempt-1 1 frontier 2026-03-17 15:17:55
Recent Board Activity:
[progress] agent-1: Storytelling angle draft complete, refining CTA
[progress] agent-2: Benefit-led draft done, testing urgency variant
[results] agent-3: Final result posted
After Status
If all agents have posted results:
- Suggest
/hub:evalto rank results
If some agents are still running:
- Show which are done vs in-progress
- Suggest waiting or checking again later
| 1 | |
| 2 | name "hub-status" |
| 3 | description "Show DAG state, agent progress, and branch status for an AgentHub session. Use when the user runs /hub:hub-status or asks how the AgentHub agents are doing." |
| 4 | command /hub:hub-status |
| 5 | |
| 6 | |
| 7 | # /hub:hub-status — Session Status |
| 8 | |
| 9 | Display the current state of an AgentHub session: agent branches, commit counts, frontier status, and board updates. |
| 10 | |
| 11 | ## Usage |
| 12 | |
| 13 | |
| 14 | /hub:hub-status # Status for latest session |
| 15 | /hub:hub-status 20260317-143022 # Status for specific session |
| 16 | |
| 17 | |
| 18 | ## What It Does |
| 19 | |
| 20 | Run session overview: |
| 21 | |
| 22 | python {skill_path}/scripts/session_manager.py --status {session-id} |
| 23 | |
| 24 | |
| 25 | Run DAG analysis: |
| 26 | |
| 27 | python {skill_path}/scripts/dag_analyzer.py --status --session {session-id} |
| 28 | |
| 29 | |
| 30 | Read recent board updates: |
| 31 | |
| 32 | python {skill_path}/scripts/board_manager.py --read progress |
| 33 | |
| 34 | |
| 35 | ## Output Format |
| 36 | |
| 37 | |
| 38 | Session: 20260317-143022 (running) |
| 39 | Task: Optimize API response time below 100ms |
| 40 | Agents: 3 | Base: dev |
| 41 | |
| 42 | AGENT BRANCH COMMITS STATUS LAST UPDATE |
| 43 | agent-1 hub/20260317-143022/agent-1/attempt-1 3 frontier 2026-03-17 14:35:10 |
| 44 | agent-2 hub/20260317-143022/agent-2/attempt-1 5 frontier 2026-03-17 14:36:45 |
| 45 | agent-3 hub/20260317-143022/agent-3/attempt-1 2 frontier 2026-03-17 14:34:22 |
| 46 | |
| 47 | Recent Board Activity: |
| 48 | [progress] agent-1: Implemented caching, running tests |
| 49 | [progress] agent-2: Hash map approach working, benchmarking |
| 50 | [results] agent-2: Final result posted |
| 51 | |
| 52 | |
| 53 | Example output for a content task: |
| 54 | |
| 55 | |
| 56 | Session: 20260317-151200 (running) |
| 57 | Task: Draft 3 competing taglines for product launch |
| 58 | Agents: 3 | Base: dev |
| 59 | |
| 60 | AGENT BRANCH COMMITS STATUS LAST UPDATE |
| 61 | agent-1 hub/20260317-151200/agent-1/attempt-1 2 frontier 2026-03-17 15:18:30 |
| 62 | agent-2 hub/20260317-151200/agent-2/attempt-1 2 frontier 2026-03-17 15:19:12 |
| 63 | agent-3 hub/20260317-151200/agent-3/attempt-1 1 frontier 2026-03-17 15:17:55 |
| 64 | |
| 65 | Recent Board Activity: |
| 66 | [progress] agent-1: Storytelling angle draft complete, refining CTA |
| 67 | [progress] agent-2: Benefit-led draft done, testing urgency variant |
| 68 | [results] agent-3: Final result posted |
| 69 | |
| 70 | |
| 71 | ## After Status |
| 72 | |
| 73 | If all agents have posted results: |
| 74 | Suggest `/hub:eval` to rank results |
| 75 | |
| 76 | If some agents are still running: |
| 77 | Show which are done vs in-progress |
| 78 | Suggest waiting or checking again later |
| 79 |
Discussion
Browse more free Claude skills.