@spences10/pi-omnisearch 0.0.13 → 0.0.15
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 +17 -0
- package/README.md +12 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @spences10/pi-omnisearch
|
|
2
2
|
|
|
3
|
+
## 0.0.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 70e2402: Preserve prompt guard exports while default extensions
|
|
8
|
+
retain tool gating and injected reminder behavior consistently.
|
|
9
|
+
- c425095: Generate shared README maintenance blocks deterministically
|
|
10
|
+
and validate package documentation links without removing
|
|
11
|
+
package-specific guidance.
|
|
12
|
+
|
|
13
|
+
## 0.0.14
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- df03901: Replace explicit any usages with precise shared, inferred,
|
|
18
|
+
and fixture types throughout the monorepo safely.
|
|
19
|
+
|
|
3
20
|
## 0.0.13
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @spences10/pi-omnisearch
|
|
2
2
|
|
|
3
|
+
<!-- package-readme:header:start -->
|
|
4
|
+
|
|
3
5
|
[](https://viteplus.dev)
|
|
4
6
|
[](https://vitest.dev)
|
|
5
7
|
[](https://www.npmjs.com/package/@spences10/pi-omnisearch)
|
|
@@ -7,6 +9,8 @@
|
|
|
7
9
|
|
|
8
10
|

|
|
9
11
|
|
|
12
|
+
<!-- package-readme:header:end -->
|
|
13
|
+
|
|
10
14
|
Make agents verify current facts before answering. `pi-omnisearch`
|
|
11
15
|
reminds the model to use the Omnisearch MCP tools for web search,
|
|
12
16
|
extraction, and cited synthesis instead of relying on stale memory or
|
|
@@ -14,10 +18,14 @@ snippets.
|
|
|
14
18
|
|
|
15
19
|
## Installation
|
|
16
20
|
|
|
21
|
+
<!-- package-readme:install:start -->
|
|
22
|
+
|
|
17
23
|
```bash
|
|
18
24
|
pi install npm:@spences10/pi-omnisearch
|
|
19
25
|
```
|
|
20
26
|
|
|
27
|
+
<!-- package-readme:install:end -->
|
|
28
|
+
|
|
21
29
|
Local development from this monorepo:
|
|
22
30
|
|
|
23
31
|
```bash
|
|
@@ -78,6 +86,8 @@ Omnisearch reminder.
|
|
|
78
86
|
|
|
79
87
|
## Development
|
|
80
88
|
|
|
89
|
+
<!-- package-readme:development:start commands="check,test,build" -->
|
|
90
|
+
|
|
81
91
|
Package scripts build transitive workspace dependencies first, then
|
|
82
92
|
run local tools through Vite+ with `vp exec`.
|
|
83
93
|
|
|
@@ -87,6 +97,8 @@ pnpm --filter @spences10/pi-omnisearch run test
|
|
|
87
97
|
pnpm --filter @spences10/pi-omnisearch run build
|
|
88
98
|
```
|
|
89
99
|
|
|
100
|
+
<!-- package-readme:development:end -->
|
|
101
|
+
|
|
90
102
|
## License
|
|
91
103
|
|
|
92
104
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-omnisearch",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "Verified web research workflow reminder that steers Pi agents to use mcp-omnisearch for current sourced answers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@earendil-works/pi-coding-agent": "0.
|
|
35
|
+
"@earendil-works/pi-coding-agent": "0.80.10",
|
|
36
36
|
"@types/node": "^25.8.0",
|
|
37
|
-
"typescript": "^
|
|
38
|
-
"vitest": "4.1.
|
|
37
|
+
"typescript": "^7.0.0",
|
|
38
|
+
"vitest": "4.1.10"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@earendil-works/pi-coding-agent": "*"
|