@eir-labs/coltrane 0.24.14 → 0.24.15

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 (60) hide show
  1. package/agents/bandleader.json +5 -5
  2. package/agents/default-adjudicator.json +39 -0
  3. package/agents/deploy-agent.json +1 -2
  4. package/agents/deploy-scout.json +1 -2
  5. package/agents/lineage-scout-internal.json +14 -4
  6. package/agents/lineage-scribe.json +6 -6
  7. package/agents/lineage-weaver.json +8 -8
  8. package/agents/patent-browser-scout.json +3 -1
  9. package/agents/proof-composer.json +38 -0
  10. package/agents/receipt-mapper.json +39 -0
  11. package/agents/reconciliation-auditor.json +45 -0
  12. package/dist/src/cli.d.ts +1 -1
  13. package/dist/src/version.d.ts +1 -1
  14. package/dist/src/version.js +1 -1
  15. package/domain_types/alignment-plan.json +9 -3
  16. package/domain_types/branch-state.json +12 -3
  17. package/domain_types/change-decision.json +32 -7
  18. package/domain_types/change-plan.json +41 -12
  19. package/domain_types/change-request.json +37 -7
  20. package/domain_types/change-set.json +40 -11
  21. package/domain_types/change-verdict.json +42 -6
  22. package/domain_types/deploy-verdict.json +21 -3
  23. package/domain_types/design-brief.json +48 -9
  24. package/domain_types/design-concept.json +40 -9
  25. package/domain_types/design-definition.json +40 -9
  26. package/domain_types/design-question.json +26 -5
  27. package/domain_types/design-verdict.json +42 -6
  28. package/domain_types/draft-agent-profile.json +75 -14
  29. package/domain_types/draft-domain-type.json +56 -11
  30. package/domain_types/draft-standard.json +57 -15
  31. package/domain_types/internal-inventory.json +15 -5
  32. package/domain_types/lineage-adoption-target.json +4 -1
  33. package/domain_types/lineage-hit.json +19 -6
  34. package/domain_types/lineage-map.json +35 -8
  35. package/domain_types/lineage-question.json +13 -4
  36. package/domain_types/lineage-record.json +71 -18
  37. package/domain_types/lineage-verdict.json +9 -3
  38. package/domain_types/parsed-conversation-trace.json +54 -13
  39. package/domain_types/pattern-extraction.json +91 -21
  40. package/domain_types/preview-deployment.json +37 -8
  41. package/domain_types/project-charter.json +59 -16
  42. package/domain_types/proof-of-work-contract.json +86 -0
  43. package/domain_types/reconciliation-map.json +90 -0
  44. package/domain_types/reconciliation-record.json +52 -0
  45. package/domain_types/red-spec.json +2 -2
  46. package/domain_types/repo-survey.json +84 -14
  47. package/domain_types/seeding-verdict.json +93 -27
  48. package/domain_types/soft-verdict.json +45 -10
  49. package/domain_types/user-flow-transcript.json +36 -10
  50. package/domain_types/user-flow-verdict.json +57 -13
  51. package/package.json +1 -1
  52. package/standards/lineage-adopt-v0.json +2 -2
  53. package/standards/lineage-deepen-v0.json +12 -4
  54. package/standards/lineage-pass-v1.json +60 -17
  55. package/standards/lineage-reweave-v0.json +34 -10
  56. package/standards/patent-triage-v1.json +170 -12
  57. package/standards/product-design-v1.json +4 -4
  58. package/standards/reconcile-work-order-v0.json +137 -0
  59. package/standards/software-change-v1.json +5 -5
  60. package/standards/user_flow_correctness.json +3 -3
@@ -17,16 +17,24 @@
17
17
  "role": "identify-external",
18
18
  "agent_slug": "lineage-scout-external",
19
19
  "depends_on": [],
20
- "input_contract": ["lineage-question"],
21
- "output_contract": ["lineage-hit"],
20
+ "input_contract": [
21
+ "lineage-question"
22
+ ],
23
+ "output_contract": [
24
+ "lineage-hit"
25
+ ],
22
26
  "required_skills": []
23
27
  },
24
28
  {
25
29
  "role": "identify-internal",
26
30
  "agent_slug": "lineage-scout-internal",
27
31
  "depends_on": [],
28
- "input_contract": ["lineage-question"],
29
- "output_contract": ["internal-inventory"],
32
+ "input_contract": [
33
+ "lineage-question"
34
+ ],
35
+ "output_contract": [
36
+ "internal-inventory"
37
+ ],
30
38
  "required_skills": []
31
39
  }
