@spences10/pi-sqlite-tools 0.0.9 → 0.0.11
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 +14 -0
- package/README.md +9 -7
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @spences10/pi-sqlite-tools
|
|
2
2
|
|
|
3
|
+
## 0.0.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 599b355: Improve package README openings and descriptions to emphasize user
|
|
8
|
+
benefits and clarify pi-skills/pi-recall positioning.
|
|
9
|
+
|
|
10
|
+
## 0.0.10
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- a040ea3: Standardize package scripts through Vite+ and refresh
|
|
15
|
+
README badges/development guidance across published packages.
|
|
16
|
+
|
|
3
17
|
## 0.0.9
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
# @spences10/pi-sqlite-tools
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@spences10/pi-sqlite-tools)
|
|
4
3
|
[](https://viteplus.dev)
|
|
5
4
|
[](https://vitest.dev)
|
|
5
|
+
[](https://www.npmjs.com/package/@spences10/pi-sqlite-tools)
|
|
6
|
+
[](https://www.npmjs.com/package/@spences10/pi-sqlite-tools)
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
Maintained in the `my-pi` Vite+ workspace and tested with Vitest.
|
|
8
|
+
Make SQLite work safer than ad-hoc shell commands. `pi-sqlite-tools`
|
|
9
|
+
reminds agents to use the gated `mcp-sqlite-tools` workflow for
|
|
10
|
+
inspecting, querying, backing up, and modifying databases instead of
|
|
11
|
+
raw `sqlite3` scripts.
|
|
13
12
|
|
|
14
13
|
## Installation
|
|
15
14
|
|
|
@@ -75,6 +74,9 @@ SQLite tools reminder.
|
|
|
75
74
|
|
|
76
75
|
## Development
|
|
77
76
|
|
|
77
|
+
Package scripts build transitive workspace dependencies first, then
|
|
78
|
+
run local tools through Vite+ with `vp exec`.
|
|
79
|
+
|
|
78
80
|
```bash
|
|
79
81
|
pnpm --filter @spences10/pi-sqlite-tools run check
|
|
80
82
|
pnpm --filter @spences10/pi-sqlite-tools run test
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-sqlite-tools",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.11",
|
|
4
|
+
"description": "SQLite safety workflow reminder that steers Pi agents to use gated mcp-sqlite-tools instead of raw sqlite3",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"database",
|
|
7
7
|
"mcp",
|
|
@@ -49,12 +49,12 @@
|
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
|
|
52
|
-
"build:self": "tsc -p tsconfig.build.json",
|
|
52
|
+
"build:self": "vp exec tsc -p tsconfig.build.json",
|
|
53
53
|
"check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
|
|
54
|
-
"check:self": "tsc --noEmit -p tsconfig.json",
|
|
54
|
+
"check:self": "vp exec tsc --noEmit -p tsconfig.json",
|
|
55
55
|
"test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
|
|
56
|
-
"test:self": "vitest run",
|
|
57
|
-
"coverage:self": "vitest run --coverage",
|
|
56
|
+
"test:self": "vp exec vitest run",
|
|
57
|
+
"coverage:self": "vp exec vitest run --coverage",
|
|
58
58
|
"coverage": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run coverage:self"
|
|
59
59
|
}
|
|
60
60
|
}
|