@eir-labs/coltrane 0.24.14 → 0.24.16
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.
- package/agents/bandleader.json +5 -5
- package/agents/default-adjudicator.json +39 -0
- package/agents/deploy-agent.json +1 -2
- package/agents/deploy-scout.json +1 -2
- package/agents/lineage-scout-internal.json +14 -4
- package/agents/lineage-scribe.json +6 -6
- package/agents/lineage-weaver.json +8 -8
- package/agents/patent-browser-scout.json +3 -1
- package/agents/proof-composer.json +38 -0
- package/agents/receipt-mapper.json +39 -0
- package/agents/reconciliation-auditor.json +45 -0
- package/dist/src/cli.d.ts +1 -1
- package/dist/src/genome_schema.d.ts +174 -2
- package/dist/src/genome_schema.js +41 -0
- package/dist/src/genome_schema.js.map +1 -1
- package/dist/src/genome_store.js +5 -1
- package/dist/src/genome_store.js.map +1 -1
- package/dist/src/hosted_tools.js +6 -3
- package/dist/src/hosted_tools.js.map +1 -1
- package/dist/src/loader.d.ts +5 -1
- package/dist/src/loader.js +28 -4
- package/dist/src/loader.js.map +1 -1
- package/dist/src/placement_institutions.d.ts +1 -1
- package/dist/src/placement_institutions.js +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/domain_types/alignment-plan.json +9 -3
- package/domain_types/branch-state.json +12 -3
- package/domain_types/change-decision.json +32 -7
- package/domain_types/change-plan.json +41 -12
- package/domain_types/change-request.json +37 -7
- package/domain_types/change-set.json +40 -11
- package/domain_types/change-verdict.json +42 -6
- package/domain_types/deploy-verdict.json +21 -3
- package/domain_types/design-brief.json +48 -9
- package/domain_types/design-concept.json +40 -9
- package/domain_types/design-definition.json +40 -9
- package/domain_types/design-question.json +26 -5
- package/domain_types/design-verdict.json +42 -6
- package/domain_types/draft-agent-profile.json +75 -14
- package/domain_types/draft-domain-type.json +56 -11
- package/domain_types/draft-standard.json +57 -15
- package/domain_types/internal-inventory.json +15 -5
- package/domain_types/lineage-adoption-target.json +4 -1
- package/domain_types/lineage-hit.json +19 -6
- package/domain_types/lineage-map.json +35 -8
- package/domain_types/lineage-question.json +13 -4
- package/domain_types/lineage-record.json +71 -18
- package/domain_types/lineage-verdict.json +9 -3
- package/domain_types/parsed-conversation-trace.json +54 -13
- package/domain_types/pattern-extraction.json +91 -21
- package/domain_types/preview-deployment.json +37 -8
- package/domain_types/project-charter.json +59 -16
- package/domain_types/proof-of-work-contract.json +86 -0
- package/domain_types/reconciliation-map.json +90 -0
- package/domain_types/reconciliation-record.json +52 -0
- package/domain_types/red-spec.json +2 -2
- package/domain_types/repo-survey.json +84 -14
- package/domain_types/seeding-verdict.json +93 -27
- package/domain_types/soft-verdict.json +45 -10
- package/domain_types/user-flow-transcript.json +36 -10
- package/domain_types/user-flow-verdict.json +57 -13
- package/package.json +1 -1
- package/standards/lineage-adopt-v0.json +2 -2
- package/standards/lineage-deepen-v0.json +12 -4
- package/standards/lineage-pass-v1.json +60 -17
- package/standards/lineage-reweave-v0.json +34 -10
- package/standards/patent-triage-v1.json +170 -12
- package/standards/product-design-v1.json +4 -4
- package/standards/reconcile-work-order-v0.json +137 -0
- package/standards/software-change-v1.json +5 -5
- package/standards/user_flow_correctness.json +3 -3
|
@@ -13,43 +13,87 @@
|
|
|
13
13
|
"tool_pick_appropriate": {
|
|
14
14
|
"type": "object",
|
|
15
15
|
"properties": {
|
|
16
|
-
"score": {
|
|
17
|
-
|
|
16
|
+
"score": {
|
|
17
|
+
"type": [
|
|
18
|
+
"number",
|
|
19
|
+
"null"
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"rationale": {
|
|
23
|
+
"type": "string"
|
|
24
|
+
}
|
|
18
25
|
}
|
|
19
26
|
},
|
|
20
27
|
"response_faithful": {
|
|
21
28
|
"type": "object",
|
|
22
29
|
"properties": {
|
|
23
|
-
"score": {
|
|
24
|
-
|
|
30
|
+
"score": {
|
|
31
|
+
"type": [
|
|
32
|
+
"number",
|
|
33
|
+
"null"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"rationale": {
|
|
37
|
+
"type": "string"
|
|
38
|
+
}
|
|
25
39
|
}
|
|
26
40
|
},
|
|
27
41
|
"genome_state_valid": {
|
|
28
42
|
"type": "object",
|
|
29
43
|
"properties": {
|
|
30
|
-
"score": {
|
|
31
|
-
|
|
44
|
+
"score": {
|
|
45
|
+
"type": [
|
|
46
|
+
"number",
|
|
47
|
+
"null"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
"rationale": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
}
|
|
32
53
|
}
|
|
33
54
|
},
|
|
34
55
|
"typed_error_on_malformed": {
|
|
35
56
|
"type": "object",
|
|
36
57
|
"properties": {
|
|
37
|
-
"score": {
|
|
38
|
-
|
|
58
|
+
"score": {
|
|
59
|
+
"type": [
|
|
60
|
+
"number",
|
|
61
|
+
"null"
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
"rationale": {
|
|
65
|
+
"type": "string"
|
|
66
|
+
}
|
|
39
67
|
}
|
|
40
68
|
},
|
|
41
69
|
"multi_turn_continuity": {
|
|
42
70
|
"type": "object",
|
|
43
71
|
"properties": {
|
|
44
|
-
"score": {
|
|
45
|
-
|
|
72
|
+
"score": {
|
|
73
|
+
"type": [
|
|
74
|
+
"number",
|
|
75
|
+
"null"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
"rationale": {
|
|
79
|
+
"type": "string"
|
|
80
|
+
}
|
|
46
81
|
}
|
|
47
82
|
}
|
|
48
83
|
}
|
|
49
84
|
},
|
|
50
|
-
"overall_score": {
|
|
51
|
-
|
|
52
|
-
|
|
85
|
+
"overall_score": {
|
|
86
|
+
"type": [
|
|
87
|
+
"number",
|
|
88
|
+
"null"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
"overall_pass": {
|
|
92
|
+
"type": "boolean"
|
|
93
|
+
},
|
|
94
|
+
"top_finding": {
|
|
95
|
+
"type": "string"
|
|
96
|
+
}
|
|
53
97
|
}
|
|
54
98
|
},
|
|
55
99
|
"required_fields": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eir-labs/coltrane",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.16",
|
|
4
4
|
"description": "A methodology engine \u2014 a typed substrate for defining agents, composing multi-phase standards, dispatching gigs, and sealing every output to a content-addressed ledger. Ships as an MCP server.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"slug": "lineage-adopt-v0",
|
|
3
3
|
"domain": "lineage",
|
|
4
4
|
"status": "active",
|
|
5
|
-
"description": "A LINEAGE ADOPTION brings an already-composed lineage-record to a human seat and nowhere else. It runs no scout, draws no edge, and composes nothing: its single chair is the approval office, seeded directly with the record under review. It exists because the approve office was reachable only as the tail of lineage-pass-v1, which meant a record composed by any other route could never be promoted. lineage-reweave-v0 is exactly that route
|
|
5
|
+
"description": "A LINEAGE ADOPTION brings an already-composed lineage-record to a human seat and nowhere else. It runs no scout, draws no edge, and composes nothing: its single chair is the approval office, seeded directly with the record under review. It exists because the approve office was reachable only as the tail of lineage-pass-v1, which meant a record composed by any other route could never be promoted. lineage-reweave-v0 is exactly that route — it re-draws the synthesis over reused and deepened seeds and seals a lineage-record with no human chair anywhere in its phase graph, so the strongest record a lineage effort produces was structurally unadoptable. A composition standard should not have to carry an approval office to make its output signable, and an approval office should not have to re-run a synthesis to reach a record. This standard is that seam, held once.",
|
|
6
6
|
"agent_slugs": [],
|
|
7
7
|
"phases": [
|
|
8
8
|
{
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"required_skills": []
|
|
25
25
|
}
|
|
26
26
|
],
|
|
27
|
-
"intent": "A human approval office, and the only seat in this standard. The incumbent reviews the seeded lineage-record and either seals a passing lineage-verdict
|
|
27
|
+
"intent": "A human approval office, and the only seat in this standard. The incumbent reviews the seeded 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. An ENTRY chair (depends_on []): the record is supplied by the dispatch payload rather than produced upstream, which is the whole point — a record composed anywhere, by a pass or by a reweave, can be brought here without re-running the work that made it. The chair is seeded with BOTH the record under review and the adoption target naming which institution it would ground — the attachment is a property of this act, not of the record or the verdict, so it arrives here and nowhere else. A run that reaches this office unapproved PARKS awaiting the seal; nothing is adopted on an absent yes, and a refusal is a decision that gets recorded rather than a silence that gets forgotten."
|
|
28
28
|
}
|
|
29
29
|
],
|
|
30
30
|
"input_types": [
|
|
@@ -14,14 +14,22 @@
|
|
|
14
14
|
"role": "identify-external",
|
|
15
15
|
"agent_slug": "lineage-scout-external",
|
|
16
16
|
"depends_on": [],
|
|
17
|
-
"input_contract": [
|
|
18
|
-
|
|
17
|
+
"input_contract": [
|
|
18
|
+
"lineage-question"
|
|
19
|
+
],
|
|
20
|
+
"output_contract": [
|
|
21
|
+
"lineage-hit"
|
|
22
|
+
],
|
|
19
23
|
"required_skills": []
|
|
20
24
|
}
|
|
21
25
|
],
|
|
22
26
|
"intent": "Re-run the outward sense alone. identify-external takes the sharpened lineage-question and sweeps the external body of prior work with web tools, verifying each source live and sealing grounded lineage-hits — the deepened external reading. It holds no internal grant and draws no connection: it produces hits the re-weave can be held to, nothing more."
|
|
23
27
|
}
|
|
24
28
|
],
|
|
25
|
-
"input_types": [
|
|
26
|
-
|
|
29
|
+
"input_types": [
|
|
30
|
+
"lineage-question"
|
|
31
|
+
],
|
|
32
|
+
"output_types": [
|
|
33
|
+
"lineage-hit"
|
|
34
|
+
]
|
|
27
35
|
}
|
|
@@ -17,16 +17,24 @@
|
|
|
17
17
|
"role": "identify-external",
|
|
18
18
|
"agent_slug": "lineage-scout-external",
|
|
19
19
|
"depends_on": [],
|
|
20
|
-
"input_contract": [
|
|
21
|
-
|
|
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": [
|
|
29
|
-
|
|
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": [
|
|
42
|
-
|
|
43
|
-
|
|
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": [
|
|
56
|
-
|
|
57
|
-
|
|
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": [
|
|
70
|
-
|
|
71
|
-
|
|
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": [
|
|
116
|
+
"depends_on": [
|
|
117
|
+
"compose"
|
|
118
|
+
],
|
|
85
119
|
"input_contract": [],
|
|
86
|
-
"output_contract": [
|
|
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": [
|
|
95
|
-
|
|
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": [
|
|
19
|
-
|
|
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": [
|
|
32
|
-
|
|
33
|
-
|
|
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": [
|
|
46
|
-
|
|
47
|
-
|
|
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": [
|
|
55
|
-
|
|
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
|
-
{
|
|
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
|
-
{
|
|
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
|
-
{
|
|
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
|
-
{
|
|
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
|
-
{
|
|
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
|
-
{
|
|
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
|
-
{
|
|
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
|
-
{
|
|
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
|
-
{
|
|
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": [
|
|
82
|
-
|
|
83
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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",
|