openclaw-amem 1.1.1 → 1.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.
- package/README.md +10 -0
- package/openclaw.plugin.json +40 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,6 +104,16 @@ Once installed, the plugin exposes five tools to the agent:
|
|
|
104
104
|
| `memory_consolidate` | Manually trigger category-based semantic dedup + link cascading. |
|
|
105
105
|
| `memory_quality_scan` | Scan for low-quality/expired/conflicting notes → Obsidian-compatible review batch file. |
|
|
106
106
|
|
|
107
|
+
## Security & data flow
|
|
108
|
+
|
|
109
|
+
A memory plugin's job is to read configuration from the environment and send memory data to backends **you** control, so registry static scanners flag its `env` + `network` pattern (e.g. ClawHub's `suspicious.env_credential_access`). This is structurally expected for any configurable memory/LLM plugin — the audit outcome is **advisory (`Review`), not `Malicious`**, and VirusTotal reports the bundle clean.
|
|
110
|
+
|
|
111
|
+
What it actually does — all of it declared in [`openclaw.plugin.json`](openclaw.plugin.json):
|
|
112
|
+
|
|
113
|
+
- **Environment variables it reads** (its configuration surface, supplied by you): `AMEM_LLM_API_KEY`, `AMEM_LLM_BASE_URL`, `AMEM_LLM_MODEL`, `AMEM_COLLECTION`, `AMEM_DATA_DIR`, `AMEM_EVO_COUNTER_PATH`, `AMEM_REVIEW_DIR`, `AMEM_PROMPT_LOCALE`. No credential is bundled, hardcoded, or logged.
|
|
114
|
+
- **Network destinations**: only your **local Qdrant** (`http://localhost:6333`) and your configured **LLM endpoint** (Anthropic by default, or `AMEM_LLM_BASE_URL`). It sends memory text/embeddings there to store and evolve notes — its stated purpose. It does not phone home.
|
|
115
|
+
- **Conversation content** is processed for memory only when you set `hooks.allowConversationAccess: true`. Keep Qdrant and review-output paths scoped to locations you control.
|
|
116
|
+
|
|
107
117
|
## Development
|
|
108
118
|
|
|
109
119
|
This package is part of the **[amem monorepo](../../)**. From the repo root:
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "openclaw-amem",
|
|
3
3
|
"name": "Memory (A-MEM v2)",
|
|
4
4
|
"description": "A-MEM agentic memory backend for OpenClaw — Qdrant + Transformers.js, no Python required. Note construction, link generation, memory evolution.",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.2",
|
|
6
6
|
"kind": "memory",
|
|
7
7
|
"openclaw": {
|
|
8
8
|
"compat": {
|
|
@@ -21,6 +21,45 @@
|
|
|
21
21
|
"memory_quality_scan"
|
|
22
22
|
]
|
|
23
23
|
},
|
|
24
|
+
"setup": {
|
|
25
|
+
"providers": [
|
|
26
|
+
{
|
|
27
|
+
"id": "amem",
|
|
28
|
+
"envVars": [
|
|
29
|
+
"AMEM_LLM_API_KEY",
|
|
30
|
+
"AMEM_LLM_BASE_URL",
|
|
31
|
+
"AMEM_LLM_MODEL",
|
|
32
|
+
"AMEM_COLLECTION",
|
|
33
|
+
"AMEM_DATA_DIR",
|
|
34
|
+
"AMEM_EVO_COUNTER_PATH",
|
|
35
|
+
"AMEM_REVIEW_DIR",
|
|
36
|
+
"AMEM_PROMPT_LOCALE"
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"providerEndpoints": [
|
|
42
|
+
{
|
|
43
|
+
"endpointClass": "qdrant",
|
|
44
|
+
"hosts": [
|
|
45
|
+
"localhost"
|
|
46
|
+
],
|
|
47
|
+
"baseUrls": [
|
|
48
|
+
"http://localhost:6333"
|
|
49
|
+
],
|
|
50
|
+
"note": "Local Qdrant vector store for memory embeddings."
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"endpointClass": "anthropic",
|
|
54
|
+
"hosts": [
|
|
55
|
+
"api.anthropic.com"
|
|
56
|
+
],
|
|
57
|
+
"hostSuffixes": [
|
|
58
|
+
".anthropic.com"
|
|
59
|
+
],
|
|
60
|
+
"note": "LLM for note construction / link generation / evolution; override the base URL via AMEM_LLM_BASE_URL."
|
|
61
|
+
}
|
|
62
|
+
],
|
|
24
63
|
"configSchema": {
|
|
25
64
|
"type": "object",
|
|
26
65
|
"additionalProperties": false,
|