@remnic/plugin-pi 9.3.676 → 9.3.678

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -5,6 +5,8 @@ Remnic memory and context for [Pi Coding Agent](https://pi.dev).
5
5
  This package is the first-class Remnic extension for Pi. It uses Pi's extension hooks directly, so Remnic can recall context before a model call, observe useful session events after the turn, expose Remnic MCP tools inside Pi, and coordinate Pi compaction with Remnic's long-context memory archive.
6
6
 
7
7
  > **Oh My Pi (omp).** The [omp](https://omp.sh) fork preserves Pi's extension API, so this package's runtime extension runs there too. Install it with `remnic connectors install omp` (writes to `~/.omp/agent/extensions/remnic/`) via the `OmpMemoryExtensionPublisher`. See [docs/integration/omp.md](../../docs/integration/omp.md).
8
+ >
9
+ > ⚠️ **omp loader bug:** current omp builds (≥ v16.3.5 confirmed) cannot resolve this package's npm dependencies from the extension's `node_modules`, so the installed extension fails to load every session (`Cannot find module '@sinclair/typebox'`). Pre-bundle it with `bun build` as described in [docs/integration/omp.md → Known issue](../../docs/integration/omp.md#known-issue-omp-cannot-resolve-the-extensions-npm-dependencies).
8
10
 
9
11
  ## What It Does
10
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnic/plugin-pi",
3
- "version": "9.3.676",
3
+ "version": "9.3.678",
4
4
  "description": "Remnic memory extension for Pi Coding Agent",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "dependencies": {
44
44
  "@sinclair/typebox": "^0.34.0",
45
- "@remnic/core": "^9.3.676"
45
+ "@remnic/core": "^9.3.678"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "@earendil-works/pi-coding-agent": "*"