@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
@@ -8,21 +8,66 @@
8
8
  "schema": {
9
9
  "type": "object",
10
10
  "properties": {
11
- "input_refs": { "type": "array", "items": { "type": "string" } },
12
- "slug": { "type": "string" },
13
- "extends": { "type": "string", "enum": ["Signal", "Interpretation", "Judgment", "Plan", "Artifact", "Verdict"] },
14
- "domain": { "type": "string" },
15
- "description": { "type": "string" },
16
- "schema": { "type": "object", "description": "Proposed JSON-schema for this domain type." },
17
- "required_fields": { "type": "array", "items": { "type": "string" } },
18
- "evidence_summary": { "type": "string", "description": "Which recurrent_domain_shape this type formalizes + which repos exhibited it." },
19
- "user_acceptance": {
11
+ "input_refs": {
12
+ "type": "array",
13
+ "items": {
14
+ "type": "string"
15
+ }
16
+ },
17
+ "slug": {
18
+ "type": "string"
19
+ },
20
+ "extends": {
20
21
  "type": "string",
21
- "enum": ["pending", "accepted", "rejected", "refined"],
22
+ "enum": [
23
+ "Signal",
24
+ "Interpretation",
25
+ "Judgment",
26
+ "Plan",
27
+ "Artifact",
28
+ "Verdict"
29
+ ]
30
+ },
31
+ "domain": {
32
+ "type": "string"
33
+ },
34
+ "description": {
35
+ "type": "string"
36
+ },
37
+ "schema": {
38
+ "type": "object",
39
+ "description": "Proposed JSON-schema for this domain type."
40
+ },
41
+ "required_fields": {
42
+ "type": "array",
43
+ "items": {
44
+ "type": "string"
45
+ }
46
+ },
47
+ "evidence_summary": {
48
+ "type": "string",
49
+ "description": "Which recurrent_domain_shape this type formalizes + which repos exhibited it."
50
+ },
51
+ "user_acceptance": {
52
+ "type": "string",
53
+ "enum": [
54
+ "pending",
55
+ "accepted",
56
+ "rejected",
57
+ "refined"
58
+ ],
22
59
  "default": "pending"
23
60
  }
24
61
  },
25
- "required": ["input_refs", "slug", "extends", "domain", "schema", "user_acceptance", "validation_criteria"]
62
+ "required": [
63
+ "input_refs",
64
+ "slug",
65
+ "extends",
66
+ "domain",
67
+ "schema",
68
+ "user_acceptance",
69
+ "validation_criteria"
70
+ ]
26
71
  },
27
72
  "required_fields": []
28
73
  }
