agent-memory-graph 0.2.1 → 0.3.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.
- package/dist/plugin/entry.js +4416 -186
- package/openclaw.plugin.json +5 -0
- package/package.json +2 -2
package/openclaw.plugin.json
CHANGED
|
@@ -27,6 +27,11 @@
|
|
|
27
27
|
"description": "Automatically extract entities from every inbound message",
|
|
28
28
|
"default": true
|
|
29
29
|
},
|
|
30
|
+
"sessionSummary": {
|
|
31
|
+
"type": "boolean",
|
|
32
|
+
"description": "Automatically summarize and ingest key actions at end of each session",
|
|
33
|
+
"default": true
|
|
34
|
+
},
|
|
30
35
|
"minConfidence": {
|
|
31
36
|
"type": "number",
|
|
32
37
|
"description": "Minimum confidence threshold for extracted entities (0.0-1.0)",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-memory-graph",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Domain-agnostic knowledge graph memory for AI agents. Zero-config, local-first, SQLite-powered. Works as OpenClaw skill (CLI) or plugin (auto-hook).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -91,4 +91,4 @@
|
|
|
91
91
|
"bugs": {
|
|
92
92
|
"url": "https://github.com/KLSGG/agent-memory-graph/issues"
|
|
93
93
|
}
|
|
94
|
-
}
|
|
94
|
+
}
|