Folder-as-agent transparency
No database, no black box. Every artefact — idea, brainstorm, plan, reviews, PR metadata — is a markdown file you can read, edit, or hand to another agent.
Async multi-agent coding pipeline · open source
Hive runs your idea through a pipeline of agents — brainstorm, plan, execute, review, finalize — and ships the PR. No babysitting terminals or pull requests: tasks advance in parallel in the background, and your only job is to answer questions in a doc.
Free & open source (MIT). Power-user TUI — see if it's for you.
A sub-two-minute reel: install, hive init, capture an idea in the TUI,
answer brainstorm questions in vim, and archive the finished task once Hive has shipped it.
Every task is a folder. Its location is the state — moving it to the next stage is the approval gesture, and each stage leaves a durable artefact the next one can trust. That practice is called compound engineering.
Jot the rough idea — one sentence is enough.
An agent pins down what you actually want.
Scope, implementation units, and risks get fixed.
The code is written in an isolated feature worktree.
The branch is pushed and a draft PR opened.
CI fixes, multi-agent review, triage, and fixes.
Release and handoff artefacts are gathered.
The PR body is refreshed and marked ready.
The task is archived with cleanup commands.
No database, no black box. Every artefact — idea, brainstorm, plan, reviews, PR metadata — is a markdown file you can read, edit, or hand to another agent.
Stages run on configurable agent CLIs — Claude by default, Codex, or Pi — so each step uses the model you trust for that job.
The daemon advances many tasks at once in the background. The live TUI flags the one that needs an answer — answer in your editor, then get back to your day.
Opt-in autonomous repo patrol maps feature slices, reviews them, validates fixes, and opens PRs for the ones that pass.
Keeps open PRs green and mergeable — runs bounded repair attempts and auto-rebases
behind a moving main, then hands off when it's stuck.
Capture ideas, check the queue, and approve work from your phone — photos, documents, and transcribed voice notes included.
The reel above produced a real, public repository — ivankuznetsov/shipped — seeded with the one-sentence idea "a Telegram bot that sends a daily digest of what was shipped," driven through brainstorm → plan → execute → multi-agent review → finalize, and landed as PR #1.
Hive's own releases are built the same way — this site included.
Hive is a terminal-first, token-heavy tool. Setup is light —
hive init is a couple of prompts — so the one thing to weigh before you
start is token cost, not configuration.
On a tight budget you can try the Pi agent with a recent Kimi model for parts of the workflow — though that integration isn't performance-tuned yet.
Hive ships as the hive-cli rubygem attached to each GitHub Release,
signed with cosign keyless attestation. Every channel verifies the signature before installing.
Prerequisites: Ruby 3.4, git, an authenticated gh, and the
agent CLIs you plan to use (claude, codex).
brew install ivankuznetsov/hive/hive
yay -S hive-bin
tmpdir="$(mktemp -d)" && trap 'rm -rf "$tmpdir"' EXIT \
&& curl -fsSL https://raw.githubusercontent.com/ivankuznetsov/hive/v0.3.0/install.sh \
-o "$tmpdir/hive-install.sh" \
&& bash "$tmpdir/hive-install.sh"
cd ~/Dev/your-project
hive init . # choose launch + permission mode, enroll the daemon
hive tui # open the dashboard — press n to capture a new idea
Prefer to let an agent install and run Hive? Install the ClawHub skill, then use the
/hive slash command for guided setup and every workflow verb.
openclaw skills install hive-cli
/hive setup # installs Hive, verifies it, sets up the daemon
/hive new . "build this feature" # then drive any command through /hive …
/hive status
Full walkthrough in Getting started; services and the OpenClaw skill in Operating. Public listing: clawhub.ai/ivankuznetsov/hive-cli.
Install Hive, drop one rough idea, and let the pipeline carry it to a PR — it doesn't need you in the room.