@spences10/pi-sqlite-tools 0.0.2 → 0.0.4
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/CHANGELOG.md +16 -0
- package/README.md +8 -5
- package/package.json +10 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @spences10/pi-sqlite-tools
|
|
2
2
|
|
|
3
|
+
## 0.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ca3d5e5: Harden redaction, document eval workflow, align Node
|
|
8
|
+
support, and clarify SQLite warning policy across packages.
|
|
9
|
+
- d8c5c5b: Replace hand-coded workspace dependency builds with pnpm
|
|
10
|
+
graph-backed self tasks and script consistency tests.
|
|
11
|
+
|
|
12
|
+
## 0.0.3
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 627f483: Standardize package READMEs with npm badges, Vite+/Vitest
|
|
17
|
+
messaging, installation, and development docs.
|
|
18
|
+
|
|
3
19
|
## 0.0.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
# @spences10/pi-sqlite-tools
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@spences10/pi-sqlite-tools)
|
|
4
|
+
[](https://viteplus.dev)
|
|
5
|
+
[](https://vitest.dev)
|
|
6
|
+
|
|
3
7
|
Pi extension that reminds the model to prefer `mcp-sqlite-tools` for
|
|
4
|
-
SQLite database work instead of raw `sqlite3` shell commands.
|
|
8
|
+
SQLite database work instead of raw `sqlite3` shell commands. It does
|
|
9
|
+
not start or duplicate the MCP server; it only injects workflow
|
|
10
|
+
guidance when SQLite MCP tools are available.
|
|
5
11
|
|
|
6
|
-
|
|
7
|
-
duplicate its tools. `mcp-sqlite-tools` remains the source of truth;
|
|
8
|
-
this extension only injects workflow guidance when SQLite MCP tools
|
|
9
|
-
are available.
|
|
12
|
+
Maintained in the `my-pi` Vite+ workspace and tested with Vitest.
|
|
10
13
|
|
|
11
14
|
## Installation
|
|
12
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-sqlite-tools",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Pi extension that reminds the model to prefer mcp-sqlite-tools for SQLite database work",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"database",
|
|
@@ -29,15 +29,15 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@mariozechner/pi-coding-agent": "^0.
|
|
32
|
+
"@mariozechner/pi-coding-agent": "^0.72.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/node": "^25.6.0",
|
|
36
|
-
"typescript": "^6.0.
|
|
36
|
+
"typescript": "^6.0.3",
|
|
37
37
|
"vitest": "^4.1.5"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
40
|
-
"node": ">=
|
|
40
|
+
"node": ">=24.15.0"
|
|
41
41
|
},
|
|
42
42
|
"pi": {
|
|
43
43
|
"extensions": [
|
|
@@ -45,8 +45,11 @@
|
|
|
45
45
|
]
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
|
-
"build": "
|
|
49
|
-
"
|
|
50
|
-
"
|
|
48
|
+
"build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
|
|
49
|
+
"build:self": "tsc -p tsconfig.build.json",
|
|
50
|
+
"check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
|
|
51
|
+
"check:self": "tsc --noEmit -p tsconfig.json",
|
|
52
|
+
"test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
|
|
53
|
+
"test:self": "vitest run"
|
|
51
54
|
}
|
|
52
55
|
}
|