32
40
  ],
@@ -38,9 +46,17 @@
38
46
  {
39
47
  "role": "associate",
40
48
  "agent_slug": "lineage-weaver",
41
- "depends_on": ["identify-external", "identify-internal"],
42
- "input_contract": ["lineage-hit", "internal-inventory"],
43
- "output_contract": ["lineage-map"],
49
+ "depends_on": [
50
+ "identify-external",
51
+ "identify-internal"
52
+ ],
53
+ "input_contract": [
54
+ "lineage-hit",
55
+ "internal-inventory"
56
+ ],
57
+ "output_contract": [
58
+ "lineage-map"
59
+ ],
44
60
  "required_skills": []
45
61
  }
46
62
  ],
@@ -52,9 +68,15 @@
52
68
  {
53
69
  "role": "assess",
54
70
  "agent_slug": "lineage-weaver",
55
- "depends_on": ["associate"],
56
- "input_contract": ["lineage-map"],
57
- "output_contract": ["alignment-plan"],
71
+ "depends_on": [
72
+ "associate"
73
+ ],
74
+ "input_contract": [
75
+ "lineage-map"
76
+ ],
77
+ "output_contract": [
78
+ "alignment-plan"
79
+ ],
58
80
  "required_skills": []
59
81
  }
60
82
  ],
@@ -66,9 +88,19 @@
66
88
  {
67
89
  "role": "compose",
68
90
  "agent_slug": "lineage-scribe",
69
- "depends_on": ["identify-external", "identify-internal", "associate", "assess"],
70
- "input_contract": ["lineage-map", "alignment-plan"],
71
- "output_contract": ["lineage-record"],
91
+ "depends_on": [
92
+ "identify-external",
93
+ "identify-internal",
94
+ "associate",
95
+ "assess"
96
+ ],
97
+ "input_contract": [
98
+ "lineage-map",
99
+ "alignment-plan"
100
+ ],
101
+ "output_contract": [
102
+ "lineage-record"
103
+ ],
72
104
  "required_skills": []
73
105
  }
74
106
  ],
@@ -81,9 +113,13 @@
81
113
  "role": "approve",
82
114
  "agent_slug": "",
83
115
  "human": true,
84
- "depends_on": ["compose"],
116
+ "depends_on": [
117
+ "compose"
118
+ ],
85
119
  "input_contract": [],
86
- "output_contract": ["lineage-verdict"],
120
+ "output_contract": [
121
+ "lineage-verdict"
122
+ ],
87
123
  "optional_outputs": [],
88
124
  "required_skills": []
89
125
  }
@@ -91,6 +127,13 @@
91
127
  "intent": "A human approval office. The incumbent reviews the sealed lineage-record and either seals a passing lineage-verdict — which is what promotes the record to first-class lineage attached to an institution — or refuses it. A run that reaches this office unapproved PARKS awaiting the seal; nothing is adopted on an absent yes."
92
128
  }
93
129
  ],
94
- "input_types": ["lineage-question"],
95
- "output_types": ["lineage-record", "lineage-verdict", "internal-inventory", "lineage-hit"]
130
+ "input_types": [
131
+ "lineage-question"
132
+ ],
133
+ "output_types": [
134
+ "lineage-record",
135
+ "lineage-verdict",
136
+ "internal-inventory",
137
+ "lineage-hit"
138
+ ]
96
139
  }
@@ -15,8 +15,13 @@
15
15
  "role": "associate",
16
16
  "agent_slug": "lineage-weaver",
17
17
  "depends_on": [],
18
- "input_contract": ["lineage-hit", "internal-inventory"],
19
- "output_contract": ["lineage-map"],
18
+ "input_contract": [
19
+ "lineage-hit",
20
+ "internal-inventory"
21
+ ],
22
+ "output_contract": [
23
+ "lineage-map"
24
+ ],
20
25
  "required_skills": []
21
26
  }
22
27
  ],
@@ -28,9 +33,15 @@
28
33
  {
29
34
  "role": "assess",
30
35
  "agent_slug": "lineage-weaver",
31
- "depends_on": ["associate"],
32
- "input_contract": ["lineage-map"],
33
- "output_contract": ["alignment-plan"],
36
+ "depends_on": [
37
+ "associate"
38
+ ],
39
+ "input_contract": [
40
+ "lineage-map"
41
+ ],
42
+ "output_contract": [
43
+ "alignment-plan"
44
+ ],
34
45
  "required_skills": []
35
46
  }
