@spences10/pi-omnisearch 0.0.6 → 0.0.8
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 +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @spences10/pi-omnisearch
|
|
2
2
|
|
|
3
|
+
## 0.0.8
|
|
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.7
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 2f62e0a: Remove personal wording from public docs and describe my-pi
|
|
15
|
+
as opinionated, reusable tooling instead.
|
|
16
|
+
|
|
3
17
|
## 0.0.6
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-omnisearch",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "Pi extension that reminds the model to use mcp-omnisearch for verified web research",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"default": "./dist/index.js"
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
|
-
"dependencies": {
|
|
34
|
-
"@earendil-works/pi-coding-agent": "^0.74.0"
|
|
35
|
-
},
|
|
36
33
|
"devDependencies": {
|
|
37
|
-
"@types/node": "^25.
|
|
34
|
+
"@types/node": "^25.8.0",
|
|
38
35
|
"typescript": "^6.0.3",
|
|
39
|
-
"vitest": "^4.1.
|
|
36
|
+
"vitest": "^4.1.6"
|
|
37
|
+
},
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"@earendil-works/pi-coding-agent": "*"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=24.15.0"
|