@equationalapplications/expo-llm-wiki 4.14.1 → 4.15.1

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 +8 -7
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -328,13 +328,14 @@ For full details on `{{mustache}}` prompt templating and the strict distinction
328
328
 
329
329
  ## Monorepo Ecosystem
330
330
 
331
- | Package | Description |
332
- |---------|-------------|
333
- | [`@equationalapplications/core-llm-wiki`](https://www.npmjs.com/package/@equationalapplications/core-llm-wiki) | Pure TypeScript core — DB-agnostic, bring your own SQLite adapter |
334
- | **`@equationalapplications/expo-llm-wiki`** | Expo / React Native adapter with `expo-sqlite` |
335
- | [`@equationalapplications/react-llm-wiki`](https://www.npmjs.com/package/@equationalapplications/react-llm-wiki) | React hooks + web adapter with `sql.js` |
336
- | [`@equationalapplications/prisma-outbox`](https://www.npmjs.com/package/@equationalapplications/prisma-outbox) | Sync SQLite outbox events to Prisma in a transaction |
337
- | [`@equationalapplications/core-llm-tools`](https://www.npmjs.com/package/@equationalapplications/core-llm-tools) | Platform-agnostic Gemini tool schemas + capability scope injector |
331
+ | Package | Purpose |
332
+ | ----- | ----- |
333
+ | [@equationalapplications/core-llm-wiki](https://github.com/equationalapplications/expo-llm-wiki/blob/main/packages/core/README.md) | Persistent episodic memory |
334
+ | **@equationalapplications/expo-llm-wiki** | Persistent episodic memory for Expo/React Native |
335
+ | [@equationalapplications/react-llm-wiki](https://github.com/equationalapplications/expo-llm-wiki/blob/main/packages/react/README.md) | Persistent episodic memory for Web |
336
+ | [@equationalapplications/prisma-outbox](https://github.com/equationalapplications/expo-llm-wiki/blob/main/packages/prisma-outbox/README.md) | Sync SQLite outbox events to Prisma |
337
+ | [@equationalapplications/core-llm-tools](https://github.com/equationalapplications/expo-llm-wiki/blob/main/packages/core-llm-tools/README.md) | Gemini tool schemas and capability injector |
338
+ | [@equationalapplications/core-okf](https://github.com/equationalapplications/expo-llm-wiki/blob/main/packages/okf/README.md) | Zero-dependency Open Knowledge Format (OKF) v0.1 primitives — parse and produce interoperable knowledge bundles. |
338
339
 
339
340
  ## License
340
341
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equationalapplications/expo-llm-wiki",
3
- "version": "4.14.1",
3
+ "version": "4.15.1",
4
4
  "description": "Local-first LLM memory for Expo and React Native. Combines the core semantic search and extraction engine with expo-sqlite and ready-to-use React hooks.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -55,8 +55,8 @@
55
55
  "registry": "https://registry.npmjs.org"
56
56
  },
57
57
  "dependencies": {
58
- "@equationalapplications/core-llm-wiki": "4.14.1",
59
- "@equationalapplications/react-llm-wiki": "4.14.1"
58
+ "@equationalapplications/core-llm-wiki": "4.15.1",
59
+ "@equationalapplications/react-llm-wiki": "4.15.1"
60
60
  },
61
61
  "peerDependencies": {
62
62
  "expo-sqlite": "^14.0.0 || ^15.0.0 || ^55.0.0 || ^56.0.0",