@pilotspace/add 1.0.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/CHANGELOG.md +88 -0
  2. package/GETTING-STARTED.md +172 -84
  3. package/README.md +14 -8
  4. package/bin/cli.js +39 -38
  5. package/docs/01-principles.md +3 -3
  6. package/docs/02-the-flow.md +20 -13
  7. package/docs/03-step-1-specify.md +13 -13
  8. package/docs/04-step-2-scenarios.md +3 -1
  9. package/docs/05-step-3-contract.md +4 -2
  10. package/docs/06-step-4-tests.md +3 -1
  11. package/docs/07-step-5-build.md +1 -1
  12. package/docs/08-step-6-verify.md +22 -4
  13. package/docs/09-the-loop.md +25 -1
  14. package/docs/10-setup-and-stages.md +52 -9
  15. package/docs/11-governance.md +2 -2
  16. package/docs/12-roles.md +3 -3
  17. package/docs/13-adoption.md +3 -3
  18. package/docs/14-foundation.md +19 -11
  19. package/docs/15-foundations-and-lineage.md +106 -0
  20. package/docs/README.md +4 -0
  21. package/docs/appendix-a-templates.md +3 -3
  22. package/docs/appendix-b-prompts.md +40 -5
  23. package/docs/appendix-c-glossary.md +42 -12
  24. package/docs/appendix-d-worked-example.md +2 -2
  25. package/docs/appendix-e-checklists.md +2 -2
  26. package/docs/appendix-f-requirements-matrix.md +12 -11
  27. package/docs/appendix-g-references.md +106 -0
  28. package/package.json +5 -3
  29. package/skill/add/SKILL.md +50 -21
  30. package/skill/add/adopt.md +67 -0
  31. package/skill/add/deltas.md +20 -8
  32. package/skill/add/fold.md +19 -17
  33. package/skill/add/graduate.md +74 -0
  34. package/skill/add/intake.md +22 -7
  35. package/skill/add/loop.md +59 -0
  36. package/skill/add/phases/0-setup.md +92 -24
  37. package/skill/add/phases/1-specify.md +23 -13
  38. package/skill/add/phases/2-scenarios.md +14 -4
  39. package/skill/add/phases/3-contract.md +38 -9
  40. package/skill/add/phases/4-tests.md +29 -5
  41. package/skill/add/phases/5-build.md +14 -4
  42. package/skill/add/phases/6-verify.md +38 -4
  43. package/skill/add/phases/7-observe.md +13 -5
  44. package/skill/add/report-template.md +106 -0
  45. package/skill/add/run.md +53 -34
  46. package/skill/add/scope.md +24 -2
  47. package/skill/add/setup-review.md +65 -0
  48. package/skill/add/streams.md +256 -0
  49. package/tooling/add.py +1388 -62
  50. package/tooling/templates/CONVENTIONS.md.tmpl +1 -1
  51. package/tooling/templates/GLOSSARY.md.tmpl +23 -0
  52. package/tooling/templates/MILESTONE.md.tmpl +1 -0
  53. package/tooling/templates/PROJECT.md.tmpl +4 -3
  54. package/tooling/templates/TASK.md.tmpl +39 -11
@@ -1,6 +1,6 @@
1
1
  # 14 · The foundation: project context across milestones
2
2
 
3
- [← 13 Adoption](./13-adoption.md) · [Contents](./README.md) · Next: [Appendix A Templates →](./appendix-a-templates.md)
3
+ [← 13 Adoption](./13-adoption.md) · [Contents](./README.md) · Next: [15 Foundations & Lineage →](./15-foundations-and-lineage.md)
4
4
 
5
5
  ---
6
6
 
