FAQ
add is a Claude Code plugin with 2 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes add, persona-author. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
Repo: pilotspace/ADD
Every AI tool ships a beautiful first feature. The failure shows up across milestones: requirements evolve, the conversation gets long, and the agent quietly re-breaks what it already got right. That decay has a name β context rot β and we measure it instead of hand-waving.
The cause turned out to be simple: context rot lives in the conversation, not in the method or the model. The same agent that decays inside one long chat holds a perfect line when every milestone restarts from state on disk.
So ADD's answer isn't a bigger context window or a smarter summary. It's this: nothing that matters lives in the chat. Spec, frozen contract, red suite, gate records β all state on disk. Close the laptop, lose the session, swap the agent: the next session resumes with one command and loses nothing.
| Same model, six evolving milestones | One long conversation | Fresh session per milestone, resumed from disk |
|---|---|---|
| Requirement coverage | .92 β .75, never recovered | 1.0 flat across all six |
| An early spec violation | carried through five more milestones, never re-examined | never introduced β each session re-derived the shape from the spec |
| New-feature quality at milestone 6 | still good β but the old promises rotted | 1.0 β new work stays good and old work holds |
Campaign report, revised edition β pinned model, deterministic probes, no LLM judge.
An agent already knows how to write code. What it structurally cannot keep is everything outside one context window: what's true so far, what was promised, what must never be traded away. Human teams keep that in senior engineers' heads. AI has no head that survives the session.
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.
Every faculty is a file on disk and a command that shows it β never a promise:
| Faculty | What it holds | See it yourself |
|---|---|---|
| π§ Memory β what is true | the board, frozen contracts, red suites, five living specs | add.py status β a brand-new session resumes mid-build, losing nothing |
| βοΈ Judgment β how to work here | personas propose each task's lane; gates trace outcomes; the loop reflects on the record (GEPA) | add.py deltas β the per-lane scoreboard: what got gated, passed, healed |
| π‘οΈ Conscience β what is trusted | one freeze per feature, evidence-scored gates, tamper tripwire, security hard-stop | edit a frozen test and watch the gate refuse β gaming a test to get green is structurally impossible |
PLAN.md; no doc tree to hunt through.Direction before speed. Trust comes from passing tests β not from reading code and finding it plausible.
Fine print: benchmark cells are single-rep (direction, not statistical proof). On this friendly single-app workload a strong model under spec-kit also passed the restart floors, and ran cheaper β the report's revised edition retracts our own earlier "collapse" claim after we found the meter defect behind it. ADD's case rests on the context-rot result and the structural guarantees β not on a rival's failure.
ADD isn't free. It asks for one thing vanilla prompting doesn't: you approve a frozen contract before any code is written. That upfront pass is the whole trade β you spend minutes on direction to buy trust that holds across milestones.
| π Vanilla β just prompt the agent | π‘οΈ ADD | |
|---|---|---|
| First feature | fastest β start typing | one Direction pass first, then builds |
| Across milestones | quality decays; old promises silently break | frozen contracts + red suites re-run; trust holds |
| What you verify | you re-read the diff and hope | pre-declared tests pass, or the gate refuses |
| Resuming later | re-explain the goal, re-read the repo | one command from state.json, lossless |
| Cost | near-zero ceremony up front | one bounded direction pass per milestone β minutes, not a doc tree |
| Best for | throwaway scripts, one-shots, spikes | evolving products, multiple milestones, teams |
Rule of thumb: building something you'll throw away this week? Vanilla is fine. Building something you'll still be changing next month? The Direction pass pays for itself the first time the agent doesn't re-break a feature you shipped three milestones ago.

Prerequisites: Node β₯ 18 (npm path) or Python β₯ 3.10 (pip path), plus a CLI coding agent β Claude Code, Codex, or similar.
From your project root, pick one ecosystem:
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
See a real one: this repo's own
.add/folder.
In Claude Code, run /add and 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 runs the on-ramp for you:
add.py status β never re-reading your whole repo./add status | continue
State lives on disk, not in the chat. Close your laptop, come back tomorrow, and pick up exactly where you left off β no context rot.
One task Β· three beats Β· one file. Every feature is a single PLAN.md that
fills in section by section as the agent walks three beats β Direction (spec β
scenarios β frozen contract β red tests, the one human approval), Build
(red β green, scope-fenced), Verify (evidence-scored gate: PASS,
RISK-ACCEPTED, or HARD-STOP). The artifacts are what you keep β the code is disposable.