@@ -8,39 +8,81 @@
8
8
  "schema": {
9
9
  "type": "object",
10
10
  "properties": {
11
- "input_refs": { "type": "array", "items": { "type": "string" }, "description": "References to pattern-extraction + repo-survey outputs." },
12
- "slug": { "type": "string", "description": "Proposed standard slug." },
13
- "domain": { "type": "string" },
14
- "description": { "type": "string" },
15
- "phases": {
11
+ "input_refs": {
12
+ "type": "array",
13
+ "items": {
14
+ "type": "string"
15
+ },
16
+ "description": "References to pattern-extraction + repo-survey outputs."
17
+ },
18
+ "slug": {
19
+ "type": "string",
20
+ "description": "Proposed standard slug."
21
+ },
22
+ "domain": {
23
+ "type": "string"
24
+ },
25
+ "description": {
26
+ "type": "string"
27
+ },
28
+ "phases": {
16
29
  "type": "array",
17
30
  "description": "Ordered phases per coltrane standard convention. Each phase names a phase-agent slug + intent.",
18
31
  "items": {
19
32
  "type": "object",
20
33
  "properties": {
21
- "name": { "type": "string" },
22
- "agent": { "type": "string" },
23
- "intent": { "type": "string" }
34
+ "name": {
35
+ "type": "string"
36
+ },
37
+ "agent": {
38
+ "type": "string"
39
+ },
40
+ "intent": {
41
+ "type": "string"
42
+ }
24
43
  },
25
- "required": ["name", "agent", "intent"]
44
+ "required": [
45
+ "name",
46
+ "agent",
47
+ "intent"
48
+ ]
26
49
  }
27
50
  },
28
51
  "execution_modes": {
29
52
  "type": "object",
30
53
  "description": "Per project-bootstrap-v0 shape — conductor_mode default, dispatch_mode for power users.",
31
54
  "properties": {
32
- "conductor_mode": { "type": "object" },
33
- "dispatch_mode": { "type": "object" }
55
+ "conductor_mode": {
56
+ "type": "object"
57
+ },
58
+ "dispatch_mode": {
59
+ "type": "object"
60
+ }
34
61
  }
35
62
  },
36
- "evidence_summary": { "type": "string", "description": "Which recurrent_workflow this standard formalizes + which repos exhibited it." },
37
- "user_acceptance": {
63
+ "evidence_summary": {
64
+ "type": "string",
65
+ "description": "Which recurrent_workflow this standard formalizes + which repos exhibited it."
66
+ },
67
+ "user_acceptance": {
38
68
  "type": "string",
39
- "enum": ["pending", "accepted", "rejected", "refined"],
69
+ "enum": [
70
+ "pending",
71
+ "accepted",
72
+ "rejected",
73
+ "refined"
74
+ ],
40
75
  "default": "pending"
41
76
  }
42
77
  },
43
- "required": ["input_refs", "slug", "domain", "phases", "user_acceptance", "validation_criteria"]
78
+ "required": [
79
+ "input_refs",
80
+ "slug",
81
+ "domain",
82
+ "phases",
83
+ "user_acceptance",
84
+ "validation_criteria"
85
+ ]
44
86
  },
45
87
  "required_fields": []
46
88
  }
@@ -13,14 +13,24 @@
13
13
  "items": {
14
14
  "type": "object",
15
15
  "properties": {
16
- "reference": { "type": "string" },
17
- "kind": { "type": "string" },
18
- "summary": { "type": "string" }
16
+ "reference": {
17
+ "type": "string"
18
+ },
19
+ "kind": {
20
+ "type": "string"
21
+ },
22
+ "summary": {
23
+ "type": "string"
24
+ }
19
25
  },
20
- "required": ["reference"]
26
+ "required": [
27
+ "reference"
28
+ ]
21
29
  }
22
30
  }
23
31
  }
24
32
  },
25
- "required_fields": ["representations"]
33
+ "required_fields": [
34
+ "representations"
35
+ ]
26
36
  }
@@ -18,5 +18,8 @@
18
18
  }
19
19
  }
20
20
  },
21
- "required_fields": ["source", "institution_slug"]
21
+ "required_fields": [
22
+ "source",
23
+ "institution_slug"
24
+ ]
22
25
  }
@@ -8,12 +8,25 @@
8
8
  "schema": {
9
9
  "type": "object",
10
10
  "properties": {
11
- "source": { "type": "string" },
12
- "claim": { "type": "string" },
13
- "attribution": { "type": "string" },
14
- "url": { "type": "string" },
15
- "citation": { "type": "string" }
11
+ "source": {
12
+ "type": "string"
13
+ },
14
+ "claim": {
15
+ "type": "string"
16
+ },
17
+ "attribution": {
18
+ "type": "string"
19
+ },
20
+ "url": {
21
+ "type": "string"
22
+ },
23
+ "citation": {
24
+ "type": "string"
25
+ }
16
26
  }
17
27
  },
18
- "required_fields": ["source", "claim"]
28
+ "required_fields": [
29
+ "source",
30
+ "claim"
31
+ ]
19
32
  }
@@ -14,24 +14,51 @@
14
14
  "items": {
15
15
  "type": "object",
16
16
  "properties": {
17
- "internal_ref": { "type": "string" },
18
- "external_ref": { "type": "string" },
17
+ "internal_ref": {
18
+ "type": "string"
19
+ },
20
+ "external_ref": {
21
+ "type": "string"
22
+ },
19
23
  "relation": {
20
24
  "type": "string",
21
- "enum": ["descends-from", "aligns-with", "diverges-from", "supersedes", "informed-by"]
25
+ "enum": [
26
+ "descends-from",
27
+ "aligns-with",
28
+ "diverges-from",
29
+ "supersedes",
30
+ "informed-by"
31
+ ]
32
+ },
33
+ "grounding_internal": {
34
+ "type": "string"
35
+ },
36
+ "grounding_external": {
37
+ "type": "string"
22
38
  },
23
- "grounding_internal": { "type": "string" },
24
- "grounding_external": { "type": "string" },
25
39
  "strength": {
26
40
  "type": "string",
27
- "enum": ["dereferenceable-both-sides", "structural-correspondence", "conceptual-analogy"],
41
+ "enum": [
42
+ "dereferenceable-both-sides",
43
+ "structural-correspondence",
44
+ "conceptual-analogy"
45
+ ],
28
46
  "$comment": "The weaver DRAWS the grounding strength; the scribe carries it through unchanged into the lineage-record. Ordinal, closed vocabulary — see domain_types/lineage-record.json for the orthogonality note against CitationSchema.evidence_grade (src/genome_schema.ts:293-309)."
29
47
  }
30
48
  },
31
- "required": ["internal_ref", "external_ref", "relation", "grounding_internal", "grounding_external", "strength"]
49
+ "required": [
50
+ "internal_ref",
51
+ "external_ref",
52
+ "relation",
53
+ "grounding_internal",
54
+ "grounding_external",
55
+ "strength"
56
+ ]
32
57
  }
