@eir-labs/coltrane 0.7.4 → 0.7.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/charts/studio-repass-v0.json +43 -0
- package/dist/src/cli.d.ts +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +1 -1
- package/standards/lineage-deepen-v0.json +27 -0
- package/standards/lineage-pass-v1.json +1 -1
- package/standards/lineage-reweave-v0.json +56 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "studio-repass-v0",
|
|
3
|
+
"movements": [
|
|
4
|
+
{
|
|
5
|
+
"movement_id": "m1-pass",
|
|
6
|
+
"standard_slug": "lineage-pass-v1"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"movement_id": "m2-deepen",
|
|
10
|
+
"standard_slug": "lineage-deepen-v0"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"movement_id": "m3-reweave",
|
|
14
|
+
"standard_slug": "lineage-reweave-v0"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"edges": [
|
|
18
|
+
{
|
|
19
|
+
"from_movement": "m1-pass",
|
|
20
|
+
"to_movement": "m3-reweave",
|
|
21
|
+
"output_type": "internal-inventory"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"from_movement": "m1-pass",
|
|
25
|
+
"to_movement": "m3-reweave",
|
|
26
|
+
"output_type": "lineage-hit"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"from_movement": "m2-deepen",
|
|
30
|
+
"to_movement": "m3-reweave",
|
|
31
|
+
"output_type": "lineage-hit"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"approval_gates": [
|
|
35
|
+
{
|
|
36
|
+
"gate_id": "lineage-repass-approval",
|
|
37
|
+
"after_movement": "m2-deepen",
|
|
38
|
+
"before_movement": "m3-reweave",
|
|
39
|
+
"chair": "lineage-steward",
|
|
40
|
+
"prompt": "Review the deepened lineage-hit sealed by m2-deepen against the original pass's hits and the reused internal-inventory. Approve to spend the reweave: on your yes, m3-reweave re-draws the lineage-map from the reused internal-inventory plus both the original and deepened external hits, judges the gap, and composes a fresh lineage-record. Nothing is re-woven on an absent yes."
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
}
|
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.7.
|
|
34
|
+
export declare const USAGE = "coltrane 0.7.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 work claim one queued gig from the org store and run it\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> --input @orig.json \\\n --approve approve=@verdict.json --as eugene\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.7.
|
|
2
|
+
export declare const COLTRANE_VERSION = "0.7.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.7.
|
|
20
|
+
export const COLTRANE_VERSION = "0.7.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.7.
|
|
3
|
+
"version": "0.7.5",
|
|
4
4
|
"description": "A methodology engine — 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,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "lineage-deepen-v0",
|
|
3
|
+
"domain": "lineage",
|
|
4
|
+
"status": "active",
|
|
5
|
+
"description": "A LINEAGE DEEPEN re-runs only the thin external seat of a lineage pass, with a sharper question. When a completed pass leaves a gap on the external side — a source it did not reach, a precedent read too shallowly — this standard re-performs just the outward sense: the external scout sweeps the body of prior work again under a re-pointed lineage-question and seals fresh lineage-hits. It touches neither the internal inventory nor the drawn lineage; those are reused as-is by the re-weave. One phase, one chair, least authority — the smallest re-run that sharpens the external reading of a pass without paying to redo the whole thing.",
|
|
6
|
+
"agent_slugs": [
|
|
7
|
+
"lineage-scout-external"
|
|
8
|
+
],
|
|
9
|
+
"phases": [
|
|
10
|
+
{
|
|
11
|
+
"name": "identify",
|
|
12
|
+
"chairs": [
|
|
13
|
+
{
|
|
14
|
+
"role": "identify-external",
|
|
15
|
+
"agent_slug": "lineage-scout-external",
|
|
16
|
+
"depends_on": [],
|
|
17
|
+
"input_contract": ["lineage-question"],
|
|
18
|
+
"output_contract": ["lineage-hit"],
|
|
19
|
+
"required_skills": []
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"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
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"input_types": ["lineage-question"],
|
|
26
|
+
"output_types": ["lineage-hit"]
|
|
27
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "lineage-reweave-v0",
|
|
3
|
+
"domain": "lineage",
|
|
4
|
+
"status": "active",
|
|
5
|
+
"description": "A LINEAGE REWEAVE re-draws the synthesis of a lineage pass from REUSED and NEW seeds, without re-running the scouts. Its entry chair takes the two senses from outside itself — the unchanged internal-inventory the original pass already sealed, and the external lineage-hits (the pass's original plus any a deepen re-run sharpened) — and draws the connection again: a lineage-map of grounded edges, each saying our X descends-from / aligns-with / diverges-from / supersedes / informed-by their Y. It then judges the gap against the re-drawn lineage and plans the alignment, and composes the formal lineage-record. The associate chair is an ENTRY chair (depends_on []): the senses are seeded by the arrangement's edges, so no seat here re-senses anything — the reweave reasons over what was retrieved before, exactly the cost a re-pass is meant to save.",
|
|
6
|
+
"agent_slugs": [
|
|
7
|
+
"lineage-weaver",
|
|
8
|
+
"lineage-scribe"
|
|
9
|
+
],
|
|
10
|
+
"phases": [
|
|
11
|
+
{
|
|
12
|
+
"name": "associate",
|
|
13
|
+
"chairs": [
|
|
14
|
+
{
|
|
15
|
+
"role": "associate",
|
|
16
|
+
"agent_slug": "lineage-weaver",
|
|
17
|
+
"depends_on": [],
|
|
18
|
+
"input_contract": ["lineage-hit", "internal-inventory"],
|
|
19
|
+
"output_contract": ["lineage-map"],
|
|
20
|
+
"required_skills": []
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"intent": "The core act, re-performed. Reason over the seeded senses — the reused internal-inventory and both the original and the deepened lineage-hits — and DRAW THE CONNECTION: for each defensible pairing, an edge naming the relation, grounded on BOTH sides, dropping any edge that cannot be grounded both ways. No tools: this seat connects only what the senses already retrieved. The lineage-map it seals is the re-drawn lineage."
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "assess",
|
|
27
|
+
"chairs": [
|
|
28
|
+
{
|
|
29
|
+
"role": "assess",
|
|
30
|
+
"agent_slug": "lineage-weaver",
|
|
31
|
+
"depends_on": ["associate"],
|
|
32
|
+
"input_contract": ["lineage-map"],
|
|
33
|
+
"output_contract": ["alignment-plan"],
|
|
34
|
+
"required_skills": []
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"intent": "Judge the gap and plan the alignment off the re-drawn lineage. Where our internal state has no edge to a source the sharpened prior work establishes, or a source supersedes what we hold, name the gap plainly; then sequence the actions that would close it — cite, adopt, diverge deliberately, or supersede — sealed with the gap summary as an alignment-plan."
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "compose",
|
|
41
|
+
"chairs": [
|
|
42
|
+
{
|
|
43
|
+
"role": "compose",
|
|
44
|
+
"agent_slug": "lineage-scribe",
|
|
45
|
+
"depends_on": ["associate", "assess"],
|
|
46
|
+
"input_contract": ["lineage-map", "alignment-plan"],
|
|
47
|
+
"output_contract": ["lineage-record"],
|
|
48
|
+
"required_skills": []
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"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
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"input_types": ["lineage-hit", "internal-inventory"],
|
|
55
|
+
"output_types": ["lineage-record"]
|
|
56
|
+
}
|