@equationalapplications/expo-llm-wiki 4.9.0 → 4.11.0

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 +14 -2
  2. package/package.json +32 -5
package/README.md CHANGED
@@ -1,10 +1,12 @@
1
1
  # @equationalapplications/expo-llm-wiki
2
2
 
3
- Expo/React Native adapter for @equationalapplications/core-llm-wiki, powered by `expo-sqlite`.
3
+ Local-first LLM memory for Expo and React Native. Combines the core semantic search and extraction engine with [`expo-sqlite`](https://docs.expo.dev/versions/latest/sdk/sqlite/) and ready-to-use React hooks.
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/%40equationalapplications%2Fexpo-llm-wiki?label=npm)](https://www.npmjs.com/package/@equationalapplications/expo-llm-wiki)
6
6
  [![npm downloads](https://img.shields.io/npm/dm/%40equationalapplications%2Fexpo-llm-wiki?label=downloads)](https://www.npmjs.com/package/@equationalapplications/expo-llm-wiki) [![TypeScript](https://img.shields.io/badge/TypeScript-5.x-3178C6?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
7
- [![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
7
+ [![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/equationalapplications/expo-llm-wiki/blob/main/packages/expo/LICENSE)
8
+
9
+ **[GitHub](https://github.com/equationalapplications/expo-llm-wiki)** · **[ScopeLab](https://equationalapplications.github.io/expo-llm-wiki/scopelab/)** · **[WikiDemo](https://equationalapplications.github.io/expo-llm-wiki/wiki-demo/)** · **[Changelog](https://github.com/equationalapplications/expo-llm-wiki/blob/main/CHANGELOG.md)** · **[Issues](https://github.com/equationalapplications/expo-llm-wiki/issues)**
8
10
 
9
11
  > Inspired by [Andrej Karpathy's LLM Wiki memory spec](https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f).
10
12
 
@@ -312,6 +314,16 @@ const memory = await wiki.read(
312
314
 
313
315
  For full details on `{{mustache}}` prompt templating and the strict distinction between global auto-runs and runtime overrides, see [Prompt Management & Overrides](https://github.com/equationalapplications/expo-llm-wiki/blob/main/packages/core/README.md#prompt-management--overrides) in `@equationalapplications/core-llm-wiki`.
314
316
 
317
+ ## Monorepo Ecosystem
318
+
319
+ | Package | Description |
320
+ |---------|-------------|
321
+ | [`@equationalapplications/core-llm-wiki`](https://www.npmjs.com/package/@equationalapplications/core-llm-wiki) | Pure TypeScript core — DB-agnostic, bring your own SQLite adapter |
322
+ | **`@equationalapplications/expo-llm-wiki`** | Expo / React Native adapter with `expo-sqlite` |
323
+ | [`@equationalapplications/react-llm-wiki`](https://www.npmjs.com/package/@equationalapplications/react-llm-wiki) | React hooks + web adapter with `sql.js` |
324
+ | [`@equationalapplications/prisma-outbox`](https://www.npmjs.com/package/@equationalapplications/prisma-outbox) | Sync SQLite outbox events to Prisma in a transaction |
325
+ | [`@equationalapplications/core-llm-tools`](https://www.npmjs.com/package/@equationalapplications/core-llm-tools) | Platform-agnostic Gemini tool schemas + capability scope injector |
326
+
315
327
  ## License
316
328
 
317
329
  MIT
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@equationalapplications/expo-llm-wiki",
3
- "version": "4.9.0",
4
- "description": "Expo/React Native adapter for @equationalapplications/core-llm-wiki.",
3
+ "version": "4.11.0",
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",
7
7
  "types": "dist/index.d.ts",
@@ -23,16 +23,43 @@
23
23
  "README.md"
24
24
  ],
25
25
  "license": "MIT",
26
+ "keywords": [
27
+ "llm-memory",
28
+ "ai-memory",
29
+ "rag",
30
+ "sqlite",
31
+ "vector-search",
32
+ "episodic-memory",
33
+ "semantic-memory",
34
+ "multi-agent",
35
+ "typescript",
36
+ "gemini",
37
+ "openai",
38
+ "expo",
39
+ "react-native",
40
+ "expo-sqlite",
41
+ "mobile-ai",
42
+ "local-first"
43
+ ],
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "https://github.com/equationalapplications/expo-llm-wiki.git",
47
+ "directory": "packages/expo"
48
+ },
49
+ "bugs": {
50
+ "url": "https://github.com/equationalapplications/expo-llm-wiki/issues"
51
+ },
52
+ "homepage": "https://github.com/equationalapplications/expo-llm-wiki/tree/main/packages/expo#readme",
26
53
  "publishConfig": {
27
54
  "access": "public",
28
55
  "registry": "https://registry.npmjs.org"
29
56
  },
30
57
  "dependencies": {
31
- "@equationalapplications/core-llm-wiki": "4.9.0",
32
- "@equationalapplications/react-llm-wiki": "4.9.0"
58
+ "@equationalapplications/core-llm-wiki": "4.11.0",
59
+ "@equationalapplications/react-llm-wiki": "4.11.0"
33
60
  },
34
61
  "peerDependencies": {
35
- "expo-sqlite": "^14.0.0 || ^15.0.0 || ^55.0.0",
62
+ "expo-sqlite": "^14.0.0 || ^15.0.0 || ^55.0.0 || ^56.0.0",
36
63
  "react": ">=17"
37
64
  },
38
65
  "devDependencies": {