@sporhq/spor 0.2.0 → 0.2.2

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,14 @@
1
+ {
2
+ "name": "spor",
3
+ "owner": {
4
+ "name": "Anthony Allen"
5
+ },
6
+ "description": "Spor context compiler — knowledge-graph briefings, capture, and decision queue for Claude Code",
7
+ "plugins": [
8
+ {
9
+ "name": "spor",
10
+ "source": "./",
11
+ "description": "Maintains a typed knowledge graph and compiles lineage-aware context briefings: session-start injection, per-prompt digests, capture at discovery, end-of-session distillation, decision queue"
12
+ }
13
+ ]
14
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "spor",
3
+ "displayName": "Spor Context Compiler",
4
+ "description": "Maintains a typed, versioned knowledge graph and compiles compact briefings from it: session-start injection, per-prompt relevance digests, capture at discovery, end-of-session distillation, decision queue.",
5
+ "version": "0.2.2",
6
+ "author": { "name": "losthammer" }
7
+ }
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 18+ and nothing else — the client is zero-dependency. To run
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 18+ global (package.json engines), so no dependency.
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.0",
3
+ "version": "0.2.2",
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",
@@ -26,6 +26,7 @@
26
26
  "spor-hook": "./bin/spor-hook.js"
27
27
  },
28
28
  "files": [
29
+ ".claude-plugin/",
29
30
  "lib/",
30
31
  "bin/",
31
32
  "scripts/engines/",
@@ -48,6 +49,6 @@
48
49
  "conformance": "node conformance/runner.js"
49
50
  },
50
51
  "engines": {
51
- "node": ">=18"
52
+ "node": ">=20"
52
53
  }
53
54
  }