pi-memory-stone 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 +14 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,31 +8,37 @@ A global pi extension that preserves and retrieves useful memory across pi sessi
8
8
 
9
9
  ## Quick Start
10
10
 
11
- Install globally as a pi package:
11
+ Install globally from npm:
12
12
 
13
13
  ```bash
14
- pi install git:github.com/nikolasp/pi-memory-stone
14
+ pi install npm:pi-memory-stone
15
15
  ```
16
16
 
17
- Or install manually in pi's global extension directory:
17
+ Package page: https://www.npmjs.com/package/pi-memory-stone
18
+
19
+ Then restart pi or run `/reload`, and verify it is active:
18
20
 
19
21
  ```bash
20
- git clone https://github.com/nikolasp/pi-memory-stone ~/.pi/agent/extensions/pi-memory-stone
22
+ /memory-status
21
23
  ```
22
24
 
23
- Then restart pi or run `/reload`, and verify it is active:
25
+ Alternative installs:
24
26
 
25
27
  ```bash
26
- /memory-status
28
+ # Install directly from GitHub
29
+ pi install git:github.com/nikolasp/pi-memory-stone
30
+
31
+ # Manual global extension checkout
32
+ git clone https://github.com/nikolasp/pi-memory-stone ~/.pi/agent/extensions/pi-memory-stone
27
33
  ```
28
34
 
29
- > Scope note: `pi install -l ...` / `pi install --local ...` writes to the current project's `.pi/settings.json` and only loads there. For all projects, run `pi install git:github.com/nikolasp/pi-memory-stone` without `--local` (user settings) or use `~/.pi/agent/extensions/`.
35
+ > Scope note: `pi install -l ...` / `pi install --local ...` writes to the current project's `.pi/settings.json` and only loads there. For all projects, run `pi install npm:pi-memory-stone` without `--local` (user settings) or use `~/.pi/agent/extensions/`.
30
36
 
31
37
  ## Architecture
32
38
 
33
39
  ```
34
40
  ~/.pi/agent/memory/memory.db # SQLite + FTS5 (WAL mode)
35
- ~/.pi/agent/extensions/pi-memory-stone/
41
+ pi-memory-stone package source
36
42
  ├── src/
37
43
  │ ├── index.ts # Entry point: hooks, lifecycle
38
44
  │ ├── db/ # SQLite connection, migrations, CRUD
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-memory-stone",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "Global pi extension: preserves and retrieves useful memory across pi sessions",
6
6
  "license": "MIT",