@sporhq/spor 0.2.0 → 0.2.1
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 +1 -1
- package/lib/remote.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ dispatcher hosts call):
|
|
|
20
20
|
npm install -g @sporhq/spor
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
Requires Node
|
|
23
|
+
Requires Node 20+ and nothing else — the client is zero-dependency. To run
|
|
24
24
|
from a checkout instead (e.g. to hack on it), clone the repo and `npm link`
|
|
25
25
|
from its root; that symlinks the same two commands onto your PATH.
|
|
26
26
|
|
package/lib/remote.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// remote.js — minimal zero-dependency REST client for the Spor server, used by
|
|
3
3
|
// the bin/spor CLI in remote mode (dec-cc-spor-cli-universal-surface step 3).
|
|
4
|
-
// `fetch` is a Node
|
|
4
|
+
// `fetch` is a Node 20+ global (package.json engines), so no dependency.
|
|
5
5
|
//
|
|
6
6
|
// Fail-open parity with the hooks (dec-cc-fail-open-hooks): a transport error
|
|
7
7
|
// (DNS, refused, timeout) resolves to { ok:false, transport:true } rather than
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sporhq/spor",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Spor — a shared memory substrate for teams and agents. Decisions, their reasons, and the traces they leave. Knowledge-graph context compiler: session-start briefings, per-prompt digests, capture at discovery, end-of-session distillation, decision queue.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Anthony Allen",
|
|
@@ -48,6 +48,6 @@
|
|
|
48
48
|
"conformance": "node conformance/runner.js"
|
|
49
49
|
},
|
|
50
50
|
"engines": {
|
|
51
|
-
"node": ">=
|
|
51
|
+
"node": ">=20"
|
|
52
52
|
}
|
|
53
53
|
}
|