@eir-labs/coltrane 0.24.5 → 0.24.7

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/dist/src/cli.d.ts CHANGED
@@ -31,7 +31,7 @@ export interface CliIO {
31
31
  /** Injected for tests. Production reads stdin for `--input -`. */
32
32
  stdin?: () => string;
33
33
  }
34
- export declare const USAGE = "coltrane 0.24.5\n\n coltrane validate load the genome; exit non-zero on load errors\n coltrane dispatch <standard> run a standard\n coltrane monitor <gig-id> report a gig's progress\n coltrane logs <gig-id> per-chair logs for a gig\n coltrane abort <gig-id> stop a running gig\n coltrane trace <output-id> walk an output's provenance\n coltrane simulate <standard> cost/shape a standard without running it\n coltrane health engine + store health\n coltrane serve run the MCP server on stdio\n coltrane enqueue <standard> queue a gig on the LOCAL file queue (no store, no key)\n (env: COLTRANE_QUEUE_DIR \u2014 its absence is the whole\n difference between local and hosted)\n coltrane work claim one queued gig from the org store and run it\n coltrane work --check report whether this box's drain environment is configured\n and exit without claiming (0 ready, 1 not ready)\n (env: COLTRANE_STORE_URL, COLTRANE_STORE_ANON,\n COLTRANE_AGENT_TOKEN; results drain via\n COLTRANE_DRAIN_URL + COLTRANE_DRAIN_KEY;\n checkpoints under COLTRANE_WORKER_CHECKPOINTS,\n default ~/.coltrane/worker-checkpoints;\n exit 0 complete or parked, 1 failed, 3 queue empty)\n\nOptions\n --input <json|@file|-> dispatch payload; @file reads a file, - reads stdin\n --depth <skim|standard|deep> tighten the per-chair turn cap\n --budget <dollars> per-gig ceiling; the run stops when it is gone\n --reuse allow chair-level reuse of prior sealed outputs\n --resume <gig-id> continue a gig that died mid-pipeline\n --approve <role>=<json|@file> a human chair's verdict; repeat once per chair\n --as <name> who is approving; sealed as the verdict's author\n --wait block until the run finishes\n --follow poll until the gig reaches a terminal state\n --direction <upstream|downstream|both> for trace\n --json print the raw result to stdout\n --genome <path> genome root (default: $COLTRANE_GENOME or cwd)\n --help, --version\n\nA dispatch that reaches a chair a HUMAN holds parks: it names the waiting chair and exits 0,\nbecause a gig waiting on a person is not a failed gig. Approve it on the resume \u2014\n\n coltrane dispatch <standard> --resume <gig> \\\n --approve approve=@verdict.json --as eugene\n\n--input is NOT required on an approve-only resume: when every remaining chair is human the\ncheckpoint's recorded payload stands and the omission inherits it. If you DO pass --input it is\nchecked against the checkpoint, and a disagreement still refuses the resume.\n";
34
+ export declare const USAGE = "coltrane 0.24.7\n\n coltrane validate load the genome; exit non-zero on load errors\n coltrane dispatch <standard> run a standard\n coltrane monitor <gig-id> report a gig's progress\n coltrane logs <gig-id> per-chair logs for a gig\n coltrane abort <gig-id> stop a running gig\n coltrane trace <output-id> walk an output's provenance\n coltrane simulate <standard> cost/shape a standard without running it\n coltrane health engine + store health\n coltrane serve run the MCP server on stdio\n coltrane enqueue <standard> queue a gig on the LOCAL file queue (no store, no key)\n (env: COLTRANE_QUEUE_DIR \u2014 its absence is the whole\n difference between local and hosted)\n coltrane work claim one queued gig from the org store and run it\n coltrane work --check report whether this box's drain environment is configured\n and exit without claiming (0 ready, 1 not ready)\n (env: COLTRANE_STORE_URL, COLTRANE_STORE_ANON,\n COLTRANE_AGENT_TOKEN; results drain via\n COLTRANE_DRAIN_URL + COLTRANE_DRAIN_KEY;\n checkpoints under COLTRANE_WORKER_CHECKPOINTS,\n default ~/.coltrane/worker-checkpoints;\n exit 0 complete or parked, 1 failed, 3 queue empty)\n\nOptions\n --input <json|@file|-> dispatch payload; @file reads a file, - reads stdin\n --depth <skim|standard|deep> tighten the per-chair turn cap\n --budget <dollars> per-gig ceiling; the run stops when it is gone\n --reuse allow chair-level reuse of prior sealed outputs\n --resume <gig-id> continue a gig that died mid-pipeline\n --approve <role>=<json|@file> a human chair's verdict; repeat once per chair\n --as <name> who is approving; sealed as the verdict's author\n --wait block until the run finishes\n --follow poll until the gig reaches a terminal state\n --direction <upstream|downstream|both> for trace\n --json print the raw result to stdout\n --genome <path> genome root (default: $COLTRANE_GENOME or cwd)\n --help, --version\n\nA dispatch that reaches a chair a HUMAN holds parks: it names the waiting chair and exits 0,\nbecause a gig waiting on a person is not a failed gig. Approve it on the resume \u2014\n\n coltrane dispatch <standard> --resume <gig> \\\n --approve approve=@verdict.json --as eugene\n\n--input is NOT required on an approve-only resume: when every remaining chair is human the\ncheckpoint's recorded payload stands and the omission inherits it. If you DO pass --input it is\nchecked against the checkpoint, and a disagreement still refuses the resume.\n";
35
35
  interface Parsed {
36
36
  cmd: string | undefined;
37
37
  positional: string[];
@@ -1,5 +1,5 @@
1
1
  /** Engine semver. Keep in lockstep with package.json `version` (enforced by test). */
2
- export declare const COLTRANE_VERSION = "0.24.5";
2
+ export declare const COLTRANE_VERSION = "0.24.7";
3
3
  /**
4
4
  * The commit this engine checkout is sitting on, or null when it can't be determined.
5
5
  *
@@ -17,7 +17,7 @@ import { existsSync, readFileSync, statSync } from "node:fs";
17
17
  import { dirname, join, resolve } from "node:path";
18
18
  import { fileURLToPath } from "node:url";
19
19
  /** Engine semver. Keep in lockstep with package.json `version` (enforced by test). */
20
- export const COLTRANE_VERSION = "0.24.5";
20
+ export const COLTRANE_VERSION = "0.24.7";
21
21
  /**
22
22
  * The commit this engine checkout is sitting on, or null when it can't be determined.
23
23
  *
@@ -141,7 +141,17 @@
141
141
  "kind": "steve",
142
142
  "is_institution": false,
143
143
  "skill_slugs": [],
144
- "status": "active",
144
+ "status": "retired",
145
+ "named_from_forebear": null,
146
+ "auth_user_id": null
147
+ },
148
+ {
149
+ "slug": "blakey",
150
+ "name": "Blakey",
151
+ "kind": "steve",
152
+ "is_institution": false,
153
+ "skill_slugs": [],
154
+ "status": "named",
145
155
  "named_from_forebear": "blakey-art",
146
156
  "auth_user_id": null
147
157
  }
@@ -213,10 +223,10 @@
213
223
  {
214
224
  "id": "coltrane.seat.change-author",
215
225
  "chair_id": "coltrane.chair.change-author",
216
- "agent_slug": "coltrane-proposer",
226
+ "agent_slug": "blakey",
217
227
  "org_slug": "eir-labs",
218
228
  "contract_caps": [],
219
- "witnessed_by": null
229
+ "witnessed_by": "chain 000005; Documenso #1916732 (executed 2026-08-23T11:48:05Z, sha256:b8abd86e00c021321a2b4f5f4dd8c9346125a44cd8a521aaa8460be498ae6a53)"
220
230
  }
221
231
  ],
222
232
  "forebears": [
@@ -315,7 +325,7 @@
315
325
  {
316
326
  "institution_slug": "coltrane",
317
327
  "edge_type": "descends-from",
318
- "from_node": "agent:bandleader",
328
+ "from_node": "agent:blakey",
319
329
  "to_node": "forebear:blakey-art",
320
330
  "kind": "attribution",
321
331
  "source": {
@@ -329,9 +339,9 @@
329
339
  "American National Biography, \"Blakey, Art (1919-1990), jazz drummer and bandleader\", doi:10.1093/anb/9780198606697.article.1802592 (retrieved 2026-08-20)",
330
340
  "Grove Music Online, Lewis Porter, \"Blakey, Art (jazz)\", doi:10.1093/gmo/9781561592630.article.j046400 (retrieved 2026-08-20)"
331
341
  ],
332
- "attributed_disposition": "running a band as an institution that outlives its players: seating them, developing them, releasing them onward across roughly two dozen Jazz Messengers lineups from 1954 to 1990, while the band itself persisted as the durable thing. The seat calls the tune, judges the take and stops the band; it does not play.",
342
+ "attributed_disposition": "running a band as an institution that outlives its players: seating them, developing them, releasing them onward across roughly two dozen Jazz Messengers lineups from 1954 to 1990, while the band itself persisted as the durable thing. Re-read at the naming of Blakey (2026-08-23) for the change-author chair's CREATE mandate: the drum chair DRIVES the band and BUILDS the players — hard-swinging daily work, graduating members forward — which is the chair's build-and-open-PR practice. The prior 'calls the tune, judges the take... does not play' reading belonged to the retired pre-ritual config (PLAN+JUDGE) and was found behaviorally mismatched by the ritual's scribe (naming record e0b13933…).",
333
343
  "evidence_grade": "attestation",
334
- "note": "The two reference-work DOIs were dereferenced through api.crossref.org on 2026-08-20 and returned matching author, year and title. The recording details are carried from the standard Blue Note discography and were NOT independently dereferenced, so this edge is graded attestation rather than archive."
344
+ "note": "The two reference-work DOIs were dereferenced through api.crossref.org on 2026-08-20 and returned matching author, year and title. The recording details are carried from the standard Blue Note discography and were NOT independently dereferenced, so this edge is graded attestation rather than archive. RE-HOMED 2026-08-23: from_node agent:bandleader -> agent:blakey at the naming ritual's seal (Documenso #1916732, sha256:b8abd86e…6a53; chain 000005) — one forebear, one holder, per the uniqueness invariant; the pre-ritual config retired."
335
345
  }
336
346
  }
337
347
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eir-labs/coltrane",
3
- "version": "0.24.5",
3
+ "version": "0.24.7",
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",
@@ -0,0 +1,60 @@
1
+ {
2
+ "slug": "square-review-v0",
3
+ "domain": "spec-drafting",
4
+ "status": "active",
5
+ "agent_slugs": [
6
+ "context-reader",
7
+ "spec-reviewer"
8
+ ],
9
+ "phases": [
10
+ {
11
+ "name": "sense-merge",
12
+ "chairs": [
13
+ {
14
+ "role": "sense-merge",
15
+ "agent_slug": "context-reader",
16
+ "depends_on": [],
17
+ "input_contract": [
18
+ "change-request"
19
+ ],
20
+ "output_contract": [
21
+ "change-context"
22
+ ],
23
+ "optional_outputs": [],
24
+ "required_skills": []
25
+ }
26
+ ],
27
+ "intent": "On each merge to the reviewed line, sense the change-set and frame its context for review — what changed, where, and under which laws."
28
+ },
29
+ {
30
+ "name": "review-turns",
31
+ "chairs": [
32
+ {
33
+ "role": "review-turns",
34
+ "agent_slug": "spec-reviewer",
35
+ "depends_on": [
36
+ "sense-merge"
37
+ ],
38
+ "input_contract": [
39
+ "change-set",
40
+ "change-context"
41
+ ],
42
+ "output_contract": [
43
+ "change-verdict"
44
+ ],
45
+ "optional_outputs": [],
46
+ "required_skills": []
47
+ }
48
+ ],
49
+ "intent": "Read the change-set turn by turn and seal the review verdict, admitted to the lineage in daylight — a panel of peer review conducted where all may see it."
50
+ }
51
+ ],
52
+ "input_types": [
53
+ "change-request",
54
+ "change-set"
55
+ ],
56
+ "output_types": [
57
+ "change-verdict"
58
+ ],
59
+ "description": "The public square's review law (WO-002, Article the First): on merge, a change-set is read turn by turn on the cheap open path and its verdict admitted to the lineage in daylight. Model-agnostic by design — cheap enough to run without cease; no chair pins a tier. Phase graph proven by the founder's work-order validator before deliberation; created through deliberation-before-amendment-v1 (refused, cured, accepted). Generalization task identified in the executed order: parameterize the reviewed repository after the Coltrane instance runs."
60
+ }