@spences10/pi-sqlite-tools 0.0.5 → 0.0.7

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,11 +1,27 @@
1
1
  # @spences10/pi-sqlite-tools
2
2
 
3
+ ## 0.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 8944bf8: Move Pi core runtime packages to peer dependencies for
8
+ safer external extension installs.
9
+
10
+ ## 0.0.6
11
+
12
+ ### Patch Changes
13
+
14
+ - dacf04d: Simplify skills TUI navigation, split importable skill
15
+ actions, and clarify profile policy/rule wording.
16
+ - 44136fe: Migrate Pi core dependencies from Mario Zechner scope to
17
+ Earendil Works package scope.
18
+
3
19
  ## 0.0.5
4
20
 
5
21
  ### Patch Changes
6
22
 
7
- - 9bbacf1: Improve pi-context chunk retrieval UX with first chunk receipts,
8
- aliases, and helpful miss messages.
23
+ - 9bbacf1: Improve pi-context chunk retrieval UX with first chunk
24
+ receipts, aliases, and helpful miss messages.
9
25
 
10
26
  ## 0.0.4
11
27
 
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import type { BeforeAgentStartEvent, ExtensionAPI } from '@mariozechner/pi-coding-agent';
1
+ import type { BeforeAgentStartEvent, ExtensionAPI } from '@earendil-works/pi-coding-agent';
2
2
  export declare function should_inject_sqlite_tools_prompt(event: Pick<BeforeAgentStartEvent, 'systemPromptOptions'>): boolean;
3
3
  export default function sqlite_tools(pi: ExtensionAPI): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spences10/pi-sqlite-tools",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "Pi extension that reminds the model to prefer mcp-sqlite-tools for SQLite database work",
5
5
  "keywords": [
6
6
  "database",
@@ -28,13 +28,13 @@
28
28
  "default": "./dist/index.js"
29
29
  }
30
30
  },
31
- "dependencies": {
32
- "@mariozechner/pi-coding-agent": "^0.73.0"
33
- },
34
31
  "devDependencies": {
35
- "@types/node": "^25.6.0",
32
+ "@types/node": "^25.8.0",
36
33
  "typescript": "^6.0.3",
37
- "vitest": "^4.1.5"
34
+ "vitest": "^4.1.6"
35
+ },
36
+ "peerDependencies": {
37
+ "@earendil-works/pi-coding-agent": "*"
38
38
  },
39
39
  "engines": {
40
40
  "node": ">=24.15.0"