@@ -18,7 +18,7 @@ guesses. That is the same failure the method exists to prevent ([00](./00-introd
18
18
  one level up.
19
19
 
20
20
  The **foundation** is the layer that holds this context and *outlives every
21
- milestone*. It is not new ceremony; it is the [survivor layer](./appendix-f-requirements-matrix.md)
21
+ milestone*. It is not new ceremony; it is the [living documentation](./appendix-f-requirements-matrix.md)
22
22
  the method already names, made explicit as three concerns.
23
23
 
24
24
  ## Three concerns, one foundation
@@ -53,14 +53,14 @@ fifth, where the AI executes on it:
53
53
 
54
54
  ![ADD's five competencies — DDD · SDD · UDD · TDD · ADD: the first four are human-led and feed context to ADD, which is AI-led under your direction](./add-competencies.png)
55
55
 
56
- > The diagram's foundation (DDD · SDD · UDD) and the method's own words — survivor
57
- > layer · living document · ubiquitous language — name the same three ideas. This
56
+ > The diagram's foundation (DDD · SDD · UDD) and the method's own words — living
57
+ > documentation · the foundation document · ubiquitous language — name the same three ideas. This
58
58
  > chapter is where the diagram and the text finally meet.
59
59
 
60
60
  ## One file, not three
61
61
 
62
62
  A foundation that takes a week to write is a foundation no one keeps current. So
63
- ADD realizes all three concerns as **one survivor document — `PROJECT.md`** — with
63
+ ADD realizes all three concerns as **one living document — `PROJECT.md`** — with
64
64
  one short section each, plus an append-only record of key decisions:
65
65
 
66
66
  ```
@@ -74,7 +74,10 @@ one short section each, plus an append-only record of key decisions:
74
74
  Keep it to one screen. If a section wants to grow into a manual, that is a signal
75
75
  the detail belongs in a milestone or a contract, not the foundation. The foundation
76
76
  is the *thin, durable* context the engine reads first — not a place to relocate the
77
- work.
77
+ work. And you do not hand-write it: at setup the AI **drafts** all four sections —
78
+ silently from an existing codebase, or from a short four-lens interview on a
79
+ greenfield repo — and a single human **baseline approval** freezes that draft as committed
80
+ direction (the setup-level analog of a contract freeze).
78
81
 
79
82
  ## How it feeds the engine — and takes feedback back
80
83
 
@@ -98,19 +101,24 @@ life of the product, owned above any single milestone.
98
101
 
99
102
  | Tier | Lives in | Lifespan | Holds |
100
103
  |------|----------|----------|-------|
101
- | **Project** (foundation) | `.add/PROJECT.md` + survivor files | whole product | domain, spec stance, users, decisions |
104
+ | **Project** (foundation) | `.add/PROJECT.md` + living-doc files | whole product | domain, spec stance, users, decisions |
102
105
  | **Milestone** | `.add/milestones/<slug>/MILESTONE.md` | one depth-bounded goal | scope, shared contracts, exit criteria |
103
106
  | **Task** | `.add/tasks/<slug>/TASK.md` | one feature | the seven-step artifacts |
104
107
 
105
108
  A milestone is a *version bump* to the foundation, not a fresh start: when it
106
- closes, fold what it validated into `PROJECT.md` (a decision, a settled domain
109
+ closes, consolidate what it validated into `PROJECT.md` (a decision, a settled domain
107
110
  term, a confirmed user journey) and open the next one against the same, now-richer,
108
- ground.
111
+ ground. The consolidation is not informal: each loop emits **lessons learned** (tagged
112
+ `DDD · SDD · UDD · TDD · ADD`) in its Observe step, and at milestone close a person
113
+ gathers the open ones and consolidates them — append-only, with the `foundation-version:`
114
+ bumped — into the foundation. See [09 · The loop](./09-the-loop.md#lessons-learned-and-the-retrospective-consolidation)
115
+ for the grammar, the ritual, and the tooling (`add.py deltas`, `add.py check`).
109
116
 
110
117
  ## In the tooling
111
118
 
112
- - `add.py init` scaffolds `PROJECT.md` as a survivor file and, like every
113
- survivor file, **never overwrites a hand-edited one**.
119
+ - `add.py init` scaffolds `PROJECT.md` as a living-doc file; the AI then drafts its
120
+ content and a single human **baseline approval** (`add.py lock`) freezes it. Like every
121
+ living-doc file, `init` **never overwrites a hand-edited one**.
114
122
  - `add.py status` shows a one-line pointer to the foundation, so a fresh session
115
123
  re-orients on context before code.
116
124
  - The guideline block written into `CLAUDE.md` / `AGENTS.md` tells any agent the
@@ -0,0 +1,106 @@
1
+ # 15 · Foundations & Lineage
2
+
3
+ [← 14 The foundation](./14-foundation.md) · [Contents](./README.md) · Next: [Appendix A Templates →](./appendix-a-templates.md)
4
+
5
+ ---
6
+
7
+ ADD did not appear from nowhere. It sits where four currents meet: the **recursive
8
+ self-improvement** thesis (AI that helps build the next AI), a decade of **autonomous and
9
+ agentic** research, the **spec-driven development** movement (the specification, not the
10
+ code, is the source of truth), and the **tests-first** discipline that constrains a
11
+ generate→check→refine loop with executable tests — turning fluent model output into
12
+ trustworthy software. This chapter tells that story; [Appendix G](./appendix-g-references.md)
13
+ is the verified source list it cites into. Every `[Author Year]` here resolves to an entry
14
+ there.
15
+
16
+ ## The frame — "closing the loop"
17
+
18
+ Anthropic's recursive-self-improvement picture runs from autonomous agents delegating to
19
+ workers *today* toward a future where Claude improves Claude — *closing the loop* on the
20
+ work of building AI itself [Favaro & Clark 2026]. That is the backdrop ADD is built for, and
21
+ its position inside that picture is deliberately narrow: ADD is a **human-gated,
22
+ evidence-trusted** instance of recursive self-improvement. The AI drives the whole inner
23
+ cycle — specify → build → verify → observe — but a human owns the frozen contract and the
24
+ verify gate, and trust comes from passing tests and re-resolved evidence, never from a
25
+ diff that merely reads plausibly. The argument is not that the loop should stay open
26
+ forever; it is that the loop should be *bounded by human direction* rather than left to run
27
+ unattended [Amodei 2024]. ADD is one concrete shape for that bound.
28
+
29
+ ## The four currents
30
+
31
+ **Recursive self-improvement.** The mathematical anchor is the Gödel machine — a
32
+ self-modifying agent that rewrites itself *only when it can prove the rewrite helps*
33
+ [Schmidhuber 2003]. ADD enforces the same discipline socially rather than formally: the
34
+ never-weaken-a-test rule is "only change on proof" expressed as a gate. The algorithmic kin
35
+ arrived later — a scaffolding program that improves the code that improves code
36
+ [Zelikman et al. 2023], a generate→critique→refine micro-loop [Madaan et al. 2023], agents
37
+ that keep verbal reflections and retry [Shinn et al. 2023], an agent that grows a reusable
38
+ skill library over time [Wang et al. 2023], and an evolutionary coder that beat a
39
+ long-standing matrix-multiplication record under continuous checking
40
+ [Novikov et al. 2025]. And where a self-rewarding loop has the model judge its own reward
41
+ [Yuan et al. 2024], ADD diverges by design — it makes the tests and a human the reward
42
+ signal, not the model's own opinion.
43
+
44
+ **Autonomous and agentic workflows.** The architecture vocabulary comes from the canonical
45
+ taxonomy of prompt-chaining, routing, orchestrator-workers, and the evaluator-optimizer loop
46
+ [Schluntz & Zhang 2024] — where evaluator-optimizer *is* build→verify→refine and
47
+ orchestrator-workers is ADD's wave parallelism. Underneath it sit the base agent loop of
48
+ interleaved think→act→observe [Yao et al. 2022], the self-supervised tool use that lets an
49
+ agent run its own tests and builds [Schick et al. 2023], and the designed agent–computer
50
+ interface that materially lifts autonomous issue resolution [Yang et al. 2024] — the role
51
+ ADD's `add.py` engine plays for the method. The production reports close the gap from theory
52
+ to practice: checkpoints, subagents, and rollback for autonomous work [Anthropic 2025a], and
53
+ a lead orchestrating subagents under an LLM judge [Anthropic 2025b].
54
+
55
+ **Spec-driven development.** ADD's closest siblings are explicit specification systems.
56
+ GitHub's **spec-kit** runs `constitution` → `specify` → `plan` → `tasks` → `implement` with
57
+ the spec as the executable source of truth [GitHub 2025]; its launch framed task
58
+ decomposition as "TDD for your AI agent" [Delimarsky 2025], and its rationale named the
59
+ failure spec-driven work exists to solve — context degrading over a long session
60
+ [Vesely 2025]. The academic vocabulary followed, with a taxonomy of Spec-First,
61
+ Spec-Anchored, and Spec-as-Source rigor [Piskala 2026], and the pattern is converging across
62
+ vendors [InfoQ 2025]. Nearest of all is **GSD** — a spec-driven, context-engineering system
63
+ for the same Claude-Code niche [GSD 2025].
64
+
65
+ **Tests-first and verification.** The empirical backbone is direct: supplying tests
66
+ alongside the prompt measurably lifts pass rates [Mathews & Nagappan 2024], and the field's
67
+ yardstick judges a fix solely by whether the project's own tests pass [Jimenez et al. 2023].
68
+ "Done" means the tests pass — which is exactly how ADD gates a feature. The safety framing
69
+ completes the current: human control and transparency made concrete [Anthropic 2025c], under
70
+ a governance ceiling that grows *more* binding, not less, as the loop gets more capable
71
+ [Anthropic 2026b].
72
+
73
+ ## Where ADD diverges
74
+
75
+ The shared lineage is real, but ADD is not a re-skin of its siblings. spec-kit stops at
76
+ `implement`; GSD ends at verify. ADD closes the loop past both by adding three things
77
+ neither spec-kit [GitHub 2025] nor GSD [GSD 2025] carries as a first-class gate:
78
+
79
+ - a **failing-tests-first gate** — no build starts until the tests are red for the right
80
+ reason, so the contract is proven executable before any code exists;
81
+ - an **observe → `fold`** step — confirmed lessons learned consolidate back into a versioned
82
+ foundation, so the method improves itself across loops (retrospective consolidation is the
83
+ recursive-self-improvement current turned inward on ADD);
84
+ - a **dynamic goal-loop** — the engine holds a milestone open and reopens tasks until its
85
+ exit criteria are met, rather than declaring done when a checklist empties.
86
+
87
+ ADD also deliberately targets **less doc-time than GSD** — a lean foundation and one human
88
+ approval per task instead of a document per phase. The tests-first gate, the `fold`, and the
89
+ goal-loop are ADD's contribution; everything beneath them is inherited.
90
+
91
+ ## The evidence chain — the loop already runs
92
+
93
+ The case that this is not speculative rests on three measured facts. First, the task
94
+ time-horizon: the length of work models complete unaided keeps doubling [Favaro & Clark 2026].
95
+ Second, the authorship share: by 2026 more than 80% of the code merged at Anthropic was
96
+ Claude-authored [Favaro & Clark 2026]. Third, the **Automated Alignment Researchers** result:
97
+ nine parallel Claude agents recovered roughly 97% of the human-expert gap on an alignment task
98
+ in five days against the human team's seven [Anthropic 2026a] — parallel agents working under
99
+ review, which is precisely ADD's wave-plus-verify shape. The loop already runs.
100
+
101
+ What it does *not* yet supply is the discipline to trust the output. That is ADD's
102
+ contribution: the frozen contract, the never-weaken-a-test rule, the evidence-over-inspection
103
+ gate, and the security HARD-STOP that no autonomy level may auto-pass [Anthropic 2025c],
104
+ held beneath the responsible-scaling governance ceiling [Anthropic 2026b]. As the loop grows
105
+ more capable, those gates and the human-owned verify matter more, not less. ADD is the human-gated, evidence-trusted way to stand inside the
106
+ closing loop and still own the result.
package/docs/README.md CHANGED
@@ -51,6 +51,9 @@ For every feature, before AI writes any code, you write four short artifacts in
51
51
  - [13 · Adoption and onboarding](./13-adoption.md)
52
52
  - [14 · The foundation: project context across milestones](./14-foundation.md)
53
53
 
54
+ **Lineage**
55
+ - [15 · Foundations & Lineage](./15-foundations-and-lineage.md)
56
+
54
57
  **Part IV — Reference**
55
58
  - [Appendix A · Templates](./appendix-a-templates.md)
56
59
  - [Appendix B · Prompt library](./appendix-b-prompts.md)
@@ -58,6 +61,7 @@ For every feature, before AI writes any code, you write four short artifacts in
58
61
  - [Appendix D · The worked example, end to end](./appendix-d-worked-example.md)
59
62
  - [Appendix E · Checklists](./appendix-e-checklists.md)
60
63
  - [Appendix F · Document requirements matrix (Project → Milestone → Task)](./appendix-f-requirements-matrix.md)
64
+ - [Appendix G · References & lineage](./appendix-g-references.md)
61
65
 
62
66
  ---
63
67
 
@@ -1,6 +1,6 @@
1
1
  # Appendix A · Templates
2
2
 
3
- [← 13 Adoption](./13-adoption.md) · [Contents](./README.md) · Next: [Appendix B Prompts →](./appendix-b-prompts.md)
3
+ [← 15 Foundations & Lineage](./15-foundations-and-lineage.md) · [Contents](./README.md) · Next: [Appendix B Prompts →](./appendix-b-prompts.md)
4
4
 
5
5
  Copy-paste blanks. Project-level templates are filled once at setup; feature-level templates are filled once per feature.
6
6
 
@@ -46,8 +46,8 @@ Reject:
46
46
  - <bad input / situation> -> "<error_code>"
47
47
  After:
48
48
  - <state true once it succeeds>
49
- Assumptions — least-sure first:
50
- ⚠ <most-likely-wrong assumption> — least sure because <why>; if wrong: <cost>
49
+ Assumptions — lowest-confidence first:
50
+ ⚠ <most-likely-wrong assumption> — lowest confidence because <why>; if wrong: <cost>
51
51
  - [x] <confirmed / low-stakes assumption> — <one line>
52
52
  ```
53
53
 
@@ -7,6 +7,9 @@ The contents of the `playbook/` folder. Each prompt is plain text that names the
7
7
  ---
8
8
 
9
9
  ### `playbook/1_specify.md`
10
+
11
+ <prompt>
12
+
10
13
  ```
11
14
  Role: a domain analyst who brainstorms, then asks rather than assumes.
12
15
  Read first: ./PRD/* , ./GLOSSARY.md , ./inputs/ (tickets, interviews, contracts)
@@ -19,15 +22,20 @@ Steps:
19
22
  giving each refusal a named error code.
20
23
  # why: named errors become scenarios and contract responses; "handle bad input" does not.
21
24
  2. State the success state-change (After).
22
- 3. List the assumptions you had to make, RANKED least-sure first; flag the 1–2 you are least
23
- sure about as `⚠ <assumption> — least sure because <why>; if wrong: <cost>`.
24
- # why: a flat all-equal list gets rubber-stamped; a ranked one aims my attention at the risk.
25
- Exit: a domain owner disputes none of it; assumptions ranked least-sure first, the 1–2 ⚠ flags
25
+ 3. List the assumptions you had to make, RANKED lowest-confidence first; flag the 1–2 where
26
+ your confidence is lowest as `⚠ <assumption> — lowest confidence because <why>; if wrong: <cost>`.
27
+ # why: a flat all-equal list gets approved without reading; a ranked one aims my attention at the risk.
28
+ Exit: a domain owner disputes none of it; assumptions ranked lowest-confidence first, the 1–2 ⚠ flags
26
29
  carrying why + cost — or an honest "none material" that still names the single biggest risk.
27
- Never: resolve an ambiguity by guessing — ask. Never a blank "none" or a flat wall of equal ticks.
30
+ Never: resolve an ambiguity by guessing — ask. Never a blank "none" or a flat list of equal ticks.
28
31
  ```
29
32
 
33
+ </prompt>
34
+
30
35
  ### `playbook/2_scenarios.md`
36
+
37
+ <prompt>
38
+
31
39
  ```
32
40
  Role: a specification tester.
33
41
  Read first: ./SPEC.md , ./GLOSSARY.md
@@ -41,7 +49,12 @@ Exit: every rule has at least one scenario with an observable result.
41
49
  Never: write a vague result ("then it works").
42
50
  ```
43
51
 
52
+ </prompt>
53
+
44
54
  ### `playbook/3_contract.md`
55
+
56
+ <prompt>
57
+
45
58
  ```
46
59
  Role: an interface/contract architect; contracts are immutable once frozen.
47
60
  Read first: ./SPEC.md , ./features/*.feature , ./GLOSSARY.md
@@ -57,7 +70,12 @@ Exit: contract tests pass against the mock; every spec rejection has a response.
57
70
  Never: change a frozen contract — a change is a request that reopens Specify.
58
71
  ```
59
72
 
73
+ </prompt>
74
+
60
75
  ### `playbook/4_tests.md`
76
+
77
+ <prompt>
78
+
61
79
  ```
62
80
  Role: a test author who writes tests before code.
63
81
  Read first: ./features/*.feature , ./contracts/*
@@ -73,7 +91,12 @@ Exit: one test per scenario; suite red for the right reason; target recorded.
73
91
  Never: assert on internals; write the implementation here.
74
92
  ```
75
93
 
94
+ </prompt>
95
+
76
96
  ### `playbook/5_build.md`
97
+
98
+ <prompt>
99
+
77
100
  ```
78
101
  Role: an execution agent. The human commands; you implement and report.
79
102
  Read first: ./SPEC.md , ./contracts/* , ./tests/* , ./CONVENTIONS.md
@@ -90,7 +113,12 @@ Never: change a test or the contract; add an unlisted dependency; exceed the tas
90
113
  without escalating; guess when unclear — ask.
91
114
  ```
92
115
 
116
+ </prompt>
117
+
93
118
  ### `playbook/6_observe.md`
119
+
120
+ <prompt>
121
+
94
122
  ```
95
123
  Role: a reliability analyst feeding the next cycle.
96
124
  Read first: telemetry exports , service-objective definitions , incident tickets
@@ -104,9 +132,14 @@ Exit: a reviewed SPEC delta linked into the backlog.
104
132
  Never: auto-roll back — recommend; a human owns the production decision.
105
133
  ```
106
134
 
135
+ </prompt>
136
+
107
137
  ---
108
138
 
109
139
  ### Master prompt skeleton
140
+
141
+ <prompt>
142
+
110
143
  ```
111
144
  Role: <one line — who the agent is for this step>
112
145
  Read first: <explicit repository paths — never chat memory>
@@ -117,3 +150,5 @@ Exit: <conditions a person or the pipeline can check>
117
150
  Never: <what the agent must not do>
118
151
  Evidence: <artifacts to attach for review>
119
152
  ```
153
+
154
+ </prompt>
@@ -10,31 +10,39 @@
10
10
 
11
11
  **Artifact** — a durable work product: the spec, the scenarios, the contract, the tests. The artifacts survive; the code is disposable.
12
12
 
13
- **Competency delta** — a single learning a loop produces, tagged by which of the five competencies (`DDD · SDD · UDD · TDD · ADD`) it improves, written in a task's OBSERVE phase as `- [<COMPETENCY> · <status>] <learning> (evidence: …)`. Emitted `open` by the AI; the human folds it into a versioned `PROJECT.md` (`folded`) or declines it (`rejected`). The mechanism by which the foundation self-improves instead of drifting. See the `add` skill's `deltas.md`.
13
+ **Lesson learned** (formerly "competency delta") — a single learning a loop produces, tagged by which of the five competencies (`DDD · SDD · UDD · TDD · ADD`) it improves, written in a task's OBSERVE phase as `- [<COMPETENCY> · <status>] <learning> (evidence: …)`. Emitted `open` by the AI; the human folds it into a versioned `PROJECT.md` (`folded`) or declines it (`rejected`). The mechanism by which the foundation self-improves instead of drifting. See the `add` skill's `deltas.md`.
14
14
 
15
15
  **Contract** — the fixed external shape of a feature: interfaces, data structures, names, and error cases. Frozen before the build, it is the surface the AI builds against.
16
16
 
17
- **Co-specification** — how a spec is made in ADD: the AI and the human **brainstorm the shape together** (diverge), the AI **drafts** it, and the human **validates with the AI's advice** (validate). The AI's decisive advice is the *least-sure flag*. It replaces dictation-by-one-side — the human owns the decision, the AI owns surfacing what it does not yet know. See [03 Specify](./03-step-1-specify.md).
17
+ **Co-specification** — how a spec is made in ADD: the AI and the human **brainstorm the shape together** (diverge), the AI **drafts** it, and the human **validates with the AI's advice** (validate). The AI's decisive advice is the *lowest-confidence flag*. It replaces dictation-by-one-side — the human owns the decision, the AI owns surfacing what it does not yet know. See [03 Specify](./03-step-1-specify.md).
18
18
 
19
19
  **Disposable code** — the view that code is one regenerable implementation of the artifacts, not a durable asset to be preserved.
20
20
 
21
21
  **Evidence bundle** — the proof attached to a change (passing tests, clean security scan, no coverage loss) that justifies trusting it and may unlock more AI autonomy.
22
22
 
23
- **Foundation version** — a monotonic integer marker in `PROJECT.md` that advances by one each time confirmed competency deltas are folded into the foundation. It makes the survivor layer's evolution auditable: a rising version with fewer new deltas per milestone is the signal that a competency is converging rather than drifting. Bumped only by the fold ritual (see the `add` skill's `fold.md`).
23
+ **Foundation version** — a monotonic integer marker in `PROJECT.md` that advances by one each time confirmed lessons learned are consolidated into the foundation. It makes the living documentation's evolution auditable: a rising version with fewer new deltas per milestone is the signal that a competency is converging rather than drifting. Bumped only by the retrospective consolidation (see the `add` skill's `fold.md`).
24
24
 
25
25
  **Gate** — a checkpoint with an explicit pass/fail exit. Its outcome is `PASS`, `RISK-ACCEPTED`, or `HARD-STOP`.
26
26
 
27
27
  **`HARD-STOP`** — a gate outcome meaning work cannot proceed; triggered by any failing test or security finding.
28
28
 
29
- **Intake** — the step *before* a task: sizing a raw request into versioned scope by classifying it into one **request bucket**. The AI proposes `{bucket, rationale, command}`; the human confirms. Lives in the `add` skill's `intake.md` (the intake altitude, above the per-task flow).
29
+ **Intake** — the step *before* a task: sizing a raw request into versioned scope by classifying it into one **request bucket**. The AI proposes `{bucket, rationale, command}`; the human confirms. Lives in the `add` skill's `intake.md` (the intake level, above the per-task flow).
30
30
 
31
- **Least-sure flag** — the AI's ranked declaration of the **1–2 things most likely to be wrong** in what it is asking a human to approve, each carrying *why* it is uncertain and *what it costs if wrong* (`⚠ [spec|scenario|contract|test] … — because …; if wrong: …`). It reshapes the old flat assumptions list into a ranked one, so a single approval aims the reviewer's attention at the real risk instead of a wall of equal-looking ticks. Bundle-wide at the one-approval freeze seam; the §1 assumptions are its first feeder. If nothing is materially uncertain it still names the single biggest risk — never a blank "none". It makes a genuine review cheap and a lazy one visibly negligent, but cannot *force* the read. The "AI advises" half of **co-specification**.
31
+ **Lowest-confidence flag** (formerly "least-sure flag") — the AI's ranked declaration of the **1–2 things most likely to be wrong** in what it is asking a human to approve, each carrying *why* it is uncertain and *what it costs if wrong* (`⚠ [spec|scenario|contract|test] … — because …; if wrong: …`). It reshapes the old flat assumptions list into a ranked one, so a single approval aims the reviewer's attention at the real risk instead of a flat list of equal-looking ticks. Bundle-wide at the contract-freeze decision point; the §1 assumptions are its first input. If nothing is materially uncertain it still names the single biggest risk — never a blank "none". It makes a genuine review cheap and a lazy one visibly negligent, but cannot *force* the read. The "AI advises" half of **co-specification**.
32
32
 
33
33
  **Living document** — an artifact expected to change as the loop learns; never frozen forever (the one exception being a versioned contract, which changes only via a change request).
34
34
 
35
- **On-ramp** — the path a new user walks from install to their first milestone: install → `/add` → describe the goal → the agent runs intake (sizing the request into a milestone the human confirms) → the one-approval front → the self-driving run. The AI-first entry to the method; the human talks to the agent rather than hand-typing `add.py`.
35
+ **Onboarding** (formerly "on-ramp") — the path a new user walks from install to their first milestone: install → `/add` → describe the goal → the agent runs intake (sizing the request into a milestone the human confirms) → the specification bundle → the self-driving run. The AI-first entry to the method; the human talks to the agent rather than hand-typing `add.py`.
36
36
 
37
- **Owner (of a phase)**who drives a phase, exposed by `add.py --json` as `human`, `seam`, or `ai`. It tells an autonomous harness where it may run (`ai`) and where it must checkpoint to a person (`human`/`seam`), following the who-does-what table (Verify is always `human`).
37
+ **Decision point** (formerly "seam") — a place where the flow stops for human judgment: the contract-freeze approval (the one approval), an escalated verify gate, intake confirmation, milestone close. The machine layer keeps the legacy name: the `--json` owner enum `seam`, the decide-digest key `seam`, and the `seam-audit` CI job.
38
+
39
+ **The decision arc** — the three engine-sourced lines a gate report opens with at every **decision point**: `goal:` the milestone goal the work serves · `done:` the achievement, the proven progress toward it (the gate reports render this line as `done`) · `plan:` what comes next. What `done` reports adapts per gate (verify: tests + evidence · milestone close: exit-criteria met · intake: the request sized) while the three-part shape stays constant. Rendered first, above the report's summary, so the human confirms with sight of the whole trajectory, not a local snapshot. Engine-sourced like all evidence — goal · done · plan are pulled from `add.py` output, never re-typed. Presentation only: it never adds a gate or changes a `PASS` / `RISK-ACCEPTED` / `HARD-STOP` / freeze outcome. The report it opens is the chat report a person reads at a decision point — distinct from the three Test/Quality/Risk reports a verify gate produces ([11 Governance](./11-governance.md)). See the `add` skill's `report-template.md`.
40
+
41
+ **Specification bundle** (formerly "the one-approval front") — §1–§4 of a task (spec · scenarios · contract · failing tests) drafted by the AI as one piece and approved by a person **once**, at the contract freeze. Rejecting any part returns the whole bundle to draft. The single approval it carries is the bundle approval.
42
+
43
+ **Retrospective consolidation** (formerly "the fold / fold ritual") — the milestone-close (or on-demand) step where a person gathers `open` lessons learned, confirms each, and the AI writes them append-only into the versioned foundation, bumping `foundation-version:`. The AI never self-approves a consolidation. The machine names keep their names: `fold.md`, the `folded` delta status, and `add.py deltas`.
44
+
45
+ **Owner (of a phase)** — who drives a phase, exposed by `add.py … --json` as `human`, `seam`, or `ai` (machine enum values that keep their names; in prose the `seam` value's concept is now the decision point, formerly "seam"). It tells an autonomous harness where it may run (`ai`) and where it must checkpoint to a person (`human`/`seam`), following the who-does-what table (Verify is always `human`).
38
46
 
39
47
  **Profile** — the intensity at which the method is run: Express, Standard, or Regulated.
40
48
 
@@ -48,17 +56,39 @@
48
56
 
49
57
  **Spec (`SPEC.md`)** — the plain-language statement of what a feature must do, must reject, and assumes.
50
58
 
51
- **Spine / continuous concern** — a concern that runs through every step rather than being one step: security, testing, observability, cost.
59
+ **Cross-cutting concern** (formerly "spine / continuous concern") — a concern that runs through every step rather than being one step: security, testing, observability, cost.
52
60
 
53
61
  **Stage** — one pass through the flow at a chosen depth: Prototype, Proof of Concept, MVP, or Production-Ready.
54
62
 
55
- **State surface** — everything an agent loads every session: the `add` skill (router `SKILL.md` + the active phase) and the lean operational docs `PROJECT.md`, the active `MILESTONE.md` and `TASK.md`, and `state.json`. Kept small to avoid context rot. Contrast **Story surface**.
63
+ **Stage graduation** — the orchestration loop that proposes the move to the next **stage** as a human-confirmed roadmap, never a bare flip; the 4th scope level after setup · intake · milestone-loop. The cue is every milestone `done` with the **stage-goal-criteria** all `[x]`; the flow is gather **graduation analytics** interview *what production means here* → draft ≥1 production milestone → human confirms → `add.py stage production` as the final step. The →production flip is guarded: it refuses with `stage_no_roadmap` (a tally, not a readiness judgment) until ≥1 production milestone exists; `--force` overrides. Lives in the `add` skill's `graduate.md`.
64
+
65
+ **Graduation analytics** — the five record-sets `add.py graduation-report` clusters from the whole MVP loop for the graduation interview: open deltas by competency · open RISK-ACCEPTED waivers by expiry · RETRO records · verify residue · observe-loop coverage gaps. It gathers, never judges — there is no readiness verdict, only the records the human reasons from (gather-not-judge).
66
+
67
+ **Stage-goal-criteria** — the human-authored `[x]` checklist in `PROJECT.md` that defines "MVP covered" for this project; when every milestone is `done` and these are all checked, `add.py status` prints the graduation cue. Authored by the human (judgment), never inferred by the engine.
68
+
69
+ **Baseline approval** (formerly "the lock-down") — the single human gate ending autonomous setup: an explicit yes that freezes the foundation, first scope, and first contract together; runs as `add.py lock --by <name>`.
70
+
71
+ **Scope level** (formerly "altitude") — the granularity a decision lives at: intake level (request → versioned scope) · milestone level · setup/foundation level · task level. (A cross-stage decision lives one level out, at the **stage-graduation** loop — which `graduate.md` also numbers as a scope level; see **Stage graduation**.) One ⚠-assumption notation is shared across every scope level.
72
+
73
+ **Autonomy level** (formerly "autonomy dial") — the per-task setting (`autonomy: auto | conservative`) choosing who resolves Verify; high-risk scope refuses an unguarded `auto`.
74
+
75
+ **Automated quality gate** (formerly "evidence auto-gate") — the Verify resolver under `autonomy: auto`: a run may auto-PASS on complete evidence, recorded as *auto-resolved*; a security finding always escalates (`HARD-STOP`).
76
+
77
+ **Change scope** (formerly "touch-boundary") — the hard boundary of a locked run: what it may edit (code, tests-to-green, evidence) and must not (the frozen contract, locked scope, any test weakening). The `<touch_boundary>` XML prompt tag keeps its name.
78
+
79
+ **Non-functional review** (formerly "blind-spot checks") — the deliberate verify-time check of the risks tests rarely catch: concurrency, security, architecture. Security findings always escalate.
80
+
81
+ **Failing-first suite** (formerly "red safety net") — the per-feature test suite written before any code and confirmed red for the right reason (a missing implementation, not a broken test); the TDD red phase at ADD step 4.
82
+
83
+ **Method rationale** (formerly "trust layer") — the *why* behind every rule: the AIDD book in `.add/docs/`, read on demand via each phase guide's chapter pointer, never auto-loaded.
84
+
85
+ **Working state** (formerly "state surface" — one of the two record surfaces) — everything an agent loads every session: the `add` skill (router `SKILL.md` + the active phase) and the lean operational docs — `PROJECT.md`, the active `MILESTONE.md` and `TASK.md`, and `state.json`. Kept small to avoid context rot. Contrast **audit trail**.
56
86
 
57
87
  **Stop signal** — the boolean an autonomous harness reads from `add.py … --json` (`stop = owner != "ai"`): true means pause for a person before proceeding. The irreducible stops are the contract freeze and the Verify gate. See **Owner (of a phase)**.
58
88
 
59
- **Story surface** — the book (`docs/*`): the whole method, read once by a person to trust ADD, then referenced by a pointer and **never auto-loaded** into agent context. Contrast **State surface**.
89
+ **Audit trail** (formerly "story surface") — the book (`docs/*`): the whole method, read once by a person to trust ADD, then referenced by a pointer and **never auto-loaded** into agent context. Contrast **working state**.
60
90
 
61
- **Survivor layer** — the set of durable artifacts (conventions, glossary, frozen contracts) that outlive any particular code.
91
+ **Living documentation** (formerly "survivor layer") — the set of durable artifacts (conventions, glossary, frozen contracts) that outlives any particular code.
62
92
 
63
93
  **Trust ladder / autonomy ladder** — the graduated levels of AI autonomy, earned with evidence and verification capacity.
64
94
 
@@ -82,4 +112,4 @@ This book uses plain step names. Teams connecting it to a larger formal standard
82
112
  | Verify | the review gate within the build |
83
113
  | Observe (loop) | Operate and Learn |
84
114
 
85
- The formal standard also names the *foundation* and *design* work as full phases in their own right; this book folds them into project setup and the Specify step (and the Prototype stage) to keep the flow to six memorable steps.
115
+ The formal standard also names the *foundation* and *design* work as full phases in their own right; this book merges them into project setup and the Specify step (and the Prototype stage) to keep the flow to six memorable steps.
@@ -23,8 +23,8 @@ Reject:
23
23
  - source == destination -> "same_account"
24
24
  - balance < amount -> "insufficient_funds"
25
25
  - account not mine -> "forbidden"
26
- Assumptions — least-sure first:
27
- ⚠ same currency only (no FX) in v1 — least sure because the ticket never said; if wrong: the amount/rounding model changes and this contract is wrong
26
+ Assumptions — lowest-confidence first:
27
+ ⚠ same currency only (no FX) in v1 — lowest confidence because the ticket never said; if wrong: the amount/rounding model changes and this contract is wrong
28
28
  - [x] no daily limit in v1 — confirmed: out of scope for v1
29
29
  ```
30
30
 
@@ -18,7 +18,7 @@ Every exit check in the book, collected for quick use. Print this page.
18
18
  - [ ] Every required behavior stated explicitly.
19
19
  - [ ] Every rejection has a named error code.
20
20
  - [ ] Success state-change described.
21
- - [ ] Assumptions ranked least-sure first; the 1–2 most-likely-wrong ⚠-flagged with why + cost (or an honest "none material" that still names the single biggest risk).
21
+ - [ ] Assumptions ranked lowest-confidence first; the 1–2 most-likely-wrong ⚠-flagged with why + cost (or an honest "none material" that still names the single biggest risk).
22
22
 
23
23
  ## Step 2 — Scenarios
24
24
 
@@ -70,7 +70,7 @@ Every exit check in the book, collected for quick use. Print this page.
70
70
 
71
71
  A feature is shippable only when all are true:
72
72
 
73
- - [ ] Spec complete: behavior stated, rejections named, assumptions ranked least-sure first with the biggest risk flagged.
73
+ - [ ] Spec complete: behavior stated, rejections named, assumptions ranked lowest-confidence first with the biggest risk flagged.
74
74
  - [ ] Every rule has a scenario.
75
75
  - [ ] Contract frozen; contract tests green.
76
76
  - [ ] A test per scenario; suite was red before the build.
@@ -10,11 +10,11 @@ This appendix maps every AIDD document to a three-level project hierarchy, so th
10
10
 
11
11
  | Level | What it is | AIDD meaning | Spans |
12
12
  |-------|-----------|--------------|-------|
13
- | **Project** | the whole product or engagement | the survivor layer — documents created once and kept for the life of the product | all milestones |
13
+ | **Project** | the whole product or engagement | the living documentation — documents created once and kept for the life of the product | all milestones |
14
14
  | **Milestone** | a stage or release | one pass of the flow at a chosen depth: Prototype, POC, MVP, or Production-Ready; groups many tasks | many tasks |
15
- | **Task** | one feature through the flow | a single pass of Specify → … → Verify; the smallest unit with its own gate records | the six steps |
15
+ | **Task** | one feature through the flow | a single pass of Specify → … → Verify → Observe; the smallest unit with its own gate records | the seven steps |
16
16
 
17
- A **project** sets up the survivor-layer documents once. A **milestone** is a depth-bounded goal that groups tasks and has its own entry and exit document gates. A **task** is one feature, and it produces the per-feature artifacts.
17
+ A **project** sets up the living documentation once. A **milestone** is a depth-bounded goal that groups tasks and has its own entry and exit document gates. A **task** is one feature, and it produces the per-feature artifacts.
18
18
 
19
19
  ## How the hierarchy decomposes
20
20
 
@@ -53,12 +53,12 @@ Which document lives at which level, who is accountable for it, and how long it
53
53
  | `SLO.md` (objectives) | Milestone (MVP+) | from MVP | from MVP onward | DevOps / SRE |
54
54
  | `SPEC.md` | Task | per feature | living | Product / Domain |
55
55
  | `features/*.feature` | Task | per feature | living | QA / Test |
56
- | `contracts/*.md` | Task → **Project** | per feature, then frozen | survivor (promoted to project) | Architect / Lead |
56
+ | `contracts/*.md` | Task → **Project** | per feature, then frozen | living doc (promoted to project) | Architect / Lead |
57
57
  | `tests/*` | Task | per feature | living | QA / Engineer |
58
58
  | Source code | Task | per feature | **disposable** | Engineer |
59
59
  | Gate outcome records | Task | per step | kept for audit | the reviewer |
60
60
 
61
- > Note the one promotion: a **contract** is authored at task level but, once frozen, becomes part of the project's survivor layer — other tasks depend on it. That promotion is why a contract change is a project-level change request, not a task-local edit.
61
+ > Note the one promotion: a **contract** is authored at task level but, once frozen, becomes part of the project's living documentation — other tasks depend on it. That promotion is why a contract change is a project-level change request, not a task-local edit.
62
62
 
63
63
  ---
64
64
 
@@ -87,20 +87,21 @@ Which documents must exist, and at what depth, to **exit** each milestone. Depth
87
87
 
88
88
  ---
89
89
 
90
- ## Matrix 3 — Documents required per task (the six steps)
90
+ ## Matrix 3 — Documents required per task (the seven steps)
91
91
 
92
92
  Every task, regardless of milestone, produces this artifact chain. The depth varies by milestone (Matrix 2); the *sequence and exit gate* do not.
93
93
 
94
94
  | Step | Required document | Exit gate (the proof) | Detail |
95
95
  |------|-------------------|------------------------|--------|
96
- | 1 Specify | `SPEC.md` | rules + named rejections, assumptions ranked least-sure first (biggest risk ⚠-flagged) | [03](./03-step-1-specify.md) |
96
+ | 1 Specify | `SPEC.md` | rules + named rejections, assumptions ranked lowest-confidence first (biggest risk ⚠-flagged) | [03](./03-step-1-specify.md) |
97
97
  | 2 Scenarios | `features/<task>.feature` | one scenario per rule | [04](./04-step-2-scenarios.md) |
98
98
  | 3 Contract | `contracts/<task>.md` | frozen + contract tests green | [05](./05-step-3-contract.md) |
99
99
  | 4 Tests | `tests/<task>_*` | one test per scenario, red first | [06](./06-step-4-tests.md) |
100
100
  | 5 Build | source code + evidence bundle | all tests green, nothing weakened | [07](./07-step-5-build.md) |
101
- | 6 Verify | gate outcome record | `PASS` / `RISK-ACCEPTED` / `HARD-STOP` | [08](./08-step-6-verify.md) |
101
+ | 6 Verify | gate outcome record | `PASS` / `RISK-ACCEPTED` / `HARD-STOP` (auto-resolved on evidence under `autonomy: auto`; security always escalates) | [08](./08-step-6-verify.md) |
102
+ | 7 Observe | `TASK.md` §7 OBSERVE block | released behind a flag; scenario-monitors live; spec delta + lessons learned captured | [09](./09-the-loop.md) |
102
103
 
103
- A task is **done** only when all six documents exist and the Verify record reads `PASS` (or a signed `RISK-ACCEPTED`). See the master shippable checklist in [Appendix E](./appendix-e-checklists.md).
104
+ A task is **done** when the build's documents exist and the Verify record reads `PASS` (or a signed `RISK-ACCEPTED`); the seventh step — **Observe** (§7) — then runs in production and feeds the next loop's Specify. See the master shippable checklist in [Appendix E](./appendix-e-checklists.md).
104
105
 
105
106
  ---
106
107
 
@@ -135,13 +136,13 @@ The tests are the source of truth; this table is their index. If a row here is e
135
136
 
136
137
  ## Worked example — the hierarchy filled in
137
138
 
138
- - **Project:** *Mobile Banking App.* Survivor-layer documents: `CONVENTIONS.md`, `GLOSSARY.md` (defines *account*, *balance*, *transfer*), `MODEL_REGISTRY.md`, `dependencies.allowlist`, `playbook/`.
139
+ - **Project:** *Mobile Banking App.* Living documentation: `CONVENTIONS.md`, `GLOSSARY.md` (defines *account*, *balance*, *transfer*), `MODEL_REGISTRY.md`, `dependencies.allowlist`, `playbook/`.
139
140
  - **Milestone:** *MVP — core money movement.* Exit requires the full per-feature document set for each task below, plus a light `SLO.md` and a milestone exit report.
140
141
  - **Task:** *Transfer between own accounts* → `SPEC.md`, `features/transfer.feature`, `contracts/transfer.md` (frozen at v1), `tests/transfer_test.py`, code, and a `PASS` gate record. (The full set is in [Appendix D](./appendix-d-worked-example.md).)
141
142
  - **Task:** *View balance* → its own SPEC, feature, contract, tests, code, record.
142
143
  - **Task:** *Transaction history* → its own set.
143
144
 
144
- When all three tasks read `PASS` and the milestone documents exist, the MVP milestone exits — and the frozen `transfer` contract is now a project-level survivor artifact the next milestone builds on.
145
+ When all three tasks read `PASS` and the milestone documents exist, the MVP milestone exits — and the frozen `transfer` contract is now a project-level living-documentation artifact the next milestone builds on.
145
146
 
146
147
  ---
147
148