@spences10/pi-context 0.0.2 → 0.0.3
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 +7 -0
- package/package.json +10 -7
package/README.md
CHANGED
|
@@ -4,6 +4,13 @@ Local SQLite context sidecar for Pi. Oversized tool output is stored
|
|
|
4
4
|
in an FTS5-backed database and replaced with a compact receipt that
|
|
5
5
|
the agent can search or retrieve later.
|
|
6
6
|
|
|
7
|
+
## Runtime
|
|
8
|
+
|
|
9
|
+
Requires Node.js `>=24.15.0` for native `node:sqlite` plus FTS5. The
|
|
10
|
+
`my-pi` CLI suppresses Node's expected `node:sqlite`
|
|
11
|
+
`ExperimentalWarning`; standalone package consumers own their process
|
|
12
|
+
warning policy until Node marks `node:sqlite` stable.
|
|
13
|
+
|
|
7
14
|
## Local development
|
|
8
15
|
|
|
9
16
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-context",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Pi extension for local SQLite context sidecar storage and retrieval of large tool output",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"context",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@mariozechner/pi-coding-agent": "^0.72.
|
|
38
|
+
"@mariozechner/pi-coding-agent": "^0.72.1",
|
|
39
39
|
"typebox": "^1.1.37",
|
|
40
|
-
"@spences10/pi-redact": "0.0.
|
|
40
|
+
"@spences10/pi-redact": "0.0.4"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/node": "^25.6.0",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"vitest": "^4.1.5"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
|
-
"node": ">=
|
|
48
|
+
"node": ">=24.15.0"
|
|
49
49
|
},
|
|
50
50
|
"pi": {
|
|
51
51
|
"extensions": [
|
|
@@ -53,8 +53,11 @@
|
|
|
53
53
|
]
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
|
-
"build": "pnpm --filter
|
|
57
|
-
"
|
|
58
|
-
"
|
|
56
|
+
"build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
|
|
57
|
+
"build:self": "tsc -p tsconfig.build.json",
|
|
58
|
+
"check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
|
|
59
|
+
"check:self": "tsc --noEmit",
|
|
60
|
+
"test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
|
|
61
|
+
"test:self": "vitest run"
|
|
59
62
|
}
|
|
60
63
|
}
|