@eir-labs/coltrane 0.24.28 → 0.24.30
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 +4 -1
- package/dist/src/cli.js +19 -1
- package/dist/src/cli.js.map +1 -1
- package/dist/src/mcp.d.ts +3 -0
- package/dist/src/mcp.js +89 -1
- package/dist/src/mcp.js.map +1 -1
- package/dist/src/reside.d.ts +150 -0
- package/dist/src/reside.js +380 -0
- package/dist/src/reside.js.map +1 -0
- package/dist/src/reside_backing.d.ts +64 -0
- package/dist/src/reside_backing.js +243 -0
- package/dist/src/reside_backing.js.map +1 -0
- package/dist/src/residency.d.ts +9 -5
- package/dist/src/residency.js +10 -10
- package/dist/src/residency.js.map +1 -1
- package/dist/src/server.js +7 -1
- package/dist/src/server.js.map +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +11 -1
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.30";
|
|
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.30";
|
|
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.30",
|
|
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",
|
|
@@ -51,6 +51,16 @@
|
|
|
51
51
|
"types": "./dist/src/tool_surface.d.ts",
|
|
52
52
|
"import": "./dist/src/tool_surface.js",
|
|
53
53
|
"default": "./dist/src/tool_surface.js"
|
|
54
|
+
},
|
|
55
|
+
"./worker_env": {
|
|
56
|
+
"types": "./dist/src/worker_env.d.ts",
|
|
57
|
+
"import": "./dist/src/worker_env.js",
|
|
58
|
+
"default": "./dist/src/worker_env.js"
|
|
59
|
+
},
|
|
60
|
+
"./genome_schema": {
|
|
61
|
+
"types": "./dist/src/genome_schema.d.ts",
|
|
62
|
+
"import": "./dist/src/genome_schema.js",
|
|
63
|
+
"default": "./dist/src/genome_schema.js"
|
|
54
64
|
}
|
|
55
65
|
},
|
|
56
66
|
"files": [
|