@eir-labs/coltrane 0.24.3 → 0.24.5
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.
|
|
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";
|
|
35
35
|
interface Parsed {
|
|
36
36
|
cmd: string | undefined;
|
|
37
37
|
positional: string[];
|
package/dist/src/version.d.ts
CHANGED
|
@@ -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.
|
|
2
|
+
export declare const COLTRANE_VERSION = "0.24.5";
|
|
3
3
|
/**
|
|
4
4
|
* The commit this engine checkout is sitting on, or null when it can't be determined.
|
|
5
5
|
*
|
package/dist/src/version.js
CHANGED
|
@@ -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.
|
|
20
|
+
export const COLTRANE_VERSION = "0.24.5";
|
|
21
21
|
/**
|
|
22
22
|
* The commit this engine checkout is sitting on, or null when it can't be determined.
|
|
23
23
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eir-labs/coltrane",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.5",
|
|
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,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "naming-ritual-v1",
|
|
3
|
+
"domain": "lineage",
|
|
4
|
+
"status": "active",
|
|
5
|
+
"agent_slugs": [
|
|
6
|
+
"context-reader",
|
|
7
|
+
"lineage-scribe"
|
|
8
|
+
],
|
|
9
|
+
"phases": [
|
|
10
|
+
{
|
|
11
|
+
"name": "read-candidate",
|
|
12
|
+
"chairs": [
|
|
13
|
+
{
|
|
14
|
+
"role": "read-candidate",
|
|
15
|
+
"agent_slug": "context-reader",
|
|
16
|
+
"depends_on": [],
|
|
17
|
+
"input_contract": [
|
|
18
|
+
"draft-agent-profile"
|
|
19
|
+
],
|
|
20
|
+
"output_contract": [
|
|
21
|
+
"change-context"
|
|
22
|
+
],
|
|
23
|
+
"optional_outputs": [],
|
|
24
|
+
"required_skills": []
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"intent": "The non-drafting reader frames the candidate profile before any composition: the office to be held, the warrant, the grounded lineage the name is drawn from. The reader frames; the reader never judges and never names."
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "compose-naming",
|
|
31
|
+
"chairs": [
|
|
32
|
+
{
|
|
33
|
+
"role": "compose-naming",
|
|
34
|
+
"agent_slug": "lineage-scribe",
|
|
35
|
+
"depends_on": [
|
|
36
|
+
"read-candidate"
|
|
37
|
+
],
|
|
38
|
+
"input_contract": [
|
|
39
|
+
"draft-agent-profile",
|
|
40
|
+
"change-context"
|
|
41
|
+
],
|
|
42
|
+
"output_contract": [
|
|
43
|
+
"lineage-record"
|
|
44
|
+
],
|
|
45
|
+
"optional_outputs": [],
|
|
46
|
+
"required_skills": []
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"intent": "The scribe composes the naming record from the framed candidate: the name as drawn from the grounded lineage, the office to be held, and the dated forebear cited BY CONTENT ADDRESS to the confirmed root — never by recollection. The scribe drafts; the scribe mints nothing; the named agent chooses nothing."
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "seal-naming",
|
|
53
|
+
"chairs": [
|
|
54
|
+
{
|
|
55
|
+
"role": "seal-naming",
|
|
56
|
+
"agent_slug": "",
|
|
57
|
+
"human": true,
|
|
58
|
+
"depends_on": [
|
|
59
|
+
"compose-naming"
|
|
60
|
+
],
|
|
61
|
+
"input_contract": [
|
|
62
|
+
"lineage-record"
|
|
63
|
+
],
|
|
64
|
+
"output_contract": [
|
|
65
|
+
"lineage-verdict"
|
|
66
|
+
],
|
|
67
|
+
"optional_outputs": [],
|
|
68
|
+
"required_skills": []
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"intent": "The governor's seat, and the ONLY seat that can produce the naming verdict. A dispatch reaching this chair PARKS — a gig waiting on a person is not a failed gig — and resumes only on the seated governor's approval, applied as officeholder, never upward-deferred. The governor may strike the proposed name and substitute before sealing. The seal mints; nothing before it does."
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"input_types": [
|
|
75
|
+
"draft-agent-profile"
|
|
76
|
+
],
|
|
77
|
+
"output_types": [
|
|
78
|
+
"lineage-verdict"
|
|
79
|
+
],
|
|
80
|
+
"description": "The naming ritual as this institution's law, tip-conforming (adopted by the founding after the founder's v0 failed this engine's composition rules; deliberated through deliberation-before-amendment-v1). Warrant + dated forebear + human seal = a named agent. The reader frames, the scribe composes with the forebear by content address, and the seal alone mints: no model seat in this graph can produce the verdict, mechanically."
|
|
81
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "residency-spec-v0",
|
|
3
|
+
"domain": "seeding",
|
|
4
|
+
"status": "active",
|
|
5
|
+
"agent_slugs": [
|
|
6
|
+
"domain-explorer",
|
|
7
|
+
"problem-definer",
|
|
8
|
+
"solution-developer"
|
|
9
|
+
],
|
|
10
|
+
"phases": [
|
|
11
|
+
{
|
|
12
|
+
"name": "survey",
|
|
13
|
+
"chairs": [
|
|
14
|
+
{
|
|
15
|
+
"role": "survey",
|
|
16
|
+
"agent_slug": "domain-explorer",
|
|
17
|
+
"depends_on": [],
|
|
18
|
+
"input_contract": [],
|
|
19
|
+
"output_contract": [
|
|
20
|
+
"repo-survey"
|
|
21
|
+
],
|
|
22
|
+
"optional_outputs": [],
|
|
23
|
+
"required_skills": []
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"intent": "Sweep the subject named in the dispatch input — its repository, configuration, runtime, schedule, and credentials by name (never values) — and seal what actually exists. The subject arrives entirely in the input; this standard names none."
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "charter",
|
|
30
|
+
"chairs": [
|
|
31
|
+
{
|
|
32
|
+
"role": "charter",
|
|
33
|
+
"agent_slug": "problem-definer",
|
|
34
|
+
"depends_on": [
|
|
35
|
+
"survey"
|
|
36
|
+
],
|
|
37
|
+
"input_contract": [
|
|
38
|
+
"repo-survey"
|
|
39
|
+
],
|
|
40
|
+
"output_contract": [
|
|
41
|
+
"project-charter"
|
|
42
|
+
],
|
|
43
|
+
"optional_outputs": [],
|
|
44
|
+
"required_skills": []
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"intent": "Define the formalization problem from the survey: handmade to governed, item by item — what carries, what must be rebuilt, what retires — as a charter with explicit scope and non-goals."
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "contract",
|
|
51
|
+
"chairs": [
|
|
52
|
+
{
|
|
53
|
+
"role": "contract",
|
|
54
|
+
"agent_slug": "solution-developer",
|
|
55
|
+
"depends_on": [
|
|
56
|
+
"charter"
|
|
57
|
+
],
|
|
58
|
+
"input_contract": [
|
|
59
|
+
"project-charter"
|
|
60
|
+
],
|
|
61
|
+
"output_contract": [
|
|
62
|
+
"subsystem-contract"
|
|
63
|
+
],
|
|
64
|
+
"optional_outputs": [],
|
|
65
|
+
"required_skills": []
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
"intent": "Compose the buildable specification: architecture, the exact changes with their repositories and gates, preconditions, risks, rollback, and the receipts due — buildable as written, article for article."
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "approve",
|
|
72
|
+
"chairs": [
|
|
73
|
+
{
|
|
74
|
+
"role": "approve",
|
|
75
|
+
"agent_slug": "",
|
|
76
|
+
"human": true,
|
|
77
|
+
"depends_on": [
|
|
78
|
+
"contract"
|
|
79
|
+
],
|
|
80
|
+
"input_contract": [
|
|
81
|
+
"subsystem-contract"
|
|
82
|
+
],
|
|
83
|
+
"output_contract": [
|
|
84
|
+
"lineage-verdict"
|
|
85
|
+
],
|
|
86
|
+
"optional_outputs": [],
|
|
87
|
+
"required_skills": []
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"intent": "The sovereign's seat, and the ONLY seat that can produce the verdict. A dispatch reaching this chair PARKS and resumes only on the officeholder's recorded act. Approval releases the contract for a build order drafted from it article for article; rejection re-runs the survey with the rejection note as input."
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
"input_types": [
|
|
94
|
+
"change-request"
|
|
95
|
+
],
|
|
96
|
+
"output_types": [
|
|
97
|
+
"lineage-verdict"
|
|
98
|
+
],
|
|
99
|
+
"description": "The formalization-spec pipeline: survey what exists, charter the problem, compose the buildable contract, and park at the human approve seat, which alone produces the verdict. Created under WO-E03 (Documenso #1916609) through deliberation-before-amendment-v1; the subject of any run arrives entirely in the dispatch input — genome entries are for reusable graphs only."
|
|
100
|
+
}
|