33
58
  }
34
59
  }
35
60
  },
36
- "required_fields": ["edges"]
61
+ "required_fields": [
62
+ "edges"
63
+ ]
37
64
  }
@@ -8,10 +8,19 @@
8
8
  "schema": {
9
9
  "type": "object",
10
10
  "properties": {
11
- "question": { "type": "string", "minLength": 1 },
12
- "internal_scope": { "type": "string" },
13
- "external_scope": { "type": "string" }
11
+ "question": {
12
+ "type": "string",
13
+ "minLength": 1
14
+ },
15
+ "internal_scope": {
16
+ "type": "string"
17
+ },
18
+ "external_scope": {
19
+ "type": "string"
20
+ }
14
21
  }
15
22
  },
16
- "required_fields": ["question"]
23
+ "required_fields": [
24
+ "question"
25
+ ]
17
26
  }
@@ -13,14 +13,24 @@
13
13
  "items": {
14
14
  "type": "object",
15
15
  "properties": {
16
- "source": { "type": "string" },
16
+ "source": {
17
+ "type": "string"
18
+ },
17
19
  "status": {
18
20
  "type": "string",
19
- "enum": ["reached", "not-reached"]
21
+ "enum": [
22
+ "reached",
23
+ "not-reached"
24
+ ]
20
25
  },
21
- "note": { "type": "string" }
26
+ "note": {
27
+ "type": "string"
28
+ }
22
29
  },
23
- "required": ["source", "status"],
30
+ "required": [
31
+ "source",
32
+ "status"
33
+ ],
24
34
  "additionalProperties": false
25
35
  }
26
36
  },
@@ -29,11 +39,19 @@
29
39
  "items": {
30
40
  "type": "object",
31
41
  "properties": {
32
- "reference": { "type": "string" },
33
- "kind": { "type": "string" },
34
- "summary": { "type": "string" }
42
+ "reference": {
43
+ "type": "string"
44
+ },
45
+ "kind": {
46
+ "type": "string"
47
+ },
48
+ "summary": {
49
+ "type": "string"
50
+ }
35
51
  },
36
- "required": ["reference"],
52
+ "required": [
53
+ "reference"
54
+ ],
37
55
  "additionalProperties": false
38
56
  }
39
57
  },
@@ -43,27 +61,62 @@
43
61
  "items": {
44
62
  "type": "object",
45
63
  "properties": {
46
- "internal_ref": { "type": "string" },
47
- "external_ref": { "type": "string" },
64
+ "internal_ref": {
65
+ "type": "string"
66
+ },
67
+ "external_ref": {
68
+ "type": "string"
69
+ },
48
70
  "relation": {
49
71
  "type": "string",
50
- "enum": ["descends-from", "aligns-with", "diverges-from", "supersedes", "informed-by"]
72
+ "enum": [
73
+ "descends-from",
74
+ "aligns-with",
75
+ "diverges-from",
76
+ "supersedes",
77
+ "informed-by"
78
+ ]
79
+ },
80
+ "grounding_internal": {
81
+ "type": "string"
82
+ },
83
+ "grounding_external": {
84
+ "type": "string"
51
85
  },
52
- "grounding_internal": { "type": "string" },
53
- "grounding_external": { "type": "string" },
54
86
  "strength": {
55
87
  "type": "string",
56
- "enum": ["dereferenceable-both-sides", "structural-correspondence", "conceptual-analogy"],
88
+ "enum": [
89
+ "dereferenceable-both-sides",
90
+ "structural-correspondence",
91
+ "conceptual-analogy"
92
+ ],
57
93
  "$comment": "Per-edge grounding strength: HOW firmly this connection is drawn, ordinal from dereferenceable-both-sides (strongest) to conceptual-analogy (weakest). It is ORTHOGONAL to CitationSchema.evidence_grade (src/genome_schema.ts:293-309), which grades the source's fetch status (archive|attestation) and is never laundered upward. Both endpoints can be archive-grade while the edge between them is a loose conceptual-analogy. Do NOT collapse strength into evidence_grade — that obvious future 'simplification' would destroy the distinction between a citation-grounded edge and a loose structural or conceptual one."
58
94
  }
59
95
  },
60
- "required": ["internal_ref", "external_ref", "relation", "grounding_internal", "grounding_external", "strength"],
96
+ "required": [
97
+ "internal_ref",
98
+ "external_ref",
99
+ "relation",
100
+ "grounding_internal",
101
+ "grounding_external",
102
+ "strength"
103
+ ],
61
104
  "additionalProperties": false
62
105
  }
