@spences10/pi-sqlite-tools 0.0.5 → 0.0.6
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 +11 -2
- package/dist/index.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
# @spences10/pi-sqlite-tools
|
|
2
2
|
|
|
3
|
+
## 0.0.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dacf04d: Simplify skills TUI navigation, split importable skill
|
|
8
|
+
actions, and clarify profile policy/rule wording.
|
|
9
|
+
- 44136fe: Migrate Pi core dependencies from Mario Zechner scope to
|
|
10
|
+
Earendil Works package scope.
|
|
11
|
+
|
|
3
12
|
## 0.0.5
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
6
15
|
|
|
7
|
-
- 9bbacf1: Improve pi-context chunk retrieval UX with first chunk
|
|
8
|
-
aliases, and helpful miss messages.
|
|
16
|
+
- 9bbacf1: Improve pi-context chunk retrieval UX with first chunk
|
|
17
|
+
receipts, aliases, and helpful miss messages.
|
|
9
18
|
|
|
10
19
|
## 0.0.4
|
|
11
20
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import type { BeforeAgentStartEvent, ExtensionAPI } from '@
|
|
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.
|
|
3
|
+
"version": "0.0.6",
|
|
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,10 +29,10 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@
|
|
32
|
+
"@earendil-works/pi-coding-agent": "^0.74.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@types/node": "^25.6.
|
|
35
|
+
"@types/node": "^25.6.1",
|
|
36
36
|
"typescript": "^6.0.3",
|
|
37
37
|
"vitest": "^4.1.5"
|
|
38
38
|
},
|