Session Status

Displays the current state of an AgentHub session, including agent branches, commit counts, frontier status, and recent board updates. It runs session overview, DAG analysis, and reads board progress to present a concise status report.

✨ What it does

  • Shows session ID, task, agent count, and base branch.
  • Lists each agent with branch name, commit count, status (frontier, etc.), and last update time.
  • Displays recent board activity with progress and results entries.
  • Supports specifying a session ID for status of a particular session.
  • Suggests next steps based on whether all agents have posted results.

🎯 When to use it

  • When the user runs /hub:hub-status or asks how the AgentHub agents are doing.
  • To check the progress of agents in a running session.
  • To see which agents have posted results and which are still working.
  • To get a quick overview of a specific session by ID.

🚀 How to use

Trigger: /hub:hub-status

Trigger by running the slash command /hub:hub-status, optionally with a session ID. The skill expects an optional session ID argument; if omitted, it uses the latest session. Example prompts:

/hub:hub-status
/hub:hub-status 20260317-143022

📄 Output: A formatted status report showing session details, agent table, and recent board activity.

📦 Add this skill to Claude Code

# 1. Get the skills repo
git clone --depth 1 https://github.com/alirezarezvani/claude-skills /tmp/claude-skills

# 2. Copy this skill into your project (or ~/.claude/skills for all projects)
mkdir -p .claude/skills
cp -r /tmp/claude-skills/engineering/agenthub/skills/hub-status .claude/skills/hub-status

Skill source: engineering/agenthub/skills/hub-status/SKILL.md

⚠️ Good to know

Requires an active AgentHub session and access to the session scripts; if no session is specified, it assumes the latest one.

❓ FAQ

How do I check the status of a specific session?

Run /hub:hub-status with the session ID, e.g., /hub:hub-status 20260317-143022.

What does the status report show?

It shows session info, a table of agents with branch, commits, status, and last update, plus recent board activity.

What should I do if all agents have posted results?

The skill suggests running /hub:eval to rank the results.

🤖 Overview, features, install steps and FAQ were generated from the project's SKILL.md on Sep 4, 2026. Always check the original source before running commands.