Lab Management
hubify agent
Agent management commands, add, configure, monitor, and manage your multi-agent research team.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Agent management commands, add, configure, monitor, and manage your multi-agent research team.
hubify agent listhubify agent list
AGENT ROLE MODEL STATUS TASKS QC RATE
Orchestrator orch claude-opus active 342 N/A
Research Lead lead claude-opus active 128 94%
Paper Lead lead claude-opus active 87 97%
Analysis Worker worker claude-sonnet active 203 91%
Figure Worker worker claude-haiku active 156 88%
Data Worker worker claude-haiku active 189 95%
hubify agent list --tree
Orchestrator (claude-opus)
├── Research Lead (claude-opus)
│ ├── Analysis Worker (claude-sonnet)
│ └── Data Worker (claude-haiku)
└── Paper Lead (claude-opus)
└── Figure Worker (claude-haiku)
hubify agent addhubify agent add \
--role lead \
--name "Cosmology Lead" \
--model claude-opus \
--specialty "MCMC analysis, CMB power spectra, bounce cosmology"
| Option | Required | Description |
|---|---|---|
--role | Yes | lead or worker |
--name | Yes | Descriptive name |
--model | Yes | AI model (claude-opus-4-8, claude-opus-4-8, claude-sonnet-5, claude-haiku-4-5, gpt-5.5, gpt-5.5-mini, gemini-3.1-pro, gemini-3.1-flash, grok-4) |
--specialty | No | Free-text description of the agent’s expertise |
--parent | No | Parent agent name (defaults to Orchestrator) |
hubify agent update# Change model
hubify agent update "Analysis Worker" --model claude-sonnet
# Update specialty
hubify agent update "Research Lead" --specialty "Galaxy surveys, anomaly detection"
# Disable temporarily
hubify agent update "Figure Worker" --status inactive
hubify agent removehubify agent remove "Data Worker"
hubify agent metricshubify agent metrics "Research Lead"
Agent: Research Lead
Model: claude-opus
Tasks completed: 128
QC pass rate: 94%
Avg task duration: 12m
Tokens used (30d): 2.4M
Cost (30d): $18.40
Active since: 2026-03-15
hubify agent review-config# Add a reviewer
hubify agent review-config --add-reviewer gpt-5.5 --api-key $OPENAI_API_KEY
# Show current config
hubify agent review-config --show
# Remove a reviewer
hubify agent review-config --remove-reviewer grok-4
hubify agent logshubify agent logs "Research Lead" --limit 20
# Add a specialized worker for a new research branch
hubify agent add --role worker --name "PTA Worker" --model claude-sonnet \
--specialty "Pulsar timing arrays, gravitational wave backgrounds"
# Check which agent is most productive
hubify agent list --json | jq 'sort_by(.tasks) | reverse | .[0]'
# Rotate models for cost optimization
hubify agent update "Data Worker" --model claude-haiku