36
47
  ],
@@ -42,15 +53,28 @@
42
53
  {
43
54
  "role": "compose",
44
55
  "agent_slug": "lineage-scribe",
45
- "depends_on": ["associate", "assess"],
46
- "input_contract": ["lineage-map", "alignment-plan"],
47
- "output_contract": ["lineage-record"],
56
+ "depends_on": [
57
+ "associate",
58
+ "assess"
59
+ ],
60
+ "input_contract": [
61
+ "lineage-map",
62
+ "alignment-plan"
63
+ ],
64
+ "output_contract": [
65
+ "lineage-record"
66
+ ],
48
67
  "required_skills": []
49
68
  }
50
69
  ],
51
70
  "intent": "Compose the re-woven lineage-record: the identified external body, the reused internal inventory, the re-drawn connections, the gap, and the alignment recommendation — carrying each connection's both-side grounding through so the artifact is checkable citation by citation. Create only from upstream; introduce no new source."
52
71
  }
53
72
  ],
54
- "input_types": ["lineage-hit", "internal-inventory"],
55
- "output_types": ["lineage-record"]
73
+ "input_types": [
74
+ "lineage-hit",
75
+ "internal-inventory"
76
+ ],
77
+ "output_types": [
78
+ "lineage-record"
79
+ ]
56
80
  }
@@ -16,69 +16,227 @@
16
16
  {
17
17
  "name": "analyze",
18
18
  "chairs": [
19
- { "role": "analyze", "agent_slug": "disclosure-analyst", "depends_on": [], "input_contract": [], "output_contract": ["invention-analysis"], "required_skills": [] }
19
+ {
20
+ "role": "analyze",
21
+ "agent_slug": "disclosure-analyst",
22
+ "depends_on": [],
23
+ "input_contract": [],
24
+ "output_contract": [
25
+ "invention-analysis"
26
+ ],
27
+ "required_skills": []
28
+ }
20
29
  ],
21
30
  "intent": "De-spin the disclosure: state the real technical contribution, contrast it with what the inventor claims is novel, enumerate candidate inventive concepts (plural) and embodiments."
22
31
  },
23
32
  {
24
33
  "name": "claim",
25
34
  "chairs": [
26
- { "role": "claim", "agent_slug": "claim-architect", "depends_on": ["analyze"], "input_contract": ["invention-analysis"], "output_contract": ["claim-draft"], "required_skills": ["claim-element-decompose", "diamond-cutting-discipline"] }
35
+ {
36
+ "role": "claim",
37
+ "agent_slug": "claim-architect",
38
+ "depends_on": [
39
+ "analyze"
40
+ ],
41
+ "input_contract": [
42
+ "invention-analysis"
43
+ ],
44
+ "output_contract": [
45
+ "claim-draft"
46
+ ],
47
+ "required_skills": [
48
+ "claim-element-decompose",
49
+ "diamond-cutting-discipline"
50
+ ]
51
+ }
27
52
  ],
28
53
  "intent": "Cut the broadest defensible independent claim AND a dependent fallback tree; grade the cleave; name every stripped feature as representation vs load-bearing."
29
54
  },
30
55
  {
31
56
  "name": "search",
32
57
  "chairs": [
33
- { "role": "search", "agent_slug": "prior-art-scout", "depends_on": ["claim"], "input_contract": ["claim-draft"], "output_contract": ["prior-art-hit", "novelty-verdict", "coverage-report"], "required_skills": ["query-expand", "patent-fetch", "citation-verify"] }
58
+ {
59
+ "role": "search",
60
+ "agent_slug": "prior-art-scout",
61
+ "depends_on": [
62
+ "claim"
63
+ ],
64
+ "input_contract": [
65
+ "claim-draft"
66
+ ],
67
+ "output_contract": [
68
+ "prior-art-hit",
69
+ "novelty-verdict",
70
+ "coverage-report"
71
+ ],
72
+ "required_skills": [
73
+ "query-expand",
74
+ "patent-fetch",
75
+ "citation-verify"
76
+ ]
77
+ }
34
78
  ],
35
79
  "intent": "Search patents (USPTO PatentsView) AND literature per claim element; retrieve + verify each hit (fetched, not snippet); emit a coverage-report attesting which corpora were actually searched."
36
80
  },
