agent-memory-graph 0.2.1 → 0.4.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.
@@ -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)",
@@ -66,6 +71,11 @@
66
71
  }
67
72
  },
68
73
  "default": []
74
+ },
75
+ "promptInjection": {
76
+ "type": "boolean",
77
+ "description": "Automatically inject relevant graph context into every agent prompt",
78
+ "default": true
69
79
  }
70
80
  },
71
81
  "additionalProperties": false
@@ -74,7 +84,7 @@
74
84
  "openclawVersion": ">=2026.3.24",
75
85
  "entry": "dist/plugin/entry.js"
76
86
  },
77
- "version": "0.1.1",
87
+ "version": "0.4.0",
78
88
  "author": "KLSGG",
79
89
  "repository": "https://github.com/KLSGG/agent-memory-graph",
80
90
  "license": "MIT",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-memory-graph",
3
- "version": "0.2.1",
3
+ "version": "0.4.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
+ }