@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 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
- [![npm version](https://img.shields.io/npm/v/@spences10/pi-sqlite-tools?color=CB3837&logo=npm)](https://www.npmjs.com/package/@spences10/pi-sqlite-tools)
4
3
  [![built with Vite+](https://img.shields.io/badge/built%20with-Vite+-646CFF?logo=vite&logoColor=white)](https://viteplus.dev)
5
4
  [![tested with Vitest](https://img.shields.io/badge/tested%20with-Vitest-6E9F18?logo=vitest&logoColor=white)](https://vitest.dev)
5
+ [![npm version](https://img.shields.io/npm/v/@spences10/pi-sqlite-tools?color=CB3837&logo=npm&logoColor=white)](https://www.npmjs.com/package/@spences10/pi-sqlite-tools)
6
+ [![license](https://img.shields.io/npm/l/@spences10/pi-sqlite-tools)](https://www.npmjs.com/package/@spences10/pi-sqlite-tools)
6
7
 
7
- Pi extension that reminds the model to prefer `mcp-sqlite-tools` for
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.
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.9",
4
- "description": "Pi extension that reminds the model to prefer mcp-sqlite-tools for SQLite database work",
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
  }