@spences10/pi-omnisearch 0.0.2 → 0.0.4
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 +16 -0
- package/README.md +7 -5
- package/package.json +10 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @spences10/pi-omnisearch
|
|
2
2
|
|
|
3
|
+
## 0.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ca3d5e5: Harden redaction, document eval workflow, align Node
|
|
8
|
+
support, and clarify SQLite warning policy across packages.
|
|
9
|
+
- d8c5c5b: Replace hand-coded workspace dependency builds with pnpm
|
|
10
|
+
graph-backed self tasks and script consistency tests.
|
|
11
|
+
|
|
12
|
+
## 0.0.3
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 627f483: Standardize package READMEs with npm badges, Vite+/Vitest
|
|
17
|
+
messaging, installation, and development docs.
|
|
18
|
+
|
|
3
19
|
## 0.0.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
# @spences10/pi-omnisearch
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@spences10/pi-omnisearch)
|
|
4
|
+
[](https://viteplus.dev)
|
|
5
|
+
[](https://vitest.dev)
|
|
6
|
+
|
|
3
7
|
Pi extension that reminds the model to use `mcp-omnisearch` for
|
|
4
8
|
verified web research instead of relying on stale model memory or
|
|
5
|
-
search snippets.
|
|
9
|
+
search snippets. It does not start or duplicate the MCP server; it
|
|
10
|
+
only injects workflow guidance when Omnisearch tools are available.
|
|
6
11
|
|
|
7
|
-
|
|
8
|
-
duplicate its tools. `mcp-omnisearch` remains the source of truth;
|
|
9
|
-
this extension only injects workflow guidance when Omnisearch MCP
|
|
10
|
-
tools are available.
|
|
12
|
+
Maintained in the `my-pi` Vite+ workspace and tested with Vitest.
|
|
11
13
|
|
|
12
14
|
## Installation
|
|
13
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-omnisearch",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Pi extension that reminds the model to use mcp-omnisearch for verified web research",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@mariozechner/pi-coding-agent": "^0.
|
|
34
|
+
"@mariozechner/pi-coding-agent": "^0.72.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "^25.6.0",
|
|
38
|
-
"typescript": "^6.0.
|
|
38
|
+
"typescript": "^6.0.3",
|
|
39
39
|
"vitest": "^4.1.5"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|
|
42
|
-
"node": ">=
|
|
42
|
+
"node": ">=24.15.0"
|
|
43
43
|
},
|
|
44
44
|
"pi": {
|
|
45
45
|
"extensions": [
|
|
@@ -47,8 +47,11 @@
|
|
|
47
47
|
]
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
|
-
"build": "
|
|
51
|
-
"
|
|
52
|
-
"
|
|
50
|
+
"build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
|
|
51
|
+
"build:self": "tsc -p tsconfig.build.json",
|
|
52
|
+
"check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
|
|
53
|
+
"check:self": "tsc --noEmit -p tsconfig.json",
|
|
54
|
+
"test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
|
|
55
|
+
"test:self": "vitest run"
|
|
53
56
|
}
|
|
54
57
|
}
|