openclaw-workspace-sync 2.1.1 → 2.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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ The agent workspace is the source of truth. Each sync cycle:
|
|
|
42
42
|
2. **Drain**: `rclone move` pulls files from the cloud `_outbox/` into the workspace `_inbox/`, deleting them from the cloud after transfer
|
|
43
43
|
|
|
44
44
|
<p align="center">
|
|
45
|
-
<img src="
|
|
45
|
+
<img src="https://raw.githubusercontent.com/ashbrener/openclaw-workspace-sync/main/docs/diagrams/mode-0.svg" alt="sync mode diagram" width="700" />
|
|
46
46
|
</p>
|
|
47
47
|
|
|
48
48
|
This creates a clean separation:
|
|
@@ -71,7 +71,7 @@ Because the push explicitly excludes `_inbox/**` and `_outbox/**`, there is no r
|
|
|
71
71
|
The agent workspace is the source of truth. Every sync cycle copies the latest workspace state down to your local folder. Local files outside the workspace are never sent up.
|
|
72
72
|
|
|
73
73
|
<p align="center">
|
|
74
|
-
<img src="
|
|
74
|
+
<img src="https://raw.githubusercontent.com/ashbrener/openclaw-workspace-sync/main/docs/diagrams/mode-1.svg" alt="sync mode diagram" width="700" />
|
|
75
75
|
</p>
|
|
76
76
|
|
|
77
77
|
This is safe: even if something goes wrong, only your local copy is affected — the workspace stays untouched.
|
|
@@ -97,7 +97,7 @@ When enabled, a local `inbox/` folder syncs its contents to `<remotePath>/inbox/
|
|
|
97
97
|
Full bidirectional sync using rclone bisync. Changes on either side propagate to the other.
|
|
98
98
|
|
|
99
99
|
<p align="center">
|
|
100
|
-
<img src="
|
|
100
|
+
<img src="https://raw.githubusercontent.com/ashbrener/openclaw-workspace-sync/main/docs/diagrams/mode-2.svg" alt="sync mode diagram" width="700" />
|
|
101
101
|
</p>
|
|
102
102
|
|
|
103
103
|
Use this only if you understand the trade-offs:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-workspace-sync",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "Workspace cloud sync via rclone — mailbox (inbox/outbox), mirror, or bisync (Dropbox, Google Drive, S3, OneDrive, 70+ providers)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|