@spences10/pi-omnisearch 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 +18 -2
- package/README.md +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,27 @@
|
|
|
1
1
|
# @spences10/pi-omnisearch
|
|
2
2
|
|
|
3
|
+
## 0.0.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2f62e0a: Remove personal wording from public docs and describe my-pi
|
|
8
|
+
as opinionated, reusable tooling instead.
|
|
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
|
|
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/README.md
CHANGED
|
@@ -37,7 +37,7 @@ The extension injects a system reminder telling the model to use
|
|
|
37
37
|
- compare packages, APIs, or tools
|
|
38
38
|
- extract and summarize web content
|
|
39
39
|
|
|
40
|
-
It encourages the verified research workflow from
|
|
40
|
+
It encourages the verified research workflow from the ecosystem guide
|
|
41
41
|
skill:
|
|
42
42
|
|
|
43
43
|
- use `web_search` for discovery
|
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_omnisearch_prompt(event: Pick<BeforeAgentStartEvent, 'systemPromptOptions'>): boolean;
|
|
3
3
|
export default function omnisearch(pi: ExtensionAPI): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-omnisearch",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Pi extension that reminds the model to use mcp-omnisearch for verified web research",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@
|
|
34
|
+
"@earendil-works/pi-coding-agent": "^0.74.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@types/node": "^25.
|
|
37
|
+
"@types/node": "^25.8.0",
|
|
38
38
|
"typescript": "^6.0.3",
|
|
39
|
-
"vitest": "^4.1.
|
|
39
|
+
"vitest": "^4.1.6"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=24.15.0"
|