openclaw-workspace-sync 1.2.0 → 1.2.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 +6 -47
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -6,30 +6,9 @@ Supports **Dropbox, Google Drive, OneDrive, S3/R2/Minio**, and [70+ cloud provid
|
|
|
6
6
|
|
|
7
7
|
## How it works
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
│ │
|
|
13
|
-
│ ~/Dropbox/openclaw/ <--> │
|
|
14
|
-
│ Native cloud app │
|
|
15
|
-
│ (Dropbox/GDrive/OneDrive) │
|
|
16
|
-
└─────────────┬───────────────┘
|
|
17
|
-
│
|
|
18
|
-
▼
|
|
19
|
-
┌─────────────────────────────┐
|
|
20
|
-
│ Cloud Provider │
|
|
21
|
-
│ Dropbox / Google Drive / │
|
|
22
|
-
│ OneDrive / S3 / R2 + 70+ │
|
|
23
|
-
└─────────────┬───────────────┘
|
|
24
|
-
│
|
|
25
|
-
▼
|
|
26
|
-
┌─────────────────────────────┐
|
|
27
|
-
│ Remote Gateway (Fly/VPS) │
|
|
28
|
-
│ │
|
|
29
|
-
│ rclone bisync <--> │
|
|
30
|
-
│ workspace/shared/ │
|
|
31
|
-
└─────────────────────────────┘
|
|
32
|
-
```
|
|
9
|
+
<p align="center">
|
|
10
|
+
<img src="https://raw.githubusercontent.com/ashbrener/openclaw-workspace-sync/main/docs/how-it-works.png" alt="How it works — Local Machine syncs to Cloud Provider syncs to Remote Gateway" width="600" />
|
|
11
|
+
</p>
|
|
33
12
|
|
|
34
13
|
Drop a file locally — it appears on the remote Gateway (and vice versa).
|
|
35
14
|
|
|
@@ -37,29 +16,9 @@ Drop a file locally — it appears on the remote Gateway (and vice versa).
|
|
|
37
16
|
|
|
38
17
|
## Architecture
|
|
39
18
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
│ │
|
|
44
|
-
│ ┌─────────────┐ ┌──────────────────┐ │
|
|
45
|
-
│ │ CLI Commands│ │ Session Hooks │ │
|
|
46
|
-
│ │ setup/sync/ │ │ auto-sync on │ │
|
|
47
|
-
│ │ status/auth │ │ start/end │ │
|
|
48
|
-
│ └──────┬──────┘ └────────┬─────────┘ │
|
|
49
|
-
│ │ │ │
|
|
50
|
-
│ │ ┌───────────────────────┐ │
|
|
51
|
-
│ │ │ Background Sync Mgr │ │
|
|
52
|
-
│ │ │ interval-based bisync │ │
|
|
53
|
-
│ │ └───────────┬──────────-┘ │
|
|
54
|
-
│ │ │ │
|
|
55
|
-
│ ▼ ▼ │
|
|
56
|
-
│ ┌─────────────────────────────────┐ │
|
|
57
|
-
│ │ rclone wrapper │ │
|
|
58
|
-
│ │ binary detect, config gen, │ │
|
|
59
|
-
│ │ OAuth, bisync orchestration │ │
|
|
60
|
-
│ └─────────────────────────────────┘ │
|
|
61
|
-
└─────────────────────────────────────────┘
|
|
62
|
-
```
|
|
19
|
+
<p align="center">
|
|
20
|
+
<img src="https://raw.githubusercontent.com/ashbrener/openclaw-workspace-sync/main/docs/architecture.png" alt="Plugin architecture — CLI, Hooks, and Sync Manager feed into rclone wrapper" width="600" />
|
|
21
|
+
</p>
|
|
63
22
|
|
|
64
23
|
## Install
|
|
65
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-workspace-sync",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "Bidirectional workspace cloud sync via rclone (Dropbox, Google Drive, S3, OneDrive, 70+ providers)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
"LICENSE"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@clack/prompts": "^1.0.1"
|
|
35
|
-
"@types/node": "^25.2.3"
|
|
34
|
+
"@clack/prompts": "^1.0.1"
|
|
36
35
|
},
|
|
37
36
|
"peerDependencies": {
|
|
38
37
|
"openclaw": ">=2026.1.0"
|
|
39
38
|
},
|
|
40
39
|
"devDependencies": {
|
|
40
|
+
"@types/node": "^22.0.0",
|
|
41
41
|
"openclaw": "latest",
|
|
42
42
|
"typescript": "5.7",
|
|
43
43
|
"vitest": "^3.2.4"
|