Hive (aden-hive) — Summary
OpenHive (aden-hive/hive) is a Python/TypeScript multi-agent execution harness from Aden (YC W25) with 10k+ stars, designed for production business-process automation rather than ad-hoc scripting. It provides a zero-setup, model-agnostic runtime that compiles a natural-language goal into a strict, graph-based execution DAG of specialized worker agents; the DAG evolves when tasks fail, enabling self-healing workflows. The stack has three layers: a core/ Python framework (agent loop, orchestrator, server, observability), a tools/ MCP server with 102 tools (browsing, filesystem, code execution, integrations), and a React/TypeScript web UI (core/frontend/) served at localhost that functions as the agent control plane — users write goals in a chat box and the "queen" agent designs + executes the agent graph. The framework ships three Claude Code skills (triage-issue, test-reporting, browser-edge-cases) and one PostToolUse hook (auto-linting via ruff) indicating active dogfooding. Persistent role-based memory is stored per-agent-session in JSON; the queen agent tracks graph state, worker outputs, and cost. Compared to the seeds, Hive is closest to claude-flow (both are multi-agent harnesses with observable DAG execution) but Hive uniquely auto-generates the DAG from a goal description rather than requiring the user to define workflow nodes manually.