Black 26.1.0 crashes on multiple exception types in parentheses. The requires-python bump to 3.14 broke CI which runs Python 3.12.
hanzo-agents
Multi-agent orchestration CLI for Hanzo AI.
Installation
# Install via uv
uv tool install hanzo-agents
# Or via pip
pip install hanzo-agents
Usage
# 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
Available Agents
| 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 |
Library Usage
from hanzo_agents import AgentTool
import asyncio
tool = AgentTool()
result = asyncio.run(tool.call(None, action="run", name="claude", prompt="Hello"))
print(result)
License
Apache 2.0