37
81
  {
38
82
  "name": "map",
39
83
  "chairs": [
40
- { "role": "map", "agent_slug": "anticipation-mapper", "depends_on": ["claim", "search"], "input_contract": ["claim-draft", "prior-art-hit"], "output_contract": ["novelty-analysis"], "required_skills": ["element-mapping-matrix"] }
84
+ {
85
+ "role": "map",
86
+ "agent_slug": "anticipation-mapper",
87
+ "depends_on": [
88
+ "claim",
89
+ "search"
90
+ ],
91
+ "input_contract": [
92
+ "claim-draft",
93
+ "prior-art-hit"
94
+ ],
95
+ "output_contract": [
96
+ "novelty-analysis"
97
+ ],
98
+ "required_skills": [
99
+ "element-mapping-matrix"
100
+ ]
101
+ }
41
102
  ],
42
103
  "intent": "Build the element x reference anticipation matrix (§102 per element + §103 obviousness combinations) with a derived coverage_fraction. Evidence only — no rejection call."
43
104
  },
44
105
  {
45
106
  "name": "examine",
46
107
  "chairs": [
47
- { "role": "examine", "agent_slug": "patent-examiner", "depends_on": ["claim", "map"], "input_contract": ["claim-draft", "novelty-analysis"], "output_contract": ["examiner-rejection"], "required_skills": ["statutory-checklist"] }
108
+ {
109
+ "role": "examine",
110
+ "agent_slug": "patent-examiner",
111
+ "depends_on": [
112
+ "claim",
113
+ "map"
114
+ ],
115
+ "input_contract": [
116
+ "claim-draft",
117
+ "novelty-analysis"
118
+ ],
119
+ "output_contract": [
120
+ "examiner-rejection"
121
+ ],
122
+ "required_skills": [
123
+ "statutory-checklist"
124
+ ]
125
+ }
48
126
  ],
49
127
  "intent": "Adversary: try to reject the claim on every statute (§101/§102/§103/§112) via the statutory checklist; silence on a statute is not a clear. The only seat that rejects."
50
128
  },
51
129
  {
52
130
  "name": "amend",
53
131
  "chairs": [
54
- { "role": "amend", "agent_slug": "claim-amender", "depends_on": ["claim", "examine"], "input_contract": ["claim-draft", "examiner-rejection"], "output_contract": ["examine-round-record"], "required_skills": ["claim-element-decompose"] }
132
+ {
133
+ "role": "amend",
134
+ "agent_slug": "claim-amender",
135
+ "depends_on": [
136
+ "claim",
137
+ "examine"
138
+ ],
139
+ "input_contract": [
140
+ "claim-draft",
141
+ "examiner-rejection"
142
+ ],
143
+ "output_contract": [
144
+ "examine-round-record"
145
+ ],
146
+ "required_skills": [
147
+ "claim-element-decompose"
148
+ ]
149
+ }
55
150
  ],
56
151
  "intent": "Narrow the claim to overcome the rejections or concede; seal an examine-round-record chained to its predecessor so survival is recomputable across rounds."
57
152
  },
58
153
  {
59
154
  "name": "judge",
60
155
  "chairs": [
61
- { "role": "judge", "agent_slug": "triage-judge", "depends_on": ["search", "map", "examine", "amend"], "input_contract": ["coverage-report", "novelty-analysis", "examiner-rejection", "examine-round-record"], "output_contract": ["triage-verdict", "verdict-record"], "required_skills": ["citation-verify"] }
156
+ {
157
+ "role": "judge",
158
+ "agent_slug": "triage-judge",
159
+ "depends_on": [
160
+ "search",
161
+ "map",
162
+ "examine",
163
+ "amend"
164
+ ],
165
+ "input_contract": [
166
+ "coverage-report",
167
+ "novelty-analysis",
168
+ "examiner-rejection",
169
+ "examine-round-record"
170
+ ],
171
+ "output_contract": [
172
+ "triage-verdict",
173
+ "verdict-record"
174
+ ],
175
+ "required_skills": [
176
+ "citation-verify"
177
+ ]
178
+ }
62
179
  ],
63
180
  "intent": "Render the CANDIDATE verdict (FILEABLE / REFINE-FIRST / NOT-FILEABLE / INSUFFICIENT-EVIDENCE) from the evidence and seal a verdict-record with predecessor links to the disclosure, coverage-report, and final examine-round-record. The hard gate is a separate deterministic chair downstream — the judge states its honest recommendation; it does not enforce the gate itself."
64
181
  },
