@echomem/echo-memory-cloud-openclaw-plugin 0.2.0 → 0.2.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.
- package/README.md +11 -2
- package/clawdbot.plugin.json +2 -2
- package/index.js +29 -6
- package/lib/config.js +31 -8
- package/lib/local-server.js +107 -55
- package/lib/local-ui/dist/assets/index-Cnb-zSN2.js +54 -0
- package/lib/local-ui/dist/index.html +1 -1
- package/lib/onboarding.js +2 -1
- package/moltbot.plugin.json +2 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/lib/local-ui/dist/assets/index-CJrdHn7-.js +0 -54
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>OpenClaw Memory Archive</title>
|
|
7
|
-
<script type="module" crossorigin src="/assets/index-
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-Cnb-zSN2.js"></script>
|
|
8
8
|
<link rel="stylesheet" crossorigin href="/assets/index-BoyzFR9Q.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
package/lib/onboarding.js
CHANGED
|
@@ -17,7 +17,8 @@ export function buildOnboardingText({ commandLabel, cfg }) {
|
|
|
17
17
|
"- Optional config: `memoryDir`, `autoSync`, `syncIntervalMinutes`, `batchSize`, `requestTimeoutMs`.",
|
|
18
18
|
"- In `openclaw.json`, set `tools.profile` to `full`. The default `coding` profile is too restrictive for normal plugin use.",
|
|
19
19
|
"- `memoryDir` resolution order: plugin config, `ECHOMEM_MEMORY_DIR`, then `~/.openclaw/workspace/memory`.",
|
|
20
|
-
"-
|
|
20
|
+
"- Current `.env` location: `~/.openclaw/.env`.",
|
|
21
|
+
"- Legacy `.moltbot` and `.clawdbot` `.env` files are only read as a one-release migration bridge, and new saves should move to `~/.openclaw/.env`.",
|
|
21
22
|
"- Restart `openclaw gateway` after install or config changes.",
|
|
22
23
|
"",
|
|
23
24
|
"Commands and usage:",
|
package/moltbot.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "echo-memory-cloud-openclaw-plugin",
|
|
3
3
|
"name": "Echo Memory Cloud OpenClaw Plugin",
|
|
4
4
|
"description": "Sync OpenClaw local markdown memory files to Echo cloud",
|
|
5
|
-
"version": "0.2.
|
|
5
|
+
"version": "0.2.1",
|
|
6
6
|
"kind": "lifecycle",
|
|
7
7
|
"main": "./index.js",
|
|
8
8
|
"configSchema": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"memoryDir": {
|
|
24
24
|
"type": "string",
|
|
25
|
-
"description": "Absolute path to the markdown memory directory. Falls back to ECHOMEM_MEMORY_DIR, then ~/.
|
|
25
|
+
"description": "Absolute path to the markdown memory directory. Falls back to ECHOMEM_MEMORY_DIR, then ~/.openclaw/workspace/memory."
|
|
26
26
|
},
|
|
27
27
|
"localOnlyMode": {
|
|
28
28
|
"type": "boolean",
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "echo-memory-cloud-openclaw-plugin",
|
|
3
3
|
"name": "Echo Memory Cloud OpenClaw Plugin",
|
|
4
4
|
"description": "Sync OpenClaw local markdown memory files to Echo cloud",
|
|
5
|
-
"version": "0.2.
|
|
5
|
+
"version": "0.2.1",
|
|
6
6
|
"kind": "lifecycle",
|
|
7
7
|
"main": "./index.js",
|
|
8
8
|
"configSchema": {
|