Skip to main content

npm version PyPI version License: MIT Read the book GitHub stars

ADD — AI-Driven Development

Your AI's first milestone is always great. ADD is for every milestone after that.

A minimal, state-tracked skill for building software when the AI writes the code and you own the two things it cannot do alone: decide what to build, and verify it is correct.

The agent is the hands. ADD is the memory, judgment, and conscience — the part of the team that survives when the context window doesn't. Memory: the board, frozen contracts, and living specs on disk (cli.py status resumes any session losslessly). Judgment: personas propose each task's lane and the loop learns from traced outcomes (cli.py deltas). Conscience: evidence-scored gates, the tamper tripwire, the security hard-stop.

Native on Claude Code; every other CLI agent follows the same loop through the phase guides. The full reasoning — why every rule exists — is the AIDD book.

  Foundation (context):  DDD  ·  SDD  ·  UDD
  Engine (this skill):   TDD  ⇄  ADD
  Flow per task:  Direction (spec · scenarios · contract · red tests → ONE freeze)
                  → Build (red → green)  → Verify (evidence-scored gate)  ↻

Quick Start

npx @pilotspace/add init                                # Node / npm
pip install pilotspace-add && pilotspace-add init       # Python / pip

Then, in your coding agent, say what you want to build:

/add"Let users log in with email + password / SSO, and keep them signed in for 30 days unless they explicitly log out."

The agent sizes it into a milestone (you confirm the shape), drafts the specification bundle — spec → scenarios → contract → red tests as one Direction pass (you approve once, at the frozen contract) — then builds and verifies to green. Full walkthrough: the 10-minute Quickstart.

Highlights

  • 📉 Your agent stops re-breaking last month's work — every decision lives on disk (PLAN.md, frozen contracts, red suites, .add/state.json), so a fresh session resumes with the full picture. Measured: quality held flat where a long conversation decayed.
  • Stop babysitting the build — you approve once, at the frozen contract; from there the agent drives Direction → Build → Verify and only comes back when it matters.
  • 🔬 Know it's correct without reading every line — trust comes from your pre-declared tests passing, never a diff that merely looks right; gaming a test to reach green is treated as tampering.
  • 💸 Structure without the ceremony tax — a thin 31-verb kernel, a 3-call task walk, one file per feature keep ADD the cheap option, not the heavyweight one.
  • 🔒 Never ship a security hole on autopilot — any security finding is a hard stop with you in the loop, in every mode.
  • 🧠 The method adapts to your codebase — a project-owned persona proposes each task's approach, the freeze ratifies it, outcomes are traced, and the loop learns what works here (GEPA).
  • 🎨 See the UI before a line of code — a wireframe and a zero-dependency HTML mock, approved before any build.
  • 👥 Grows with your team — git-native multi-user, N parallel milestones, DAG-scheduled waves; monorepo or multi-repo in one team.
  • 🤝 Keep the agent you already use — Claude, Copilot, Cursor, Codex, Gemini; install via npm, pip, or the Claude Code plugin.

Direction before speed. Trust comes from passing tests — not from reading code and finding it plausible.

Why ADD — context rot, measured

Every AI tool writes code fast and aces a greenfield first milestone. The unsolved part is trust across change: when the spec evolves in milestone 2 and breaks compatibility in milestone 3, does the work you already trusted stay trusted?

Our benchmark runs the same six-milestone evolving project through each flow under a pinned model with deterministic probe scoring (report, revised edition). The causal finding: when ONE continued conversation carried the milestones, every flow decayed the same way (coverage .92 → .75, an early spec violation carried through five more milestones). When every milestone instead started a fresh session resuming from disk, ADD held every floor at 1.0 across all six — through a breaking shape change and a cross-cutting refactor — with zero regressions.

That's the design, in three moves:

  • One file per feature. Spec, scenarios, contract, test-plan, and gate record all live inline in a single PLAN.md. No sprawling doc tree.
  • State on disk, not in chat. A stdlib-Python kernel tracks where you are in .add/state.json, so a fresh session resumes with one command instead of trusting a long conversation's memory.
  • Progressive disclosure. The skill narrates the whole loop itself and loads a deeper phase reference only when the beat needs it — the context window stays lean.

