@spences10/pi-omnisearch 0.0.10 → 0.0.12

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # @spences10/pi-omnisearch
2
2
 
3
+ ## 0.0.12
4
+
5
+ ### Patch Changes
6
+
7
+ - 599b355: Improve package README openings and descriptions to emphasize user
8
+ benefits and clarify pi-skills/pi-recall positioning.
9
+
10
+ ## 0.0.11
11
+
12
+ ### Patch Changes
13
+
14
+ - a040ea3: Standardize package scripts through Vite+ and refresh
15
+ README badges/development guidance across published packages.
16
+
3
17
  ## 0.0.10
4
18
 
5
19
  ### Patch Changes
package/README.md CHANGED
@@ -1,15 +1,14 @@
1
1
  # @spences10/pi-omnisearch
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/@spences10/pi-omnisearch?color=CB3837&logo=npm)](https://www.npmjs.com/package/@spences10/pi-omnisearch)
4
3
  [![built with Vite+](https://img.shields.io/badge/built%20with-Vite+-646CFF?logo=vite&logoColor=white)](https://viteplus.dev)
5
4
  [![tested with Vitest](https://img.shields.io/badge/tested%20with-Vitest-6E9F18?logo=vitest&logoColor=white)](https://vitest.dev)
5
+ [![npm version](https://img.shields.io/npm/v/@spences10/pi-omnisearch?color=CB3837&logo=npm&logoColor=white)](https://www.npmjs.com/package/@spences10/pi-omnisearch)
6
+ [![license](https://img.shields.io/npm/l/@spences10/pi-omnisearch)](https://www.npmjs.com/package/@spences10/pi-omnisearch)
6
7
 
7
- Pi extension that reminds the model to use `mcp-omnisearch` for
8
- verified web research instead of relying on stale model memory or
9
- search snippets. It does not start or duplicate the MCP server; it
10
- only injects workflow guidance when Omnisearch tools are available.
11
-
12
- Maintained in the `my-pi` Vite+ workspace and tested with Vitest.
8
+ Make agents verify current facts before answering. `pi-omnisearch`
9
+ reminds the model to use the Omnisearch MCP tools for web search,
10
+ extraction, and cited synthesis instead of relying on stale memory or
11
+ snippets.
13
12
 
14
13
  ## Installation
15
14
 
@@ -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,7 +1,7 @@
1
1
  {
2
2
  "name": "@spences10/pi-omnisearch",
3
- "version": "0.0.10",
4
- "description": "Pi extension that reminds the model to use mcp-omnisearch for verified web research",
3
+ "version": "0.0.12",
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",
7
7
  "omnisearch",
@@ -51,12 +51,12 @@
51
51
  },
52
52
  "scripts": {
53
53
  "build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
54
- "build:self": "tsc -p tsconfig.build.json",
54
+ "build:self": "vp exec tsc -p tsconfig.build.json",
55
55
  "check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
56
- "check:self": "tsc --noEmit -p tsconfig.json",
56
+ "check:self": "vp exec tsc --noEmit -p tsconfig.json",
57
57
  "test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
58
- "test:self": "vitest run",
59
- "coverage:self": "vitest run --coverage",
58
+ "test:self": "vp exec vitest run",
59
+ "coverage:self": "vp exec vitest run --coverage",
60
60
  "coverage": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run coverage:self"
61
61
  }
62
62
  }