65
182
  {
66
183
  "name": "gate",
67
184
  "chairs": [
68
- { "role": "gate", "skill_slug": "verdict-gate", "depends_on": ["judge", "search", "amend"], "input_contract": ["triage-verdict", "coverage-report", "examine-round-record"], "output_contract": ["triage-verdict"], "required_skills": [] }
185
+ {
186
+ "role": "gate",
187
+ "skill_slug": "verdict-gate",
188
+ "depends_on": [
189
+ "judge",
190
+ "search",
191
+ "amend"
192
+ ],
193
+ "input_contract": [
194
+ "triage-verdict",
195
+ "coverage-report",
196
+ "examine-round-record"
197
+ ],
198
+ "output_contract": [
199
+ "triage-verdict"
200
+ ],
201
+ "required_skills": []
202
+ }
69
203
  ],
70
204
  "intent": "The hard guard, as deterministic code (no model): downgrade a FILEABLE candidate to INSUFFICIENT-EVIDENCE unless a patent corpus was actually searched (coverage gate) AND the claim survived >=1 examine round (survival gate). Seals the final, gated triage-verdict the drafter acts on — runtime enforcement, not prompt guidance."
71
205
  },
72
206
  {
73
207
  "name": "draft",
74
208
  "chairs": [
75
- { "role": "draft", "agent_slug": "spec-drafter", "depends_on": ["claim", "gate"], "input_contract": ["claim-draft", "triage-verdict"], "output_contract": ["provisional-draft"], "required_skills": [] }
209
+ {
210
+ "role": "draft",
211
+ "agent_slug": "spec-drafter",
212
+ "depends_on": [
213
+ "claim",
214
+ "gate"
215
+ ],
216
+ "input_contract": [
217
+ "claim-draft",
218
+ "triage-verdict"
219
+ ],
220
+ "output_contract": [
221
+ "provisional-draft"
222
+ ],
223
+ "required_skills": []
224
+ }
76
225
  ],
77
226
  "intent": "Only on a FILEABLE verdict (the gated one from the gate chair): a provisional with real §112 enablement — at least one worked embodiment + how-to-build, the surviving claim tree, and an abstract. On any other verdict, nothing."
78
227
  }
79
228
  ],
80
229
  "max_examine_rounds": 3,
81
- "eval_slugs": ["claim-tree-eval", "enablement-eval"],
82
- "input_types": ["invention-disclosure"],
83
- "output_types": ["triage-verdict", "verdict-record", "provisional-draft"]
230
+ "eval_slugs": [
231
+ "claim-tree-eval",
232
+ "enablement-eval"
233
+ ],
234
+ "input_types": [
235
+ "invention-disclosure"
236
+ ],
237
+ "output_types": [
238
+ "triage-verdict",
239
+ "verdict-record",
240
+ "provisional-draft"
241
+ ]
84
242
  }
@@ -25,7 +25,7 @@
25
25
  "required_skills": []
26
26
  }
27
27
  ],
28
- "intent": "First divergence. Hold the question open: observations with their locators, the audience segments it lands differently for, the needs the current state does not serve, the adjacent questions the exploration surfaced, and an honest statement of how far the exploration actually reached. Findings only \u2014 nothing is chosen here."
28
+ "intent": "First divergence. Hold the question open: observations with their locators, the audience segments it lands differently for, the needs the current state does not serve, the adjacent questions the exploration surfaced, and an honest statement of how far the exploration actually reached. Findings only nothing is chosen here."
29
29
  },
30
30
  {
31
31
  "name": "define",
@@ -45,7 +45,7 @@
45
45
  "required_skills": []
46
46
  }
47
47
  ],
48
- "intent": "First convergence, and the seam between the diamonds. Name the ONE problem the second diamond opens on, what is out of scope, the success criteria a stranger could check \u2014 and, explicitly, the problems the brief surfaced that this definition discarded, each with its reason. Sealed as a Plan because the definition sequences what follows."
48
+ "intent": "First convergence, and the seam between the diamonds. Name the ONE problem the second diamond opens on, what is out of scope, the success criteria a stranger could check and, explicitly, the problems the brief surfaced that this definition discarded, each with its reason. Sealed as a Plan because the definition sequences what follows."
49
49
  },
