@spark-agents/engram 0.1.0 → 0.1.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.
- package/README.md +1 -1
- package/package.json +15 -4
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spark-agents/engram",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
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": [
|
|
20
|
-
|
|
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",
|
|
@@ -36,4 +47,4 @@
|
|
|
36
47
|
"typescript": "^5.7.0",
|
|
37
48
|
"vitest": "^3.0.0"
|
|
38
49
|
}
|
|
39
|
-
}
|
|
50
|
+
}
|