Honesty note: on this friendly single-app workload a strong model under spec-kit also passed the restart floors (and ran cheaper) — we published the retraction of our own earlier collapse claim when we found the meter defect behind it. What ADD uniquely adds is the guarantees: contracts that can't be silently edited, tests that can't be quietly weakened, security findings that can't scroll past.

ADD vs skill libraries (e.g. agency-agents)

ADD is the trust layer — the gated loop (Direction → Build → Verify) that decides when work is trusted, plus the on-disk memory it runs on. It answers how you trust what gets built. Skill libraries and role-specific subagents (a backend expert, a security reviewer) answer who does the work. Different layers — they compose, they don't compete.

ADD's persona loop distills a lean, project-fit persona from a teacher corpus like agency-agents — vendored at personas-teacher/, read off-build while drafting, never a runtime dependency — down to the three parts a project needs: Identity, Critical Rules, Success Metrics. The project then owns that persona.

A distilled persona is an advisory overlay during direction, build, or verify: it shapes how a step gets done, never whether it happens. It can't skip a gate, edit a frozen contract, or wave through a security finding. Personas also propose each task's route (full walk · fast lane · inline); the freeze ratifies it, the gate traces the outcome, and cli.py deltas rolls the traces into a per-lane scoreboard the loop reflects on (GEPA).

Best setup: install ADD to drive the loop, keep whatever subagent libraries you already use. ADD ships two agents — add-worker (the execution shell) and add-advisor (the second mind it spawns to propose a plan, pressure-test a draft, or decide a delegable ambiguity) — in the same .claude/agents/ mechanism as any other subagent; they coexist with a distilled persona or a built-in expert with zero conflict, nothing is replaced. Prefer add-worker for anything phase-shaped (verify mode for the adversarial refute-read, build mode for a red→green batch) and let it consult add-advisor when confidence is thin; reach for another specialist when a piece needs deep domain expertise the phase guide doesn't carry. The gates hold no matter who did the work — a delegated subagent proposes; the orchestrating agent records.

Install

Pick your ecosystem — all three install the same skill and tooling:

npx @pilotspace/add init                   # Node / npm
pip install pilotspace-add && pilotspace-add init      # Python / pip
# Claude Code plugin — no npm or pip needed
/plugin marketplace add pilotspace/ADD
/plugin install add@add-method

The plugin carries the engine. On first /add, the skill materializes it into the project and scaffolds .add/ — a self-contained result identical to the npm/pip flow. No flags needed: the project name is inferred from your folder and the stage defaults to prototype (pass --name "My App" --stage mvp to choose up front).

Already installed? npx @pilotspace/add@latest update (or pipx run pilotspace-add update) re-materializes the skill and tooling while leaving your project work untouched; add --check to see whether a project is behind. Coming from 2.x? 3.0 is a clean break: it reads a different bundle format and does not convert one, so there is no migrate. Upgrading leaves every 2.x file untouched and add status names the format rather than claiming there is no bundle — archive the 2.x bundle as the record of how the project was built, then add init a 3.0 one beside it.

New here? The 10-minute Quickstart walks your first feature end to end.

This installs:

Path What
.claude/skills/add/ the add skill Claude loads — the loop itself, plus its on-demand references and the phases/ set
.claude/agents/ the advisor and worker subagents the skill dispatches
.add/tooling/cli.py the notary engine's CLI — 21 verbs (Python, stdlib only)
.add/tooling/add.py the engine module the CLI dispatches into (a library, not a command)
.add/personas-teacher/ the vendored teacher corpus personas are distilled from (off-build reading, never runtime)
.add/personas-index/ the generated routing index — which persona to reach for, and when

Project state is not created at install — the installer drops files only; initialisation is the agent's first move when you run /add. add init is what writes the bundle: index.md, PROJECT.md, graph.json, log.md, and the living specs/.

Boundaries — what this plugin writes and runs

