openclaw-workspace-sync 1.1.0 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +45 -40
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,32 +6,29 @@ Supports **Dropbox, Google Drive, OneDrive, S3/R2/Minio**, and [70+ cloud provid
6
6
 
7
7
  ## How it works
8
8
 
9
- ```mermaid
10
- flowchart TB
11
- subgraph local["Local Machine"]
12
- direction LR
13
- localFolder["~/Dropbox/openclaw/"]
14
- localApp["Native cloud app\n(Dropbox/GDrive/OneDrive)"]
15
- localFolder <--> localApp
16
- end
17
-
18
- subgraph cloud["Cloud Provider"]
19
- cloudStorage["Dropbox / Google Drive / OneDrive / S3 / R2 + 70 more"]
20
- end
21
-
22
- subgraph remote["Remote Gateway (Fly/VPS)"]
23
- direction LR
24
- rclone["rclone bisync\n(background sync)"]
25
- remoteFolder["workspace/shared/"]
26
- rclone <--> remoteFolder
27
- end
28
-
29
- localApp <--> cloudStorage
30
- cloudStorage <--> rclone
31
-
32
- style local fill:#e8f5e9,stroke:#4caf50
33
- style cloud fill:#e3f2fd,stroke:#2196f3
34
- style remote fill:#fff3e0,stroke:#ff9800
9
+ ```
10
+ ┌─────────────────────────────┐
11
+ Local Machine
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
+ └─────────────────────────────┘
35
32
  ```
36
33
 
37
34
  Drop a file locally — it appears on the remote Gateway (and vice versa).
@@ -40,20 +37,28 @@ Drop a file locally — it appears on the remote Gateway (and vice versa).
40
37
 
41
38
  ## Architecture
42
39
 
43
- ```mermaid
44
- flowchart TD
45
- subgraph Plugin["workspace-sync plugin"]
46
- cli["CLI Commands\nsetup / sync / status / authorize / list"]
47
- hooks["Session Hooks\nauto-sync on start/end"]
48
- manager["Background Sync Manager\ninterval-based bisync"]
49
- rclone["rclone wrapper\nbinary detection, config gen, OAuth"]
50
- end
51
-
52
- cli --> rclone
53
- hooks --> rclone
54
- manager --> rclone
55
-
56
- style Plugin fill:#f3e5f5,stroke:#9c27b0
40
+ ```
41
+ ┌─────────────────────────────────────────┐
42
+ workspace-sync plugin
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
+ └─────────────────────────────────────────┘
57
62
  ```
58
63
 
59
64
  ## Install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-workspace-sync",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
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",