clawmacdo 0.10.0 → 0.12.0

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 +41 -12
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -3,19 +3,21 @@
3
3
  [![Release](https://github.com/kenken64/clawmacdo/actions/workflows/release.yml/badge.svg)](https://github.com/kenken64/clawmacdo/actions/workflows/release.yml)
4
4
  [![Changelog](https://github.com/kenken64/clawmacdo/actions/workflows/changelog.yml/badge.svg)](https://github.com/kenken64/clawmacdo/actions/workflows/changelog.yml)
5
5
 
6
- Rust CLI tool for deploying [OpenClaw](https://openclaw.ai) to **DigitalOcean**, **AWS Lightsail**, **Tencent Cloud**, or **Microsoft Azure** — with Claude Code, Codex, and Gemini CLI pre-installed.
6
+ Rust CLI tool for deploying [OpenClaw](https://openclaw.ai) to **DigitalOcean**, **AWS Lightsail**, **Tencent Cloud**, **Microsoft Azure**, or **BytePlus Cloud** — with Claude Code, Codex, and Gemini CLI pre-installed.
7
7
 
8
- ## ✨ What's New in v0.9.0
8
+ ## ✨ What's New in v0.11.0
9
9
 
10
- - **Deploy progress tracking** — All 16 deploy steps are now persisted to SQLite in real-time
10
+ - **Preflight CLI checks** — Azure CLI and AWS CLI are verified at startup and auto-installed if missing
11
+ - **Full-width professional web UI** — layout widened from 896px to 1536px max, compact hero section with inline mascot
12
+ - **Version badge** — header now displays the current version
13
+
14
+ ### Previous highlights (v0.9.x – v0.10.x)
15
+ - **Deploy progress tracking** — All 16 deploy steps persisted to SQLite in real-time
11
16
  - **`clawmacdo track` command** — Query deploy progress by ID, hostname, or IP address
12
17
  - **Follow mode** (`--follow`) — Live-polling display that refreshes until deployment finishes
13
18
  - **JSON output** (`--json`) — NDJSON format for programmatic consumption
14
19
  - **Clap-based CLI** — Proper subcommand routing with `track` and `serve`
15
-
16
- ### Previous highlights
17
- - **Modular workspace** — Each crate has a single responsibility with feature flags
18
- - **4 cloud providers** — DigitalOcean, AWS Lightsail, Tencent Cloud, Microsoft Azure
20
+ - **5 cloud providers** — DigitalOcean, AWS Lightsail, Tencent Cloud, Microsoft Azure, BytePlus Cloud
19
21
  - **npm distribution** — `npm install -g clawmacdo`
20
22
 
21
23
  ## 🏗️ Project Structure
@@ -41,7 +43,7 @@ clawmacdo/
41
43
  |-------|---------|--------------|
42
44
  | **clawmacdo-cli** | Main binary, command parsing, orchestration | All other crates |
43
45
  | **clawmacdo-core** | Configuration, errors, shared types | Minimal (serde, anyhow) |
44
- | **clawmacdo-cloud** | DigitalOcean, AWS Lightsail & Tencent Cloud APIs | reqwest, async-trait |
46
+ | **clawmacdo-cloud** | DigitalOcean, AWS Lightsail, Tencent Cloud & BytePlus APIs | reqwest, async-trait |
45
47
  | **clawmacdo-provision** | Server setup, package installation | SSH, Core, UI |
46
48
  | **clawmacdo-db** | SQLite operations, job tracking | rusqlite |
47
49
  | **clawmacdo-ssh** | SSH connections, file transfers | ssh2 |
@@ -49,7 +51,7 @@ clawmacdo/
49
51
 
50
52
  ## Features
51
53
 
52
- - **Multi-cloud**: Deploy to DigitalOcean, AWS Lightsail, or Tencent Cloud with `--provider` flag
54
+ - **Multi-cloud**: Deploy to DigitalOcean, AWS Lightsail, Tencent Cloud, Microsoft Azure, or BytePlus Cloud with `--provider` flag
53
55
  - **Backup** local `~/.openclaw/` config into a timestamped `.tar.gz`
54
56
  - **1-click deploy**: generate SSH keys, provision a cloud instance, install Node 24 + OpenClaw + Claude Code + Codex + Gemini CLI, restore config, configure `.env` (API + messaging), start the gateway, and auto-configure model failover
55
57
  - **Cloud-to-cloud migration**: SSH into a source instance, back up remotely, deploy to a new instance, restore
@@ -57,7 +59,7 @@ clawmacdo/
57
59
  - **Status**: list all openclaw-tagged instances with IPs
58
60
  - **List backups**: show local backup archives with sizes and dates
59
61
  - **Web UI**: Browser-based deploy interface with real-time SSE progress streaming (optional)
60
- - **Security groups**: Auto-create firewall rules on Tencent Cloud (SSH + HTTP/HTTPS)
62
+ - **Security groups**: Auto-create firewall rules on Tencent Cloud and BytePlus (SSH + HTTP/HTTPS + Gateway)
61
63
 
62
64
  ## Supported Cloud Providers
63
65
 
@@ -67,6 +69,7 @@ clawmacdo/
67
69
  | AWS Lightsail | `--provider=lightsail` (or `aws`) | `--aws-access-key-id` + `--aws-secret-access-key` | [AWS CLI](https://aws.amazon.com/cli/) installed |
68
70
  | Tencent Cloud | `--provider=tencent` | `--tencent-secret-id` + `--tencent-secret-key` | — |
69
71
  | Microsoft Azure | `--provider=azure` (or `az`) | `--azure-tenant-id` + `--azure-subscription-id` + `--azure-client-id` + `--azure-client-secret` | [Azure CLI](https://learn.microsoft.com/en-us/cli/azure/) installed |
72
+ | BytePlus Cloud | `--provider=byteplus` (or `bp`) | `--byteplus-access-key` + `--byteplus-secret-key` | — |
70
73
 
71
74
  ## Download
72
75
 
@@ -124,6 +127,7 @@ cargo build --release --no-default-features --features aws-only
124
127
  | `lightsail` | AWS Lightsail provider support (via AWS CLI) | ✅ |
125
128
  | `tencent-cloud` | Tencent Cloud provider support | ✅ |
126
129
  | `azure` | Microsoft Azure provider support (via Azure CLI) | ✅ |
130
+ | `byteplus` | BytePlus Cloud provider support | ✅ |
127
131
  | `digitalocean` | DigitalOcean provider support | ✅ |
128
132
  | `aws-only` | Lightsail-only build (no DO or Tencent) | ❌ |
129
133
  | `minimal` | CLI-only, no web UI or optional features | ❌ |
@@ -182,6 +186,29 @@ clawmacdo deploy \
182
186
  --region ap-hongkong
183
187
  ```
184
188
 
189
+ ### Deploy to BytePlus Cloud
190
+
191
+ ```bash
192
+ # Set BytePlus credentials
193
+ export BYTEPLUS_ACCESS_KEY="your_access_key"
194
+ export BYTEPLUS_SECRET_KEY="your_secret_key"
195
+
196
+ # Deploy to Singapore region
197
+ clawmacdo deploy \
198
+ --provider byteplus \
199
+ --customer-name "my-openclaw-bp" \
200
+ --region ap-southeast-1
201
+ ```
202
+
203
+ #### BytePlus Instance Sizes
204
+
205
+ | clawmacdo `--size` | vCPU | RAM | Notes |
206
+ |--------------------|------|-----|-------|
207
+ | `ecs.c3i.large` | 2 | 4 GB | Compute-optimized |
208
+ | `ecs.g3i.large` *(default)* | 2 | 8 GB | General purpose |
209
+ | `ecs.c3i.xlarge` | 4 | 8 GB | Compute-optimized |
210
+ | `ecs.g3i.xlarge` | 4 | 16 GB | General purpose |
211
+
185
212
  ### Track Deploy Progress
186
213
 
187
214
  ```bash
@@ -305,6 +332,8 @@ new-crate = { workspace = true }
305
332
  | `AZURE_SUBSCRIPTION_ID` | Azure subscription ID | For Azure deploys |
306
333
  | `AZURE_CLIENT_ID` | Azure service principal client ID | For Azure deploys |
307
334
  | `AZURE_CLIENT_SECRET` | Azure service principal client secret | For Azure deploys |
335
+ | `BYTEPLUS_ACCESS_KEY` | BytePlus Access Key | For BytePlus deploys |
336
+ | `BYTEPLUS_SECRET_KEY` | BytePlus Secret Key | For BytePlus deploys |
308
337
  | `CLAUDE_API_KEY` | Anthropic Claude API key | Optional |
309
338
  | `OPENAI_API_KEY` | OpenAI API key | Optional |
310
339
  | `TELEGRAM_TOKEN` | Telegram bot token | Optional |
@@ -350,6 +379,6 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and breaking changes.
350
379
 
351
380
  ---
352
381
 
353
- **Last updated:** March 14, 2026
354
- **Current version:** 0.9.0
382
+ **Last updated:** March 15, 2026
383
+ **Current version:** 0.12.0
355
384
  **Architecture version:** 2.0 (modular workspace)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.10.0",
3
+ "version": "0.12.0",
4
4
  "description": "CLI tool for deploying OpenClaw to multiple cloud providers with pre-installed AI dev tools",
5
5
  "keywords": [
6
6
  "openclaw",
@@ -30,8 +30,8 @@
30
30
  "node": ">=16"
31
31
  },
32
32
  "optionalDependencies": {
33
- "@clawmacdo/darwin-arm64": "0.10.0",
34
- "@clawmacdo/linux-x64": "0.10.0",
35
- "@clawmacdo/win32-x64": "0.10.0"
33
+ "@clawmacdo/darwin-arm64": "0.12.0",
34
+ "@clawmacdo/linux-x64": "0.12.0",
35
+ "@clawmacdo/win32-x64": "0.12.0"
36
36
  }
37
37
  }