ADD works inside your project — here is exactly what that means:

  • Runs only when you ask. Nothing executes on install. It acts when you run /add. User-initiated, every time.
  • What it runs: the bundled engine only — node bin/cli.js and python3 .add/tooling/cli.py. No downloaded or remote code.
  • What it writes: files under your project's .add/ and the managed guideline block in CLAUDE.md / AGENTS.md. Never above the project root.
  • Network: one optional, advisory update check — a single HTTPS GET to the npm registry, ≤ once/24h, 1.5s timeout, fail-open, writes only a one-line note to stderr. Disable with ADD_NO_UPDATE_CHECK=1. No telemetry, no analytics.
  • No secrets, no credentials, no privileged access. Pure local file orchestration.

Use it

ADD is AI-first: you talk to the agent; it drives the method. The installer detects which coding agent you're in and drops the context file it reads — so ADD drives under Claude Code, Codex, OpenCode, Cursor, Windsurf, Trae, Gemini CLI, GitHub Copilot, Cline, and Aider (anything else falls back to a generic AGENTS.md). Only Claude Code runs /add natively; every other agent follows the same loop through cli.py status (the resume point) and cli.py brief <slug> (the composed prompt for the beat that node is on).

You can hand-drive the CLI too:

python3 .add/tooling/cli.py status      # where am I? (resume point)

The non-negotiables

  1. Direction before speed — no Build until spec, scenarios, contract, and red tests exist.
  2. Trust evidence, not inspection — a feature is trusted because its tests pass and the non-functional risks (concurrency, security, architecture) were checked.
  3. Never weaken a test or edit a frozen contract to make the build pass.
  4. No silent skips — every Verify records PASS, RISK-ACCEPTED, or HARD-STOP. Security findings are always HARD-STOP.
  5. Ask, don't guess.

The artifacts survive; the code is disposable

The durable asset is the decisions — spec, scenarios, contract, tests. The code is one implementation that satisfies them and can be regenerated. If the thing you'd be upset to lose is "the code," you're still working the old way.

Read the method

Develop

npm test     # runs the Python tests for the tooling (red/green)

License: MIT.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pilotspace_add-3.1.0.tar.gz (1.5 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pilotspace_add-3.1.0-py3-none-any.whl (1.7 MB view details)

Uploaded Python 3

File details

Details for the file pilotspace_add-3.1.0.tar.gz.

File metadata

  • Download URL: pilotspace_add-3.1.0.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pilotspace_add-3.1.0.tar.gz
Algorithm Hash digest
SHA256 9a271e3b90065099b6c127d60c88300c7882e68f5b70e212ba06033675d64bf0
MD5 3a2096b0b9a92c048eb1672379b4210a
BLAKE2b-256 0341091230af2b9383466973ed6287076fdc857ea281f1253338d422a47f75b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilotspace_add-3.1.0.tar.gz:

Publisher: publish.yml on pilotspace/ADD

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pilotspace_add-3.1.0-py3-none-any.whl.

File metadata

  • Download URL: pilotspace_add-3.1.0-py3-none-any.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pilotspace_add-3.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 500eb96f1a4087a47e377f95d187e6066e1b1fffa0d5ff3e93fa1f82d9fb0825
MD5 c014fc98ee1ee047f50761c41ab55c58
BLAKE2b-256 ecaf84f19d2e91b51f97a1ace8387f65ae0459a4e29f03d1af6155ffac541b85

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilotspace_add-3.1.0-py3-none-any.whl:

Publisher: publish.yml on pilotspace/ADD

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

3.5.0

2 files

3.4.0

2 files

3.3.0

2 files

3.2.0

2 files

This release

3.1.0 This release

2 files

3.0.0

2 files

2.5.0

2 files

2.4.0

2 files

2.3.0

2 files

2.2.0

2 files

2.1.0

2 files

2.0.0

2 files

1.17.0

2 files

1.16.1

2 files

1.16.0

2 files

1.15.0

2 files

1.14.0

2 files

1.13.0

2 files

1.12.0

2 files

1.11.0

2 files

1.10.0

2 files

1.9.0

2 files

1.8.0

2 files

1.7.3

2 files

1.7.2

2 files

1.7.1

2 files

1.7.0

2 files

1.6.0

2 files

1.5.0

2 files

1.4.0

2 files

1.3.0

2 files

1.2.0

2 files

1.1.0

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page