50
50
  {
51
51
  "name": "develop",
@@ -68,7 +68,7 @@
68
68
  ]
69
69
  }
70
70
  ],
71
- "intent": "Second divergence, built rather than described. The concept states its mechanism step by step, names which success criteria it answers, and carries its tradeoffs and open questions \u2014 a concept presented as settled cannot be evaluated against the contest it hides."
71
+ "intent": "Second divergence, built rather than described. The concept states its mechanism step by step, names which success criteria it answers, and carries its tradeoffs and open questions a concept presented as settled cannot be evaluated against the contest it hides."
72
72
  },
73
73
  {
74
74
  "name": "deliver",
@@ -90,7 +90,7 @@
90
90
  "required_skills": []
91
91
  }
92
92
  ],
93
- "intent": "Second convergence. Measure the concept against the definition as sealed, criterion by criterion, and separate what was observed from what was reasoned about \u2014 most design criteria cannot be executed, so a verdict that does not say so overstates its own evidence. Where the concept is sound but the problem was the wrong one, the recommendation returns the run to the first seam."
93
+ "intent": "Second convergence. Measure the concept against the definition as sealed, criterion by criterion, and separate what was observed from what was reasoned about most design criteria cannot be executed, so a verdict that does not say so overstates its own evidence. Where the concept is sound but the problem was the wrong one, the recommendation returns the run to the first seam."
94
94
  },
