Help us improve
Share bugs, ideas, or general feedback.
From agenthub
Initializes AgentHub session for multi-agent collaboration: sets task, agent count, eval criteria/metric/baseline, base branch. Interactive or CLI args; next /hub:spawn.
npx claudepluginhub arogyareddy/alirezarezvani-claude-skills --plugin agenthubHow this skill is triggered — by the user, by Claude, or both
Slash command
/agenthub:initThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Initialize an AgentHub collaboration session. Creates the `.agenthub/` directory structure, generates a session ID, and configures evaluation criteria.
Scaffolds a multi-agent repository from the Antigravity template in quick or full mode, with optional MCP, swarm, sandbox, and git init.
Generates an orientation report for fresh agent sessions in AgentOps repositories. Confirms key configuration files, counts ready beads, and probes agent mail. Automatically invoked for every spawned agent.
Share bugs, ideas, or general feedback.
Initialize an AgentHub collaboration session. Creates the .agenthub/ directory structure, generates a session ID, and configures evaluation criteria.
/hub:init # Interactive mode
/hub:init --task "Optimize API" --agents 3 --eval "pytest bench.py" --metric p50_ms --direction lower
/hub:init --task "Refactor auth" --agents 2 # No eval (LLM judge mode)
Pass them to the init script:
python {skill_path}/scripts/hub_init.py \
--task "{task}" --agents {N} \
[--eval "{eval_cmd}"] [--metric {metric}] [--direction {direction}] \
[--base-branch {branch}]
Collect each parameter:
AgentHub session initialized
Session ID: 20260317-143022
Task: Optimize API response time below 100ms
Agents: 3
Eval: pytest bench.py --json
Metric: p50_ms (lower is better)
Base branch: dev
State: init
Next step: Run /hub:spawn to launch 3 agents
For content or research tasks (no eval command → LLM judge mode):
AgentHub session initialized
Session ID: 20260317-151200
Task: Draft 3 competing taglines for product launch
Agents: 3
Eval: LLM judge (no eval command)
Base branch: dev
State: init
Next step: Run /hub:spawn to launch 3 agents
If --eval was provided, capture a baseline measurement after session creation:
baseline: {value} to .agenthub/sessions/{session-id}/config.yamlBaseline captured: {metric} = {value}This baseline is used by result_ranker.py --baseline during evaluation to show deltas. If the eval command fails at this stage, warn the user but continue — baseline is optional.
Tell the user:
{session-id}/hub:spawn to launch agents/hub:spawn {session-id} if multiple sessions exist