pi-canon 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +18 -4
package/README.md CHANGED
@@ -60,8 +60,10 @@ Installed as a package, pi loads the default export with defaults; the named exp
60
60
 
61
61
  ## Install
62
62
 
63
- pi install npm:pi-canon (not yet published)
63
+ pi install npm:pi-canon
64
64
 
65
65
  Or clone this repo into `~/.pi/agent/extensions/`. Node 22 or later, Pi 0.83 or later.
66
66
 
67
67
  MIT. pi-canon is the long-term half of a four-tier memory stack: the journal is the episodic tier, the canon the semantic tier. [pi-fold](https://github.com/shaneconner/pi-fold) is a separate, optional package serving the working tier; the two compose but neither requires the other.
68
+
69
+ The design and a four-arm multi-session evaluation are written up in *pi-canon: Mutable Canonical Memory over an Immutable Journal, with Recall by Surfacing*, [doi:10.5281/zenodo.21890647](https://doi.org/10.5281/zenodo.21890647). The benchmark is [canon-bench](https://github.com/shaneconner/canon-bench).
package/package.json CHANGED
@@ -1,15 +1,21 @@
1
1
  {
2
2
  "name": "pi-canon",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Canonical project memory for the Pi coding agent: one article per asset at a knowable address, an append-only journal beneath it.",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": "./extensions/index.js"
8
8
  },
9
9
  "pi": {
10
- "extensions": ["./extensions"]
10
+ "extensions": [
11
+ "./extensions"
12
+ ]
11
13
  },
12
- "files": ["extensions", "README.md", "LICENSE"],
14
+ "files": [
15
+ "extensions",
16
+ "README.md",
17
+ "LICENSE"
18
+ ],
13
19
  "engines": {
14
20
  "node": ">=22.18"
15
21
  },
@@ -19,7 +25,15 @@
19
25
  "scripts": {
20
26
  "test": "node tests/verify.mjs"
21
27
  },
22
- "keywords": ["pi-package", "pi", "pi-extension", "memory", "knowledge", "agent", "wiki"],
28
+ "keywords": [
29
+ "pi-package",
30
+ "pi",
31
+ "pi-extension",
32
+ "memory",
33
+ "knowledge",
34
+ "agent",
35
+ "wiki"
36
+ ],
23
37
  "author": "Shane Conner",
24
38
  "license": "MIT",
25
39
  "repository": {