63
106
  },
64
- "gap": { "type": "string" },
65
- "alignment_recommendation": { "type": "string" }
107
+ "gap": {
108
+ "type": "string"
109
+ },
110
+ "alignment_recommendation": {
111
+ "type": "string"
112
+ }
66
113
  }
67
114
  },
68
- "required_fields": ["external_body", "internal_inventory", "connections", "gap", "alignment_recommendation"]
115
+ "required_fields": [
116
+ "external_body",
117
+ "internal_inventory",
118
+ "connections",
119
+ "gap",
120
+ "alignment_recommendation"
121
+ ]
69
122
  }
@@ -8,9 +8,15 @@
8
8
  "schema": {
9
9
  "type": "object",
10
10
  "properties": {
11
- "approver": { "type": "string" },
12
- "rationale": { "type": "string" }
11
+ "approver": {
12
+ "type": "string"
13
+ },
14
+ "rationale": {
15
+ "type": "string"
16
+ }
13
17
  }
14
18
  },
15
- "required_fields": ["rationale"]
19
+ "required_fields": [
20
+ "rationale"
21
+ ]
16
22
  }
@@ -7,27 +7,68 @@
7
7
  "schema": {
8
8
  "type": "object",
9
9
  "properties": {
10
- "transcript_path": { "type": "string" },
11
- "recorder_log_path": { "type": "string" },
12
- "transcript_present": { "type": "boolean" },
13
- "recorder_log_present": { "type": "boolean" },
14
- "recorder_log_empty": { "type": "boolean" },
10
+ "transcript_path": {
11
+ "type": "string"
12
+ },
13
+ "recorder_log_path": {
14
+ "type": "string"
15
+ },
16
+ "transcript_present": {
17
+ "type": "boolean"
18
+ },
19
+ "recorder_log_present": {
20
+ "type": "boolean"
21
+ },
22
+ "recorder_log_empty": {
23
+ "type": "boolean"
24
+ },
15
25
  "turns": {
16
26
  "type": "array",
17
27
  "items": {
18
28
  "type": "object",
19
29
  "properties": {
20
- "turn_idx": { "type": "number" },
21
- "parent_session_id": { "type": ["string", "null"] },
22
- "child_session_id": { "type": ["string", "null"] },
23
- "prompt": { "type": ["string", "null"] },
24
- "response": { "type": ["string", "null"] },
25
- "timestamp": { "type": ["string", "null"] },
26
- "tool_calls": { "type": "array" }
30
+ "turn_idx": {
31
+ "type": "number"
32
+ },
33
+ "parent_session_id": {
34
+ "type": [
35
+ "string",
36
+ "null"
37
+ ]
38
+ },
39
+ "child_session_id": {
40
+ "type": [
41
+ "string",
42
+ "null"
43
+ ]
44
+ },
45
+ "prompt": {
46
+ "type": [
47
+ "string",
48
+ "null"
49
+ ]
50
+ },
51
+ "response": {
52
+ "type": [
53
+ "string",
54
+ "null"
55
+ ]
56
+ },
57
+ "timestamp": {
58
+ "type": [
59
+ "string",
60
+ "null"
61
+ ]
62
+ },
63
+ "tool_calls": {
64
+ "type": "array"
65
+ }
27
66
  }
28
67
  }
29
68
  },
30
- "notes": { "type": "string" }
69
+ "notes": {
70
+ "type": "string"
71
+ }
31
72
  }
32
73
  },
33
74
  "required_fields": [