@cotal-ai/runtime 0.0.1 → 0.24.0
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/fork.d.ts +144 -0
- package/dist/fork.d.ts.map +1 -0
- package/dist/fork.js +310 -0
- package/dist/fork.js.map +1 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +18 -0
- package/dist/index.js.map +1 -0
- package/dist/journal-store.d.ts +54 -0
- package/dist/journal-store.d.ts.map +1 -0
- package/dist/journal-store.js +60 -0
- package/dist/journal-store.js.map +1 -0
- package/dist/mesh-handler.d.ts +310 -0
- package/dist/mesh-handler.d.ts.map +1 -0
- package/dist/mesh-handler.js +731 -0
- package/dist/mesh-handler.js.map +1 -0
- package/dist/migrate.d.ts +147 -0
- package/dist/migrate.d.ts.map +1 -0
- package/dist/migrate.js +256 -0
- package/dist/migrate.js.map +1 -0
- package/dist/resolve-checkpoint.d.ts +75 -0
- package/dist/resolve-checkpoint.d.ts.map +1 -0
- package/dist/resolve-checkpoint.js +108 -0
- package/dist/resolve-checkpoint.js.map +1 -0
- package/dist/run-context.d.ts +42 -0
- package/dist/run-context.d.ts.map +1 -0
- package/dist/run-context.js +55 -0
- package/dist/run-context.js.map +1 -0
- package/dist/run-driver.d.ts +124 -0
- package/dist/run-driver.d.ts.map +1 -0
- package/dist/run-driver.js +228 -0
- package/dist/run-driver.js.map +1 -0
- package/package.json +31 -16
- package/README.md +0 -6
package/package.json
CHANGED
|
@@ -1,25 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cotal-ai/runtime",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
3
|
+
"description": "Cotal workflow runtime: hosts cotal-lang runs on the mesh — the durable step-journal store, the effect handler, and the run driver.",
|
|
4
|
+
"version": "0.24.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"cotal",
|
|
8
|
-
"agents",
|
|
9
|
-
"multi-agent",
|
|
10
|
-
"workflow",
|
|
11
|
-
"durable",
|
|
12
|
-
"nats",
|
|
13
|
-
"jetstream"
|
|
14
|
-
],
|
|
15
|
-
"homepage": "https://github.com/Cotal-AI/Cotal#readme",
|
|
16
6
|
"repository": {
|
|
17
7
|
"type": "git",
|
|
18
|
-
"url": "
|
|
8
|
+
"url": "https://github.com/Cotal-AI/Cotal.git",
|
|
19
9
|
"directory": "implementations/runtime"
|
|
20
10
|
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"main": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"import": "./dist/index.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@cotal-ai/core": "0.24.0",
|
|
22
|
+
"@cotal-ai/lang": "0.24.0"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@nats-io/jetstream": "^3.4.0",
|
|
26
|
+
"@nats-io/kv": "^3.4.0",
|
|
27
|
+
"@nats-io/transport-node": "^3.4.0"
|
|
28
|
+
},
|
|
21
29
|
"files": [
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
30
|
+
"dist"
|
|
31
|
+
],
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"typecheck": "tsc -p tsconfig.check.json",
|
|
37
|
+
"build": "tsc -p tsconfig.json",
|
|
38
|
+
"test": "tsx smoke/mesh-seam.smoke.ts"
|
|
39
|
+
}
|
|
25
40
|
}
|
package/README.md
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
# @cotal-ai/runtime
|
|
2
|
-
|
|
3
|
-
Name-reserving stub. The real package, the Cotal workflow runtime (durable step-journal
|
|
4
|
-
store, effect handler, run driver for cotal-lang runs on the mesh), ships from
|
|
5
|
-
[Cotal-AI/Cotal](https://github.com/Cotal-AI/Cotal) at version 0.24.0 and above via the
|
|
6
|
-
release pipeline. Do not depend on this version.
|