Multi-agent orchestration CLI for Hanzo AI.
# Install via uv
uv tool install hanzo-agents
# Or via pip
pip install hanzo-agents# Run an agent
hanzo-agents run claude "Explain this code"
hanzo-agents run gemini "Review this PR"
# List available agents
hanzo-agents list
# Check agent status
hanzo-agents status
hanzo-agents status claude
# Show configuration
hanzo-agents config| Agent | Description |
|---|---|
claude |
Anthropic Claude Code CLI |
codex |
OpenAI Codex CLI |
gemini |
Google Gemini CLI |
grok |
xAI Grok CLI |
qwen |
Alibaba Qwen CLI |
vibe |
Vibe coding agent |
from hanzo_agents import AgentTool
import asyncio
tool = AgentTool()
result = asyncio.run(tool.call(None, action="run", name="claude", prompt="Hello"))
print(result)Apache 2.0