95
95
  {
96
96
  "name": "approve",
@@ -0,0 +1,137 @@
1
+ {
2
+ "slug": "reconcile-work-order-v0",
3
+ "domain": "software-change",
4
+ "status": "active",
5
+ "agent_slugs": [
6
+ "receipt-mapper",
7
+ "reconciliation-auditor",
8
+ "proof-composer",
9
+ "default-adjudicator"
10
+ ],
11
+ "phases": [
12
+ {
13
+ "name": "cold-map",
14
+ "chairs": [
15
+ {
16
+ "role": "cold-map",
17
+ "agent_slug": "receipt-mapper",
18
+ "depends_on": [],
19
+ "input_contract": [
20
+ "change-request"
21
+ ],
22
+ "output_contract": [
23
+ "reconciliation-map"
24
+ ],
25
+ "optional_outputs": [],
26
+ "required_skills": [],
27
+ "turn_budget": 25
28
+ }
29
+ ],
30
+ "intent": "The deterministic clause-to-receipt mapping. Read the work order the dispatch names — its articles, terminals, receipts_due, and reconciliation contract (owner, budget, due date) — and the receipts landed against it: chancery_work_order_receipt rows joined to the sealed output chain, plus the completed_output_id FK. Match every clause to its receipts by stated equality; every clause with no receipt is listed absent, in so many words, never omitted. This is clerical work: no model judgment falls here and the chair spends nothing against the reconciliation budget — same order, same receipts, same map, on any machine."
31
+ },
32
+ {
33
+ "name": "hot-audit",
34
+ "chairs": [
35
+ {
36
+ "role": "hot-audit",
37
+ "agent_slug": "reconciliation-auditor",
38
+ "depends_on": [
39
+ "cold-map"
40
+ ],
41
+ "input_contract": [
42
+ "change-request",
43
+ "reconciliation-map"
44
+ ],
45
+ "output_contract": [
46
+ "change-verdict"
47
+ ],
48
+ "optional_outputs": [],
49
+ "required_skills": [],
50
+ "turn_budget": 30,
51
+ "turn_reserve": 6
52
+ }
53
+ ],
54
+ "intent": "The refutation pass — the half that SPENDS. Within the order's declared reconciliation_budget (carried on the change-request; the chair's turn budget is the structural cap it may only narrow, never widen), attempt to refute what the receipted clauses claim: re-run the checks a receipt says went green, probe the deployed thing a receipt points at, open the sealed output and test its claims against the world. Every finding is cited — the tool call, check name, path, or URL it rests on — and a finding without a citation does not enter the verdict. When the budget exhausts, stop and seal the partial audit with every unaudited clause named; absent receipts pass through as absent, never audited into existence."
55
+ },
56
+ {
57
+ "name": "proof-of-work",
58
+ "chairs": [
59
+ {
60
+ "role": "proof-of-work",
61
+ "agent_slug": "proof-composer",
62
+ "depends_on": [
63
+ "cold-map",
64
+ "hot-audit"
65
+ ],
66
+ "input_contract": [
67
+ "reconciliation-map",
68
+ "change-verdict"
69
+ ],
70
+ "output_contract": [
71
+ "proof-of-work-contract"
72
+ ],
73
+ "optional_outputs": [],
74
+ "required_skills": [],
75
+ "turn_budget": 15
76
+ }
77
+ ],
78
+ "intent": "The composed contract: the cold map, the audit's findings, and a verdict per clause — every clause of the order, each row joining the map's receipt status with the audit's finding verbatim — written as a sealed output, which is what makes it content-addressed: the engine stamps content_sha and the input_shas of exactly the two seals composed from, and no agent hashes anything. Copies only; the composer draws no new verdict. This document is what the sovereign settles against and what a default cites."
79
+ },
80
+ {
81
+ "name": "default-judgment",
82
+ "chairs": [
83
+ {
84
+ "role": "default-judgment",
85
+ "agent_slug": "default-adjudicator",
86
+ "depends_on": [
87
+ "cold-map",
88
+ "proof-of-work"
89
+ ],
90
+ "input_contract": [
91
+ "change-request",
92
+ "reconciliation-map",
93
+ "proof-of-work-contract"
94
+ ],
95
+ "output_contract": [
96
+ "reconciliation-record"
97
+ ],
98
+ "optional_outputs": [],
99
+ "required_skills": [],
100
+ "turn_budget": 15
101
+ }
102
+ ],
103
+ "intent": "The default ruling — deterministic, sealed BEFORE the human seat so a parked approval cannot mask it. An order past reconciliation_due_at with clauses the cold map lists absent (unreceipted) reconciles as DEFAULTED: the record seals reconciliation_state 'defaulted' naming every absent clause_ref, and that state lands in chancery_work_order.reconciliation_state. The conductor's sweep (chancery_work_order_reconciliation_due) fires this standard at the committed date regardless of any completion signal, so abandonment cannot hide: the cold map runs, shows the absence, and the default is sealed with no human in the loop to not-show-up. Not past due, or every clause receipted: the record seals 'pending' and waits for the sovereign. This seat never seals 'satisfied'."
104
+ },
105
+ {
106
+ "name": "sovereign-settle",
107
+ "chairs": [
108
+ {
109
+ "role": "sovereign-settle",
110
+ "human": true,
111
+ "depends_on": [
112
+ "proof-of-work",
113
+ "default-judgment"
114
+ ],
115
+ "input_contract": [
116
+ "proof-of-work-contract",
117
+ "reconciliation-record"
118
+ ],
119
+ "output_contract": [
120
+ "reconciliation-record"
121
+ ],
122
+ "optional_outputs": [],
123
+ "required_skills": []
124
+ }
125
+ ],
126
+ "intent": "The parked human step — an approval office, not an agent. The gig PARKS here (awaiting_approval) until the reconciliation_owner — or the governor, where the order seats that terminal — reads the proof-of-work contract and settles. Settling seals the reconciliation-record with reconciliation_state 'satisfied' and settled_by naming the seat that settled — and that seal is the ONLY door to that state: no model seat can rule its own work satisfied, and a completion sealed without a proof-of-work the sovereign settled is forbidden by the order that commissioned this standard. A defaulted record needs no settling to stand — it was sealed upstream — but the owner may still settle over it once the absences are cured."
127
+ }
128
+ ],
129
+ "input_types": [
130
+ "change-request"
131
+ ],
132
+ "output_types": [
133
+ "reconciliation-record"
134
+ ],
135
+ "description": "Reconciliation as a standing office over WORK ORDERS — the standard WO-F02 ('The Reconciliation', Documenso #1917537, signed 2026 and never built) owes, generalizing reconcile-gig-v0's shape from gigs to signed orders. It runs against the chancery schema's reconciliation contract: chancery_work_order.reconciliation_owner / reconciliation_budget / reconciliation_due_at / reconciliation_state ('pending'|'satisfied'|'defaulted'), the chancery_work_order_receipt table joining clauses to the sealed output chain, and the chancery_work_order_reconciliation_due sweep view the conductor fires — the arming door (signing requires owner + budget + due) guarantees every sealed order carries the contract this standard executes. Five offices: COLD-MAP (deterministic clause-to-receipt mapping, absences listed, no judgment, no spend), HOT-AUDIT (refutation that spends within the order's declared reconciliation_budget, every finding cited), PROOF-OF-WORK (the composed per-clause contract, content-addressed by the engine's own seal), DEFAULT-JUDGMENT (past reconciliation_due_at with clauses unreceipted reconciles as defaulted — sealed before the human seat so abandonment cannot hide behind an approval nobody gives), and SOVEREIGN-SETTLE (the parked human office: only the owner's settling records reconciliation_state 'satisfied'). ADICO, roughly: the reconciliation_owner [A] must reconcile every clause of the order [I] against sealed receipts [C: at reconciliation_due_at, swept regardless of completion signals] or the order defaults [O] — and the enforcement is structural, not hortatory: the sweep view fires on the date, the default seat cannot be parked, and 'satisfied' is unreachable except through the human seal.",
136
+ "reserve_pool": 12
137
+ }
@@ -2,7 +2,7 @@
2
2
  "slug": "software-change-v1",
3
3
  "domain": "software-change",
4
4
  "status": "active",
5
- "description": "The default software-change standard. Read the material exhaustively, fix the direction, settle the structure, make the change, then say whether what was built is what was decided. The seams are deliberate: the seat that reads does not decide, the seat that decides does not build, and the seat that builds does not judge its own work. Only the reading seat holds a tool grant, and it is read-only \u2014 the change is emitted as reviewable content, never applied.",
5
+ "description": "The default software-change standard. Read the material exhaustively, fix the direction, settle the structure, make the change, then say whether what was built is what was decided. The seams are deliberate: the seat that reads does not decide, the seat that decides does not build, and the seat that builds does not judge its own work. Only the reading seat holds a tool grant, and it is read-only the change is emitted as reviewable content, never applied.",
6
6
  "agent_slugs": [
7
7
  "john",
8
8
  "bill",
@@ -25,7 +25,7 @@
25
25
  "required_skills": []
26
26
  }
27
27
  ],
