/hub:hub-status — Session Status

Show DAG state, agent progress, and branch status for an AgentHub session.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/hub-status.
  2. 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-status

For one project only, change the path to .claude/skills/hub-status.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. 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.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of /hub:hub-status — Session Status

Show the full text79 lines
namedescriptioncommand
hub-statusShow 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

  1. Run session overview:
python {skill_path}/scripts/session_manager.py --status {session-id}
  1. Run DAG analysis:
python {skill_path}/scripts/dag_analyzer.py --status --session {session-id}
  1. 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:eval to rank results

If some agents are still running:

  • Show which are done vs in-progress
  • Suggest waiting or checking again later
1---
2name: "hub-status"
3description: "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."
4command: /hub:hub-status
5---
6 
7# /hub:hub-status — Session Status
8 
9Display 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 
201. Run session overview:
21```bash
22python {skill_path}/scripts/session_manager.py --status {session-id}
23```
24 
252. Run DAG analysis:
26```bash
27python {skill_path}/scripts/dag_analyzer.py --status --session {session-id}
28```
29 
303. Read recent board updates:
31```bash
32python {skill_path}/scripts/board_manager.py --read progress
33```
34 
35## Output Format
36 
37```
38Session: 20260317-143022 (running)
39Task: Optimize API response time below 100ms
40Agents: 3 | Base: dev
41 
42AGENT BRANCH COMMITS STATUS LAST UPDATE
43agent-1 hub/20260317-143022/agent-1/attempt-1 3 frontier 2026-03-17 14:35:10
44agent-2 hub/20260317-143022/agent-2/attempt-1 5 frontier 2026-03-17 14:36:45
45agent-3 hub/20260317-143022/agent-3/attempt-1 2 frontier 2026-03-17 14:34:22
46 
47Recent 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 
53Example output for a content task:
54 
55```
56Session: 20260317-151200 (running)
57Task: Draft 3 competing taglines for product launch
58Agents: 3 | Base: dev
59 
60AGENT BRANCH COMMITS STATUS LAST UPDATE
61agent-1 hub/20260317-151200/agent-1/attempt-1 2 frontier 2026-03-17 15:18:30
62agent-2 hub/20260317-151200/agent-2/attempt-1 2 frontier 2026-03-17 15:19:12
63agent-3 hub/20260317-151200/agent-3/attempt-1 1 frontier 2026-03-17 15:17:55
64 
65Recent 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 
73If all agents have posted results:
74- Suggest `/hub:eval` to rank results
75 
76If some agents are still running:
77- Show which are done vs in-progress
78- Suggest waiting or checking again later
79 

Discussion