The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Ducklab listing page.
A self-hosted harness that runs a project's full development cycle with several LLMs in fixed roles, under test gates that only you sign.
In one block: self-hosted development harness (Go engine + CLI + desktop,
Linux first) · brief → requirements → spec → plan → build → review → release ·
verdicts are exit codes, never model opinions · local models first (llama.cpp,
vLLM) beside any OpenAI-compatible or Anthropic endpoint · operable by humans
or by other agents over MCP with recorded, attributed decisions ·
Apache-2.0 · develops itself (the run records in .ducklab/ are the
receipts). Agents: start at AGENTS.md and llms.txt.
You give it a brief. It writes requirements, a spec and a plan; builds tasks with one model or several arguing; runs your project's real test gate; and stops for you before anything is committed. Every model call is logged. No model ever decides a verdict.
A real council intake, recorded live and sped up: the architect streams the draft, a different model reviews it, the budget ticks in cents — and the run stops at your gate. Total cost of what you just watched: $0.07.
It was built for local models first. Two of the seats that built most of it are a vLLM box on the LAN and a llama.cpp server on localhost, both priced at zero; hosted models sit beside them in the same roster, measured by the same evidence.
Most agentic coding tools assume one strong model and trust it. Ducklab assumes several cheap models and trusts none of them:
none, a note that sends the implementer
straight back to work, or stop.ref_read call away, and the gate
names any document nobody opened. A 32k local model can be briefed by a
quarter-million characters of reference material — the harness carries the
working memory.
The record does not round up: every run with its verdict, its cost, and whether its accept reproduced green from a clean checkout.
Ducklab is developed inside ducklab. The plan, the bugs, the releases and the accepted tasks went through its own loop, driven by the same local and hosted models it measures; recent features (per-run worktrees, the merge-proof accept, the acceptance receipts, the governance write guard) were built by the duck and gated by a person. To check the claim yourself:
Receipts ship with every accept since v0.7.0: the committed sha, the gate command, its exit code, and the clean-checkout reproduction verdict — facts a third party re-derives, never assessments.
v0.7.0 plus the phase-3 work now on main: every build and test run
executes in its own git worktree (your checkout is never touched),
acceptance rebases the run branch, re-runs the gate on the rebased commit
and merges fast-forward only, and an operator can re-close a finished run
as landed when its work reached main outside the engine. Before that:
seven stages, five modes, the roster board with measured scorecards,
reference documents with automatic digestion, skills managed from the
desktop, a seated consultant chat (vision verified before images are
sent), bug reports with screenshot evidence, adopt surveys with a
deterministic coverage check, provider-aware queueing that states why a
run waits, escalation suggestions when a seat measurably hits its
ceiling, acceptance receipts (ducklab proof verify), releases,
autopilot, a CLI, a desktop app, and an MCP server — in the
official MCP registry as
io.github.jrullan/ducklab — so another model can operate the loop with
recorded, attributed decisions.
docs/status.md tracks all acceptance criteria and does
not round up. Where code and spec differ, the difference is recorded in
docs/decisions/.
Needs Go 1.25+, Node 22+ for the desktop, and git.
The CLI and engine are pure Go. The desktop is a Wails v3 app and needs the GTK/WebKit development packages:
On Ubuntu 24.04+ the desktop also needs an AppArmor profile — see
decision 0003 and
packaging/apparmor/.
Honesty note: ducklab is developed and exercised daily on Linux. The CLI and
engine compile-check for darwin/arm64 on every make cross, but no desktop
build has been verified on a Mac yet — the first person to try it is the
test, and make install gives you the CLI and engine either way. Please
report whatever breaks.
make install installs to ~/.local/bin — make sure it is on your PATH.
It warns when the desktop binary predates frontend/src, because it will
happily install a stale one.
To exercise the frontend in a browser, run the engine and Vite in separate terminals, then open the browser with its connection details. The fake engine is the quickest option; the same flow can use a real engine with its opt-in CORS flag:
The real engine remains same-origin restricted by default. --allow-origin
enables exactly one browser origin and is intended for local frontend development
and visual audits; it does not change authentication or the loopback bind. Without
this flag, a browser's cross-origin failure can look like a dead session.
The engine and token query parameters are available only in Vite dev
builds. They can also be supplied as VITE_DUCKLAB_ENGINE and
VITE_DUCKLAB_TOKEN environment variables. The desktop shell continues to use
its injected window.ducklab connection.
| What it is | |
|---|---|
ducklab-engine | The daemon. Owns every run. Binds 127.0.0.1 only, bearer token rotated each start. |
ducklab | The CLI client. Holds no state; it asks the engine. |
ducklab-desktop | The desktop app. Also a client, also holds no state. Starts (or adopts) the engine itself. |
Provider keys come from the engine's environment at call time — export them before it starts, or launch the desktop through a wrapper that loads them from your keyring. The app tells you when the engine it adopted is missing a key this app has, with the restart button beside the words.
From the desktop: Projects → New project, then Cycle → Draft it. From a terminal:
Your words are part of the record: every brief is kept verbatim as an
INT-nnn entry before any model reads it, and the requirements it added or
changed point back to it — so a requirement can always answer "who asked for
this, and in what words".
Each stage writes a .proposed file first and waits for you. accept
promotes it; reject restores exactly what the run wrote and nothing else;
"request changes" sends any draft — spec, plan, release notes — back with
your note. Nothing is committed without you (or without the autonomy level
you explicitly granted).
Reference documents ride any stage: --ref ~/wiki/product/ (or the
attach door in the desktop) loads files or whole directories as background
for the architect — grounded by two rules the prompt states outright: the
approved requirements own the scope, and where a reference and the code
disagree, the code is the truth. When the corpus outgrows the seat's
context, each document is digested once (cached by content hash), the full
text stays reachable through the ref_read tool, and the proposal card
lists any document no seat ever opened.
Adopting an existing codebase works the same way: intake reads the code
and writes as-built requirements, the spec marks its sections as-built, and
the plan stays deliberately empty — new work then enters through bug reports
and plan amendments, which is how ducklab itself is developed.
Your project declares its own truth in .ducklab/project.toml: the gate
([verify] — with link_deps and setup for what a clean checkout needs),
how the app launches ([run] with a preflight), and how the project's own
binaries are rebuilt ([install]) so the whole loop runs without leaving
ducklab.
Gate and shell process trees always receive DUCKLAB_RUN_ID and DUCKLAB_PROJECT_ID. For example, excercise-tracker can use DATABASE_URL=test_db_${DUCKLAB_RUN_ID} in [verify].tests, and a compose preflight can use ${DUCKLAB_PROJECT_ID} as its per-run project name. Ducklab guarantees identity only; provisioning and teardown remain the project's.
--key-env is the name of an environment variable, never a key. No key
is written to config, sent over the API, or kept in shell history.
Seat suggestions come with their evidence: pass rates from your own runs, cost per run, coding index. You decide.
The desktop's Roster view is where seats are assigned: drag from the Flock onto a mode's seat, globally or per project, with each duckling's evidence on the card and the engine's suggestions beside the seats. Coding / intelligence / agentic indices come from OpenRouter's benchmarks endpoint when a duckling lives there; your own runs supply the rest.
This is not a recommendation list. It is this repository's own run record (454 recorded runs, ~2,300 seat assignments as of 2026-08-24), so you can see what actually held which seat. Any OpenAI-compatible endpoint slots in the same way.
| Duckling | Model | Served by | Seats held | What the record says |
|---|---|---|---|---|
beelink-local | Qwen3.6-35B-A3B (Q4 GGUF) | llama.cpp (Vulkan) on a Ryzen AI Max 395, on-desk | 465 (the most-seated duckling in this repo) | judge, scribe, reviewer. Free. |
luna | gpt-5.6-luna | OpenRouter | 455 | implementer workhorse: 77% measured pass rate at ~$0.02/run. |
atom-local | Qwen3.8-27B | vLLM on a DGX Spark on the LAN | 352 | architect and scribe; it wrote the release notes. Free. |
k3 | Kimi K3 | OpenRouter | 348 | triage, architecture drafts, question advisor. |
terra | gpt-5.6-terra | OpenRouter | 303 | the heavier implementer, ~$0.28/run. |
glm52 | GLM-5.2 | OpenRouter | 160 | the reviewer seat: 81% measured over 261 reviews. |
qwen38-max | Qwen3.8-Max | OpenRouter | 140 | the advisor (the rubber duck). 88% measured. |
pato-sonnet | Claude Sonnet 4.5 | OpenRouter | 7 | the expensive seat, used when cheaper ones measurably hit a ceiling. |
Two notes for accuracy. First, "built with local models" here means the
local seats held judgment and documentation roles (judge, reviewer,
scribe, architect) while cheap hosted models did most of the typing;
about a third of all seat assignments ran on hardware in this room.
Second, the pass rates above are measured on my runs (ducklab duckling scorecard, Wilson lower bound). Yours will differ, and that is the
point: the roster works from your record, not from a leaderboard.
The same machinery on real work: a council revising ducklab's own spec, 4.5M tokens in, paused once on a budget it asked to lift.
ducklab run T-001 --mode <mode>
| Mode | What it does |
|---|---|
solo | One duckling. The yardstick everything else is measured against. |
pair | Implementer and reviewer, decorrelated. Between them the advisor — the rubber duck. |
tournament | Contestants build the same task in isolated worktrees; a judge picks, blind. |
split | An architect decomposes; subtasks run in parallel; integration is file copies, no model involved. |
council | Several models on one document, for intake, spec, plan and review. One drafts, the others critique blind, the first revises. |
Invariants, enforced in code:
A skill is a directory with a SKILL.md — under .ducklab/skills/ for one
project, or in the machine-wide skills directory to serve every project
(project shadows global on a name collision). The documentation-only form
has no script and is the default: a recipe a model reads and follows. The
architect reads survey guides before an adopt (skill_list is in its
prompt), the consultant reads them in chat, and only the implementer can
skill_run an executable one.
Skills are administered from the desktop (gear → Skills): list with
scope badges and validation problems, read, edit the whole SKILL.md,
run with arguments, delete. A skill a duckling writes during a run shows
there greyed pending acceptance until its run is accepted — proposing a
skill goes through the same gate as proposing code.
Every project seats a consultant (a Common seat on the roster board): the model behind the "chat about this" doors and the free-form chat in the guide rail. It reads the code, the runs, the boards and the skills — never writes — and takes images: paste a screenshot of a broken view and ask. Vision is verified, not assumed: a declared-vision seat is probed with a real image request once, and a text-only seat refuses the paste with words instead of hallucinating an answer.
The seated consultant answering a question about the repo it reads.
ducklab mcp serve exposes the whole loop over stdio as an MCP server: an
external model reads each result, decides gates (with a required, recorded
reason — decisions land as approved_by: mcp:<client>, never as "human"),
answers questions, files bugs, amends plans and starts work. The engine's
next lists are the law: an operator cannot take an action a person could
not.
See CONTRIBUTING.md — how to build, how the tests guard the architecture, how work flows through ducklab's own loop, and where to start. The short version:
License: Apache-2.0. Contributions are accepted under the same terms (§5 of the license — no CLA). The Ducklab name and the duck are the maintainer's (§6).
The code implements a written specification, in this repo:
docs/spec/ (00-VISION through 08-DESKTOP-UI) is the
normative layer — vision, invariants, protocol contracts, acceptance
criteria. What the system IS today lives in .ducklab/docs/ — the as-built
requirements, spec and plan the loop itself maintains, each version signed
at a human gate. Where the two differ deliberately, the difference is
recorded in docs/decisions/; the diff between them is
the roadmap, and the alignment stage computes it.