EveryDev.ai
Sign inSubscribe
Home
Tools

2,810+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents1815
  • Coding1295
  • Infrastructure600
  • Marketing467
  • Projects433
  • Research403
  • Analytics351
  • Design338
  • Security243
  • MCP242
  • Testing238
  • Data230
  • Integration178
  • Prompts160
  • Learning159
  • Communication154
  • Extensions150
  • Voice130
  • Commerce125
  • DevOps108
  • Web80
  • Finance21
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Hive
    Hive icon

    Hive

    Agent Harness

    An open-source async multi-agent CLI pipeline that turns a rough idea into a merge-ready pull request through nine inspectable stages with markdown artefacts at every step.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Free and open source under the MIT license. Self-hosted on your own machine.

    Engagement

    Available On

    macOS
    Linux
    Web
    API
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent HarnessAI Coding AssistantsMulti-agent Systems

    Alternatives

    Paseooh-my-claudecodeEmdash
    Developer
    Ivan KuznetsovLondon, EnglandEst. 2024

    Listed Jun 2026

    About Hive

    Hive is an open-source (MIT) command-line tool built by Ivan Kuznetsov that automates the journey from a rough software idea to a merged pull request. It runs an async multi-agent pipeline in the background — brainstorm, plan, execute, review, finalize — and surfaces only the moments that need a human answer. The project is written in Ruby, ships as the hive-cli rubygem, and is available on macOS via Homebrew, Arch Linux via AUR, and glibc Linux via a signed install script.

    What It Is

    Hive is an agentic harness for software development workflows. It sits between a developer's rough idea and a finished pull request, orchestrating a sequence of AI coding agents (Claude, Codex, or Pi by default) through nine discrete stages. Each stage writes a durable markdown artefact — idea, brainstorm, plan, reviews, PR metadata — that the next stage can read, edit, or hand to another agent. The result is a fully inspectable, file-based state machine rather than a black-box chat thread.

    The Nine-Stage Pipeline

    The pipeline is the core abstraction. Every task is a folder; the folder's location on disk is its state. Moving a task from one stage directory to the next is the approval gesture:

    • 1-inbox — capture a rough idea (one sentence is enough)
    • 2-brainstorm — an agent pins down what you actually want
    • 3-plan — scope, implementation units, and risks are fixed
    • 4-execute — code is written in an isolated git feature worktree
    • 5-open-pr — the branch is pushed and a draft PR opened
    • 6-review — CI fixes, multi-agent review, triage, and fixes
    • 7-artifacts — release and handoff artefacts are gathered
    • 8-finalize — the PR body is refreshed and marked ready
    • 9-done — the task is archived with cleanup commands

    The project calls this practice "compound engineering": making each step's output strong enough for the next one to run autonomously.

    Autonomous Features: Patrol and Babysitter

    Beyond the core pipeline, Hive ships two opt-in autonomous modes. Patrol maps feature slices across a repository, reviews them, validates fixes, and opens PRs only for the ones that pass. Babysitter keeps open PRs green and mergeable — it runs bounded repair attempts and auto-rebases behind a moving main branch, then hands off when it is stuck. Both modes run through the same daemon that advances the main task queue.

    Interfaces: TUI, Telegram Bot, and Agent CLI

    Hive offers three interaction surfaces. The TUI (hive tui) is a two-pane terminal dashboard showing registered projects and the live task queue; pressing n captures a new idea and Enter opens the relevant markdown file in the user's editor. The Telegram bot uses long polling (no webhook or public URL required) to let users capture ideas, check the queue, and approve work from a phone — including photos, documents, and transcribed voice notes. The agent CLI exposes every workflow verb with --json output and typed envelopes so that Claude Code, Codex, or any other coding agent can drive Hive programmatically. Hive also publishes an OpenClaw skill (/hive) on ClawHub for guided setup and command dispatch.

    Update: v0.3.0

    The latest release is v0.3.0, published on 12 June 2026. The repository was created in April 2026 and has been actively pushed to as recently as June 2026, with 37 open issues reflecting active development. The project self-describes as alpha-stage — the homepage labels the Box and Bench sub-tools as "alpha" — and the README flags the tmux Claude launch mode as an "experimental workflow" with rough edges. The install script pins to v0.3.0 and each release is signed with cosign keyless attestation.

    Tradeoffs to Know

    The homepage is explicit about the cost profile: Hive is "token-heavy" by design. The default configuration runs many subagents and several coding agents per task. The project recommends a Claude Max subscription plus ChatGPT Pro for Codex to get the best results, and notes that cost-sensitive users may try the Pi agent with a recent Kimi model for parts of the workflow, though that integration is not yet performance-tuned. Hive is also strictly local — there is no hosted web app or managed service. It requires a background daemon running on the user's own machine, Ruby 3.4, git ≥ 2.40, authenticated claude and gh CLIs, and tmux when using the default Claude launch mode.

    Hive - 1

    Community Discussions

    Be the first to start a conversation about Hive

    Share your experience with Hive, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Free and open source under the MIT license. Self-hosted on your own machine.

    • Full nine-stage async multi-agent pipeline
    • TUI dashboard
    • Background daemon
    • Telegram bot integration
    • Patrol and Babysitter modes

    Capabilities

    Key Features

    • Nine-stage async multi-agent pipeline from idea to merged PR
    • Folder-as-agent state machine with markdown artefacts at every stage
    • Multi-agent support: Claude, Codex, and Pi
    • Background daemon advances tasks in parallel
    • TUI dashboard for monitoring and human-input gates
    • Telegram bot for remote idea capture, queue checks, and approvals
    • Patrol mode for autonomous repository review and PR creation
    • Babysitter mode to keep open PRs green and auto-rebased
    • JSON output envelopes for all CLI verbs for agent-driven automation
    • OpenClaw /hive skill for guided setup and command dispatch
    • Isolated git feature worktrees per task
    • Cosign keyless attestation on every release
    • Voice note idea capture via Telegram with OpenAI-compatible transcription
    • hive doctor diagnostics and hive status --json for programmatic inspection

    Integrations

    Claude (Anthropic Claude Code)
    Codex (OpenAI)
    Pi agent
    GitHub (gh CLI)
    Telegram
    OpenClaw / ClawHub
    tmux
    Homebrew
    AUR (Arch Linux)
    systemd-user (Linux autostart)
    launchd (macOS autostart)
    Kimi model (via Pi agent)
    OpenAI-compatible Whisper transcription API
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Hive and help others make informed decisions.

    Developer

    Ivan Kuznetsov

    Ivan Kuznetsov builds Hive, an open-source async multi-agent coding pipeline that turns rough ideas into merge-ready pull requests. The project is written in Ruby and ships as a signed rubygem with support for Claude, Codex, and Pi agents. Hive itself is used to build its own releases and website, demonstrating the compound engineering approach at the core of the tool.

    Founded 2024
    London, England
    1 employees

    Used by

    ivankuznetsov/shipped (demo project)
    Hive (self-built)
    Read more about Ivan Kuznetsov
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Paseo icon

    Paseo

    Orchestrate coding agents from your desktop, phone, terminal, or browser. Self-hosted, multi-provider, and open source.

    oh-my-claudecode icon

    oh-my-claudecode

    Multi-agent orchestration framework for Claude Code with zero learning curve, enabling team-based parallel AI execution, smart model routing, and custom skill management.

    Emdash icon

    Emdash

    An open-source agentic development environment that lets you run multiple coding agents in parallel, each isolated in their own Git worktree.

    Browse all tools

    Related Topics

    Agent Harness

    Infrastructure, orchestrators, and task runners that wrap around LLM coding agents — covering session management, context delivery, worktree isolation, architecture enforcement, and issue-to-PR pipelines.

    97 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    536 tools

    Multi-agent Systems

    Platforms for creating and managing teams of AI agents that can collaborate.

    200 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussion
    2views