@totalreclaw/totalreclaw 1.0.2 → 1.0.3
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/openclaw.plugin.json +26 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -78,7 +78,7 @@ Your recovery phrase is a 12-word BIP-39 mnemonic -- like a crypto wallet seed.
|
|
|
78
78
|
| `TOTALRECLAW_MASTER_PASSWORD` | *(required)* | 12-word BIP-39 recovery phrase |
|
|
79
79
|
| `TOTALRECLAW_SERVER_URL` | `https://api.totalreclaw.xyz` | Relay server URL |
|
|
80
80
|
| `TOTALRECLAW_SUBGRAPH_MODE` | `true` | Enable on-chain storage |
|
|
81
|
-
| `TOTALRECLAW_EXTRACT_EVERY_TURNS` | `
|
|
81
|
+
| `TOTALRECLAW_EXTRACT_EVERY_TURNS` | `5` | Turns between automatic extractions |
|
|
82
82
|
|
|
83
83
|
## Comparison
|
|
84
84
|
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "totalreclaw",
|
|
3
|
+
"name": "TotalReclaw",
|
|
4
|
+
"kind": "memory",
|
|
5
|
+
"description": "Zero-knowledge encrypted memory vault for AI agents",
|
|
6
|
+
"configSchema": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"extraction": {
|
|
10
|
+
"type": "object",
|
|
11
|
+
"properties": {
|
|
12
|
+
"model": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"description": "Override the extraction model (e.g., 'glm-4.5-flash', 'gpt-4.1-mini')"
|
|
15
|
+
},
|
|
16
|
+
"enabled": {
|
|
17
|
+
"type": "boolean",
|
|
18
|
+
"description": "Enable/disable auto-extraction (default: true)"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"additionalProperties": false
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"additionalProperties": false
|
|
25
|
+
}
|
|
26
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@totalreclaw/totalreclaw",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Zero-knowledge encrypted memory vault for AI agents — the password manager for AI memory.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
29
|
"dist/",
|
|
30
|
+
"openclaw.plugin.json",
|
|
30
31
|
"SKILL.md",
|
|
31
32
|
"README.md",
|
|
32
33
|
"porter-stemmer.d.ts"
|