@equationalapplications/react-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 +31 -3
package/README.md CHANGED
@@ -1,10 +1,12 @@
1
1
  # @equationalapplications/react-llm-wiki
2
2
 
3
- React hooks and web utilities for @equationalapplications/core-llm-wiki, designed for web and Expo.
3
+ In-browser LLM memory for React web apps. Bring your own SQLite adapter (e.g., [`sql.js`](https://github.com/sql-js/sql.js) WebAssembly) for a complete, zero-server RAG experience.
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/%40equationalapplications%2Freact-llm-wiki?label=react)](https://www.npmjs.com/package/@equationalapplications/react-llm-wiki) [![npm downloads](https://img.shields.io/npm/dm/%40equationalapplications%2Freact-llm-wiki?label=downloads)](https://www.npmjs.com/package/@equationalapplications/react-llm-wiki)
6
6
  [![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/react/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
 
@@ -434,6 +436,16 @@ The flowchart shows:
434
436
  5. **Hybrid scoring** to blend semantic and keyword rankings
435
437
  6. **Vector caching** on full scans only; reads with `preFilterLimit` active skip cache population
436
438
 
439
+ ## Monorepo Ecosystem
440
+
441
+ | Package | Description |
442
+ |---------|-------------|
443
+ | [`@equationalapplications/core-llm-wiki`](https://www.npmjs.com/package/@equationalapplications/core-llm-wiki) | Pure TypeScript core — DB-agnostic, bring your own SQLite adapter |
444
+ | [`@equationalapplications/expo-llm-wiki`](https://www.npmjs.com/package/@equationalapplications/expo-llm-wiki) | Expo / React Native adapter with `expo-sqlite` |
445
+ | **`@equationalapplications/react-llm-wiki`** | React hooks + web adapter with `sql.js` |
446
+ | [`@equationalapplications/prisma-outbox`](https://www.npmjs.com/package/@equationalapplications/prisma-outbox) | Sync SQLite outbox events to Prisma in a transaction |
447
+ | [`@equationalapplications/core-llm-tools`](https://www.npmjs.com/package/@equationalapplications/core-llm-tools) | Platform-agnostic Gemini tool schemas + capability scope injector |
448
+
437
449
  ## License
438
450
 
439
451
  MIT
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@equationalapplications/react-llm-wiki",
3
- "version": "4.9.0",
4
- "description": "React hooks and web utilities for LLM Wiki Memory.",
3
+ "version": "4.11.0",
4
+ "description": "In-browser LLM memory for React web apps. Bring your own SQLite adapter (e.g., sql.js WebAssembly) for a complete, zero-server RAG experience.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
@@ -23,12 +23,40 @@
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
+ "react",
39
+ "react-hooks",
40
+ "web-ai",
41
+ "sql.js",
42
+ "wasm",
43
+ "in-browser"
44
+ ],
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "https://github.com/equationalapplications/expo-llm-wiki.git",
48
+ "directory": "packages/react"
49
+ },
50
+ "bugs": {
51
+ "url": "https://github.com/equationalapplications/expo-llm-wiki/issues"
52
+ },
53
+ "homepage": "https://github.com/equationalapplications/expo-llm-wiki/tree/main/packages/react#readme",
26
54
  "publishConfig": {
27
55
  "access": "public",
28
56
  "registry": "https://registry.npmjs.org"
29
57
  },
30
58
  "dependencies": {
31
- "@equationalapplications/core-llm-wiki": "4.9.0"
59
+ "@equationalapplications/core-llm-wiki": "4.11.0"
32
60
  },
33
61
  "engines": {
34
62
  "node": ">=20"