agent-memory-graph 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.
Files changed (2) hide show
  1. package/README.md +11 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -57,6 +57,14 @@ You: "How is Viktor connected to Rust?"
57
57
 
58
58
  ---
59
59
 
60
+ ## 📋 Requirements
61
+
62
+ - **Node.js 18–22** (recommended) — `better-sqlite3` has prebuilt binaries
63
+ - **Node.js 24** — works but requires build tools (`gcc`, `make`, `python3`) for native compilation
64
+ - **Any OpenAI-compatible LLM** — for entity extraction (optional for manual operations)
65
+
66
+ ---
67
+
60
68
  ## 🚀 Quick Start
61
69
 
62
70
  ```bash
@@ -123,10 +131,12 @@ The killer feature: install as an OpenClaw plugin and your agent **automatically
123
131
  ### Install
124
132
 
125
133
  ```bash
126
- openclaw plugins install agent-memory-graph
134
+ openclaw plugins install agent-memory-graph --dangerously-force-unsafe-install
127
135
  openclaw gateway restart
128
136
  ```
129
137
 
138
+ > ⚠️ The `--dangerously-force-unsafe-install` flag is required because the plugin reads environment variables (API keys) and makes network calls (to your LLM provider). This is expected behavior for LLM-powered extraction.
139
+
130
140
  ### What happens next
131
141
 
132
142
  1. **Every message** (>20 chars) is auto-ingested into the knowledge graph
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-memory-graph",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
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",
@@ -87,4 +87,4 @@
87
87
  "bugs": {
88
88
  "url": "https://github.com/KLSGG/agent-memory-graph/issues"
89
89
  }
90
- }
90
+ }