28
- "intent": "Read the material the change lands in, to the declared boundary and no further: entry points, the files the change plausibly touches, the checks that already cover the region, the conventions it must hold to \u2014 and the unknowns, which are part of the reading, not a failure of it. No decision is taken here."
28
+ "intent": "Read the material the change lands in, to the declared boundary and no further: entry points, the files the change plausibly touches, the checks that already cover the region, the conventions it must hold to and the unknowns, which are part of the reading, not a failure of it. No decision is taken here."
29
29
  },
30
30
  {
31
31
  "name": "frame-change",
@@ -45,7 +45,7 @@
45
45
  "required_skills": []
46
46
  }
47
47
  ],
48
- "intent": "Fix the direction from the reading: scope, non-goals, stop condition, and the alternatives set aside with their reasons. Stated before any structure exists, so the structure is answerable to it. Settled for the run \u2014 later phases append observations, never revisions."
48
+ "intent": "Fix the direction from the reading: scope, non-goals, stop condition, and the alternatives set aside with their reasons. Stated before any structure exists, so the structure is answerable to it. Settled for the run later phases append observations, never revisions."
49
49
  },
50
50
  {
51
51
  "name": "plan-change",
@@ -93,7 +93,7 @@
93
93
  ]
94
94
  }
95
95
  ],
96
- "intent": "Make the change the structure implies, as patch content plus the checks it introduces. Where the artefact left the plan, the departure is recorded with its reason \u2014 the same seat that settled the structure is the one accountable for saying where it did not hold."
96
+ "intent": "Make the change the structure implies, as patch content plus the checks it introduces. Where the artefact left the plan, the departure is recorded with its reason the same seat that settled the structure is the one accountable for saying where it did not hold."
97
97
  },
98
98
  {
99
99
  "name": "verify-change",
@@ -115,7 +115,7 @@
115
115
  "required_skills": []
116
116
  }
117
117
  ],
118
- "intent": "Measure the change against the commitments as fixed, criterion by criterion: which acceptance criteria are unmet, where the scope drifted, and \u2014 separately and always \u2014 which checks could not be executed and were reasoned about instead. When the evidence does not reach the question, the verdict is insufficient evidence, not a pass."
118
+ "intent": "Measure the change against the commitments as fixed, criterion by criterion: which acceptance criteria are unmet, where the scope drifted, and separately and always which checks could not be executed and were reasoned about instead. When the evidence does not reach the question, the verdict is insufficient evidence, not a pass."
119
119
  },
120
120
  {
121
121
  "name": "approve",