Tasks compound into milestones; milestones grow the project.

Releases: @pilotspace/add (npm) Β· pilotspace-add (PyPI)
.add/
.gitignore
archive/
ground-context/
MILESTONE.md
RETRO.md
tasks/
ground-context-sources/
PLAN.md
ground-gather-hint/
PLAN.md
ground-phase/
MILESTONE.md
RETRO.md
tasks/
ground-bundle-wiring/
PLAN.md
ground-phase-engine/
PLAN.md
ground-prose-align/
PLAN.md
ship-review/
MILESTONE.md
RETRO.md
tasks/
close-book-accord/
PLAN.md
tests/
test_close_book_accord.py
close-guide/
PLAN.md
tests/
test_close_guide.py
close-section-template/
PLAN.md
tests/
test_milestone_template_close_section.py
v12-1/
MILESTONE.md
RETRO.md
tasks/
delta-grammar-dedup/
PLAN.md
SUMMARY.md
deltas-multiline-render/
PLAN.md
status-lock-hint/
PLAN.md
SUMMARY.md
v13/
v13-1/
MILESTONE.md
RETRO.md
tasks/
decide-planned-hint/
PLAN.md
declare-grammar-doc/
PLAN.md
declared-path-confinement/
PLAN.md
MILESTONE.md
RETRO.md
tasks/
decide-digest/
PLAN.md
fence-safe-wrap/
PLAN.md
tests-declared-fallback/
PLAN.md
v14/
MILESTONE.md
RETRO.md
tasks/
agent-portability/
PLAN.md
audit-ci/
PLAN.md
gate-audit/
PLAN.md
high-risk-signal/
PLAN.md
release-1-1-0/
PLAN.md
review-checklist/
PLAN.md
v15/
MILESTONE.md
RETRO.md
tasks/
getting-started-rewrite/
PLAN.md
installer-handoff/
PLAN.md
skill-onramp/
PLAN.md
v16/
MILESTONE.md
RETRO.md
tasks/
appendix-templates-xml/
PLAN.md
engine-docs-xml/
PLAN.md
mirror-greenstate/
PLAN.md
phase-guides-xml/
PLAN.md
xml-convention/
PLAN.md
v17/
MILESTONE.md
RETRO.md
tasks/
clarity-greenstate/
PLAN.md
spotcheck/
scenario-a-security.md
scenario-b-frozen-contract.md
scenario-c-conservative-gate.md
rewrite-core/
PLAN.md
rewrite-guides/
PLAN.md
semantic-inventory/
PLAN.md
wording-rubric/
PLAN.md
v18/
MILESTONE.md
RETRO.md
tasks/
archive-compaction/
PLAN.md
xml-prompt-structure/
PLAN.md
v19/
MILESTONE.md
RETRO.md
tasks/
fence-aware-section/
deltas.md
PLAN.md
SUMMARY.md
shared-engine-pin/
deltas.md
PLAN.md
SUMMARY.md
v20/
MILESTONE.md
RETRO.md
tasks/
dynamic-task-loop/
PLAN.md
project-goal/
PLAN.md
reopen-transition/
PLAN.md
verify-deepen/
PLAN.md
v21/
MILESTONE.md
RETRO.md
tasks/
foundations-chapter/
PLAN.md
inline-citations/
PLAN.md
references-appendix/
PLAN.md
v22/
MILESTONE.md
RETRO.md
tasks/
graduate-guide/
PLAN.md
graduation-analytics/
PLAN.md
stage-book-align/
PLAN.md
stage-goal-criteria/
PLAN.md
v23/
MILESTONE.md
RETRO.md
tasks/
arc-book-align/
PLAN.md
arc-gate-wiring/
PLAN.md
report-arc/
PLAN.md
v5/
MILESTONE.md
RETRO.md
tasks/
competency-deltas/
PLAN.md
cospecify-lift/
PLAN.md
foundation-update-loop/
PLAN.md
verify-integrity/
MILESTONE.md
RETRO.md
tasks/
earned-green-rubric/
PLAN.md
heal-then-escalate/
PLAN.md
tamper-tripwire/
PLAN.md
benchmark-remeasure-2026-07-23.md
CONVENTIONS.md
dependencies.allowlist
design/
captures/
settings.png
welcome.png
GLOSSARY.md
milestones/
add-bench/
add-bench-2/
MILESTONE.md
add-bench-v2/
MILESTONE.md
RETRO.md
MILESTONE.md
RETRO.md
add-lean-loop/
MILESTONE.md
RETRO.md
adr-at-observe/
MILESTONE.md
RETRO.md
advisor-context/
MILESTONE.md
RETRO.md
advisor-gated-autonomy/
MILESTONE.md
RETRO.md
artifact-graph/
MILESTONE.md
RETRO.md
audit-hardening/
MILESTONE.md
RETRO.md
build-scope-lock/
MILESTONE.md
RETRO.md
build-strategy-facets/
MILESTONE.md
RETRO.md
build-strategy-trim/
MILESTONE.md
RETRO.md
call-floor/
MILESTONE.md
RETRO.md
call-residuals/
MILESTONE.md
RETRO.md
ceremony-to-effort/
MILESTONE.md
RETRO.md
component-aware-add/
MILESTONE.md
RETRO.md
component-polish/
MILESTONE.md
RETRO.md
context-search/
MILESTONE.md
RETRO.md
decision-suggestions/
MILESTONE.md
RETRO.md
delta-drain/
MILESTONE.md
RETRO.md
delta-resolution/
delta-resolution-polish/
MILESTONE.md
RETRO.md
MILESTONE.md
RETRO.md
docs-site/
MILESTONE.md
RETRO.md
drift-guard/
MILESTONE.md
RETRO.md
dynamic-personas/
MILESTONE.md
RETRO.md
engine-hygiene/
MILESTONE.md
RETRO.md
engine-minimalism/
MILESTONE.md
RETRO.md
engine-modularization/
MILESTONE.md
RETRO.md
expectations-first/
MILESTONE.md
RETRO.md
fast-lane/
MILESTONE.md
RETRO.md
flag-first-freeze/
MILESTONE.md
RETRO.md
flow-enforcement/
MILESTONE.md
RETRO.md
flow-honesty/
MILESTONE.md
RETRO.md
flow-simplification/
MILESTONE.md
RETRO.md
foundation-compaction/
MILESTONE.md
RETRO.md
git-merge-safety/
MILESTONE.md
RETRO.md
goal-auto-ready/
MILESTONE.md
RETRO.md
ground-trust/
MILESTONE.md
RETRO.md
honest-fidelity-meter/
MILESTONE.md
RETRO.md
install-update-hardening/
dag-plan.json
MILESTONE.md
RETRO.md
installer-experience/
MILESTONE.md
RETRO.md
installer-polish/
MILESTONE.md
RETRO.md
installer-smarts/
installer-smarts-polish/
MILESTONE.md
RETRO.md
MILESTONE.md
RETRO.md
installer-soul-seed/
MILESTONE.md
RETRO.md
lock-reclaim-hardening/
MILESTONE.md
RETRO.md
loop-readability/
MILESTONE.md
RETRO.md
loop-steering/
MILESTONE.md
RETRO.md
method-ergonomics/
MILESTONE.md
RETRO.md
multi-active-polish/
MILESTONE.md
RETRO.md
multi-active-UX/
MILESTONE.md
RETRO.md
multi-agent-installer/
MILESTONE.md
RETRO.md
multi-milestone-intake/
MILESTONE.md
RETRO.md
next-step-seams/
MILESTONE.md
RETRO.md
orientation-honesty/
MILESTONE.md
RETRO.md
ownership-assignment/
MILESTONE.md
RETRO.md
persona-domain-fit/
MILESTONE.md
RETRO.md
persona-gepa-loop/
MILESTONE.md
RETRO.md
persona-learning-loop/
MILESTONE.md
RETRO.md
persona-teacher-bundle/
MILESTONE.md
RETRO.md
... 1600 moreShowing a partial view of a very large repo.
Β© 2026 Flowy Β· Free and open source
Built for Claude Code Β· Not affiliated with Anthropic