@eir-labs/coltrane 0.24.33 → 0.24.35

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.
@@ -0,0 +1,66 @@
1
+ {
2
+ "slug": "release-note",
3
+ "version": 1,
4
+ "extends": "Artifact",
5
+ "domain": "release",
6
+ "status": "active",
7
+ "schema": {
8
+ "type": "object",
9
+ "properties": {
10
+ "version": {
11
+ "type": "string"
12
+ },
13
+ "headline": {
14
+ "type": "string",
15
+ "description": "one line a reader can scan in a list, in plain language; names what changed, never 'various improvements'"
16
+ },
17
+ "plain_md": {
18
+ "type": "string",
19
+ "description": "the plain register: what this release means for someone using coltrane, in their words (a tool they call, a flag they pass, a variable they set). No internal vocabulary, no gig ids, no costs."
20
+ },
21
+ "formal_md": {
22
+ "type": "string",
23
+ "description": "the formal register: version, tag, date, bump, the commits by subject, the law counts at both ends, and each surface change as it stands in the record"
24
+ },
25
+ "claims": {
26
+ "type": "array",
27
+ "description": "every factual claim the prose makes, each paired with the field of the release-record that supports it. A claim with no evidence is what the verify seat refuses.",
28
+ "items": {
29
+ "type": "object",
30
+ "properties": {
31
+ "text": {
32
+ "type": "string",
33
+ "description": "the claim as the prose states it"
34
+ },
35
+ "evidence": {
36
+ "type": "string",
37
+ "description": "the record path that supports it, e.g. surface.cli_flags.added[0] or laws.after"
38
+ },
39
+ "value": {
40
+ "type": "string",
41
+ "description": "the value read at that path"
42
+ }
43
+ },
44
+ "required": [
45
+ "text",
46
+ "evidence"
47
+ ]
48
+ }
49
+ },
50
+ "unreadable": {
51
+ "type": "array",
52
+ "description": "the surfaces the record marks unread, named for the reader so a gap is stated rather than implied",
53
+ "items": {
54
+ "type": "string"
55
+ }
56
+ }
57
+ }
58
+ },
59
+ "required_fields": [
60
+ "version",
61
+ "headline",
62
+ "plain_md",
63
+ "formal_md",
64
+ "claims"
65
+ ]
66
+ }
@@ -0,0 +1,59 @@
1
+ {
2
+ "slug": "release-record",
3
+ "version": 1,
4
+ "extends": "Signal",
5
+ "domain": "release",
6
+ "status": "active",
7
+ "schema": {
8
+ "type": "object",
9
+ "properties": {
10
+ "version": {
11
+ "type": "string",
12
+ "description": "the semver this release carries, without the v prefix"
13
+ },
14
+ "tag": {
15
+ "type": "string"
16
+ },
17
+ "date": {
18
+ "type": "string",
19
+ "description": "the tag's commit date, ISO"
20
+ },
21
+ "bump": {
22
+ "type": "string",
23
+ "description": "major | minor | patch, derived from the range's commit subjects"
24
+ },
25
+ "commits": {
26
+ "type": "array",
27
+ "description": "{sha, subject}, oldest first, for the range since the previous tag",
28
+ "items": {
29
+ "type": "object"
30
+ }
31
+ },
32
+ "laws": {
33
+ "type": "object",
34
+ "description": "{before, after, files} read from scripts/laws.sh at each end; null where a count could not be read"
35
+ },
36
+ "surface": {
37
+ "type": "object",
38
+ "description": "per surface (mcp_tools, mcp_tool_args, cli_flags, env_vars, domain_types) a sorted {added, removed}, or null when that surface could not be read at this tag"
39
+ },
40
+ "surface_unread": {
41
+ "type": "array",
42
+ "description": "the surfaces whose file was present but yielded nothing readable",
43
+ "items": {
44
+ "type": "string"
45
+ }
46
+ },
47
+ "source": {
48
+ "type": "string"
49
+ }
50
+ }
51
+ },
52
+ "required_fields": [
53
+ "version",
54
+ "tag",
55
+ "date",
56
+ "commits",
57
+ "surface"
58
+ ]
59
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eir-labs/coltrane",
3
- "version": "0.24.33",
3
+ "version": "0.24.35",
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",
@@ -61,7 +61,8 @@
61
61
  "types": "./dist/src/genome_schema.d.ts",
62
62
  "import": "./dist/src/genome_schema.js",
63
63
  "default": "./dist/src/genome_schema.js"
64
- }
64
+ },
65
+ "./releases.json": "./releases.json"
65
66
  },
66
67
  "files": [
67
68
  "dist/src",
@@ -76,13 +77,14 @@
76
77
  "tours",
77
78
  "evals",
78
79
  "README.md",
79
- "LICENSE"
80
+ "LICENSE",
81
+ "releases.json"
80
82
  ],
81
83
  "publishConfig": {
82
84
  "access": "public"
83
85
  },
84
86
  "scripts": {
85
- "build": "tsc && cp src/skill_runner.mjs dist/src/ && chmod +x dist/src/server_entry.js dist/src/server_relay.js dist/src/cli_entry.js",
87
+ "build": "tsc && cp src/skill_runner.mjs dist/src/ && chmod +x dist/src/server_entry.js dist/src/server_relay.js dist/src/cli_entry.js && node scripts/emit_releases.mjs --allow-unavailable",
86
88
  "dev": "tsc --watch",
87
89
  "prepare": "npm run build",
88
90
  "test": "bash scripts/laws.sh",