@spences10/pi-omnisearch 0.0.9 → 0.0.11
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 +5 -3
- package/package.json +8 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @spences10/pi-omnisearch
|
|
2
2
|
|
|
3
|
+
## 0.0.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a040ea3: Standardize package scripts through Vite+ and refresh
|
|
8
|
+
README badges/development guidance across published packages.
|
|
9
|
+
|
|
10
|
+
## 0.0.10
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- ffea37e: Standardize shared dependency versions through pnpm catalog
|
|
15
|
+
and align package dev dependencies for CI.
|
|
16
|
+
|
|
3
17
|
## 0.0.9
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
# @spences10/pi-omnisearch
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@spences10/pi-omnisearch)
|
|
4
3
|
[](https://viteplus.dev)
|
|
5
4
|
[](https://vitest.dev)
|
|
5
|
+
[](https://www.npmjs.com/package/@spences10/pi-omnisearch)
|
|
6
|
+
[](https://www.npmjs.com/package/@spences10/pi-omnisearch)
|
|
6
7
|
|
|
7
8
|
Pi extension that reminds the model to use `mcp-omnisearch` for
|
|
8
9
|
verified web research instead of relying on stale model memory or
|
|
9
10
|
search snippets. It does not start or duplicate the MCP server; it
|
|
10
11
|
only injects workflow guidance when Omnisearch tools are available.
|
|
11
12
|
|
|
12
|
-
Maintained in the `my-pi` Vite+ workspace and tested with Vitest.
|
|
13
|
-
|
|
14
13
|
## Installation
|
|
15
14
|
|
|
16
15
|
```bash
|
|
@@ -77,6 +76,9 @@ Omnisearch reminder.
|
|
|
77
76
|
|
|
78
77
|
## Development
|
|
79
78
|
|
|
79
|
+
Package scripts build transitive workspace dependencies first, then
|
|
80
|
+
run local tools through Vite+ with `vp exec`.
|
|
81
|
+
|
|
80
82
|
```bash
|
|
81
83
|
pnpm --filter @spences10/pi-omnisearch run check
|
|
82
84
|
pnpm --filter @spences10/pi-omnisearch run test
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-omnisearch",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "Pi extension that reminds the model to use mcp-omnisearch for verified web research",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -32,9 +32,10 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
+
"@earendil-works/pi-coding-agent": "^0.74.1",
|
|
35
36
|
"@types/node": "^25.8.0",
|
|
36
37
|
"typescript": "^6.0.3",
|
|
37
|
-
"vitest": "
|
|
38
|
+
"vitest": "4.1.5"
|
|
38
39
|
},
|
|
39
40
|
"peerDependencies": {
|
|
40
41
|
"@earendil-works/pi-coding-agent": "*"
|
|
@@ -50,10 +51,12 @@
|
|
|
50
51
|
},
|
|
51
52
|
"scripts": {
|
|
52
53
|
"build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
|
|
53
|
-
"build:self": "tsc -p tsconfig.build.json",
|
|
54
|
+
"build:self": "vp exec tsc -p tsconfig.build.json",
|
|
54
55
|
"check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
|
|
55
|
-
"check:self": "tsc --noEmit -p tsconfig.json",
|
|
56
|
+
"check:self": "vp exec tsc --noEmit -p tsconfig.json",
|
|
56
57
|
"test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
|
|
57
|
-
"test:self": "vitest run"
|
|
58
|
+
"test:self": "vp exec vitest run",
|
|
59
|
+
"coverage:self": "vp exec vitest run --coverage",
|
|
60
|
+
"coverage": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run coverage:self"
|
|
58
61
|
}
|
|
59
62
|
}
|