@spark-agents/engram 0.1.0 → 0.1.2

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 +1 -1
  2. package/package.json +18 -4
package/README.md CHANGED
@@ -75,7 +75,7 @@ One SQLite file per agent. No Python. No sidecar process. No external database.
75
75
  ## Install
76
76
 
77
77
  ```bash
78
- cd ~/.openclaw/extensions && npm install @sparkagents/engram
78
+ cd ~/.openclaw/extensions && npm install @spark-agents/engram
79
79
  ```
80
80
 
81
81
  ```yaml
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-agents/engram",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Multimodal memory for OpenClaw agents — powered by Gemini Embedding-2. Hybrid search (BM25 + vectors), cross-encoder reranking, image/audio/PDF memory.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,8 +16,19 @@
16
16
  "import": "./dist/index.js"
17
17
  }
18
18
  },
19
- "files": ["dist", "openclaw.plugin.json"],
20
- "keywords": ["openclaw", "plugin", "memory", "gemini", "multimodal", "ai-agent", "hybrid-search"],
19
+ "files": [
20
+ "dist",
21
+ "openclaw.plugin.json"
22
+ ],
23
+ "keywords": [
24
+ "openclaw",
25
+ "plugin",
26
+ "memory",
27
+ "gemini",
28
+ "multimodal",
29
+ "ai-agent",
30
+ "hybrid-search"
31
+ ],
21
32
  "scripts": {
22
33
  "build": "tsc",
23
34
  "prepublishOnly": "npm run build",
@@ -35,5 +46,8 @@
35
46
  "@types/node": "^22.0.0",
36
47
  "typescript": "^5.7.0",
37
48
  "vitest": "^3.0.0"
49
+ },
50
+ "openclaw": {
51
+ "extensions": ["./dist/index.js"]
38
52
  }
39
- }
53
+ }