@skein-js/runtime 0.9.1 → 0.10.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/README.md +4 -0
- package/package.json +10 -9
package/README.md
CHANGED
|
@@ -42,6 +42,10 @@ driver branches:
|
|
|
42
42
|
A missing `POSTGRES_URI` / `REDIS_URI` throws `RuntimeConfigError`; if assembly fails part-way, any
|
|
43
43
|
resources already created are disposed before rethrowing, so a failed build leaks nothing.
|
|
44
44
|
|
|
45
|
+
This is the same environment contract the `skein build` image uses, so anything you learn here
|
|
46
|
+
applies when you deploy it — see [deploy anywhere](../../docs/deploy.md) for the full variable table,
|
|
47
|
+
pool sizing, and per-platform guides.
|
|
48
|
+
|
|
45
49
|
Graph hot-reload (`reloadGraphs()`) works in every mode; `snapshotState`/`hydrateState` are present
|
|
46
50
|
**only** in all-memory mode (durable stores keep their own state).
|
|
47
51
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skein-js/runtime",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Assembles skein-js ProtocolDeps from langgraph.json + selected drivers (memory/Postgres/Redis).",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Maina Wycliffe <wmmaina7@gmail.com>",
|
|
@@ -28,7 +28,8 @@
|
|
|
28
28
|
"exports": {
|
|
29
29
|
".": {
|
|
30
30
|
"types": "./dist/index.d.ts",
|
|
31
|
-
"import": "./dist/index.js"
|
|
31
|
+
"import": "./dist/index.js",
|
|
32
|
+
"default": "./dist/index.js"
|
|
32
33
|
}
|
|
33
34
|
},
|
|
34
35
|
"files": [
|
|
@@ -42,12 +43,12 @@
|
|
|
42
43
|
},
|
|
43
44
|
"dependencies": {
|
|
44
45
|
"cors": "^2.8.5",
|
|
45
|
-
"@skein-js/agent-protocol": "0.
|
|
46
|
-
"@skein-js/config": "0.
|
|
47
|
-
"@skein-js/
|
|
48
|
-
"@skein-js/storage-memory": "0.
|
|
49
|
-
"@skein-js/
|
|
50
|
-
"@skein-js/storage-postgres": "0.
|
|
46
|
+
"@skein-js/agent-protocol": "0.10.0",
|
|
47
|
+
"@skein-js/config": "0.10.0",
|
|
48
|
+
"@skein-js/server-kit": "0.10.0",
|
|
49
|
+
"@skein-js/storage-memory": "0.10.0",
|
|
50
|
+
"@skein-js/redis": "0.10.0",
|
|
51
|
+
"@skein-js/storage-postgres": "0.10.0"
|
|
51
52
|
},
|
|
52
53
|
"peerDependencies": {
|
|
53
54
|
"@langchain/langgraph": "^1.4.0",
|
|
@@ -58,7 +59,7 @@
|
|
|
58
59
|
"@langchain/langgraph": "^1.4.0",
|
|
59
60
|
"@langchain/langgraph-checkpoint-postgres": "^1.0.4",
|
|
60
61
|
"@types/cors": "^2.8.17",
|
|
61
|
-
"@skein-js/test-support": "0.
|
|
62
|
+
"@skein-js/test-support": "0.10.0"
|
|
62
63
|
},
|
|
63
64
|
"publishConfig": {
|
|
64
65
|
"access": "public"
|