Prerequisites
Python 3.11+
Python 3.11, 3.12, or 3.13. Check with
python --version.LLM API Key
An API key for Anthropic, OpenAI, Gemini, or another LiteLLM-supported provider.
Windows users: Use WSL (Windows Subsystem for Linux) or Git Bash. Some automation scripts may not run correctly in standard Command Prompt or PowerShell.
Step 1: Clone and Install
- Checks Python and installs
uvif needed - Installs workspace packages (
frameworkandaden_tools) - Installs Playwright browser dependencies when available
- Verifies imports and local environment health
- Guides LLM provider configuration
Manual setup (if the wizard fails)
Manual setup (if the wizard fails)
Step 2: Set Up Your LLM Provider
Export at least one provider API key:Step 3: Build Your First Agent
Use your coding agent to create an agent through a guided conversation:Step 4: Test It
Run your agent interactively to see it work:First Success! If your agent ran and produced output, you’ve reached the milestone. Everything from here — debugging, deployment, iteration — builds on this foundation.
What Just Happened
When you built your agent, Hive:- Parsed your goal into structured success criteria and constraints
- Generated a node graph with the right nodes, edges, and connection code
- Wrapped each node with the SDK — giving it memory, LLM access, tools, and observability
- Ran the graph against your input, evaluating outcomes at each step