by adenhq
Outcome driven agent development framework that evolves
# Add to your Claude Code skills
git clone https://github.com/adenhq/hiveBuild autonomous, reliable, self-improving AI agents without hardcoding workflows. Define your goal through conversation with a coding agent, and the framework generates a node graph with dynamically created connection code. When things break, the framework captures failure data, evolves the agent through the coding agent, and redeploys. Built-in human-in-the-loop nodes, credential management, and real-time monitoring give you control without sacrificing adaptability.
Visit adenhq.com for complete documentation, examples, and guides.
https://github.com/user-attachments/assets/846c0cc7-ffd6-47fa-b4b7-495494857a55
Hive is designed for developers and teams who want to build production-grade AI agents without manually wiring complex workflows.
Hive is a good fit if you:
Hive may not be the best fit if you’re only experimenting with simple agent chains or one-off scripts.
Use Hive when you need:
No comments yet. Be the first to share your thoughts!
Note for Windows Users: It is strongly recommended to use WSL (Windows Subsystem for Linux) or Git Bash to run this framework. Some core automation scripts may not execute correctly in standard Command Prompt or PowerShell.
Note Hive uses a
uvworkspace layout and is not installed withpip install. Runningpip install -e .from the repository root will create a placeholder package and Hive will not function correctly. Please use the quickstart script below to set up the environment.
# Clone the repository
git clone https://github.com/adenhq/hive.git
cd hive
# Run quickstart setup
./quickstart.sh
This sets up:
core/.venv)tools/.venv)~/.hive/credentials)uv# Build an agent using Claude Code
claude> /hive
# Test your agent
claude> /hive-debugger
# (at separate terminal) Launch the interactive dashboard
hive tui
# Or run directly
hive run exports/your_agent_name --input '{"key": "value"}'
Hive includes native support for OpenAI Codex CLI (v0.101.0+).
.codex/config.toml with agent-builder MCP server (tracked in git).agents/skills/ symlinks to Hive skills (tracked in git)codex in the repo root, then type use hiveExample:
codex> use hive
Hive includes native support for Opencode.
/hive in the chat to switch to the Hive Agent.The agent has access to all Hive skills and can scaffold agents, add tools, and debug workflows directly from the chat.
📖 Complete Setup Guide - Detailed instructions for agent development
Skills and MCP servers are also available in Antigravity IDE (Google's AI-powered IDE). Easiest: open a terminal in the hive repo folder and run (use ./ — the script is inside the repo):
./scripts/setup-antigravity-mcp.sh
Important: Always restart/refresh Antigravity IDE after running the setup script—MCP servers only load on startup. After restart, agent-builder and tools MCP servers should connect. Skills are under .agent/skills/ (symlinks to .claude/skills/). See docs/antigravity-setup.md for manual setup and troubleshooting.
Hive is built to be model-agnostic and system-agnostic.
Hive focuses on generating agents that run real business processes rather than generic agents. Instead of requiring you to manually design workflows, define agent interactions, and handle failures reactively, Hive flips the paradigm: you describe outcomes, and the system builds itself—delivering an outcome-driven, adaptive experience with an easy-to-use set of tools and integrations.
flowchart LR
GOAL["Define Goal"] --> GEN["Auto-Generate Graph"]
GEN --> EXEC["Execute Agents"]
EXEC --> MON["Monitor & Observe"]
MON --> CHECK{{"Pass?"}}
CHECK -- "Yes" --> DONE["Deliver Result"]
CHECK -- "No