clawmacdo 0.11.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 +34 -7
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -3,7 +3,7 @@
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
8
  ## ✨ What's New in v0.11.0
9
9
 
@@ -17,7 +17,7 @@ Rust CLI tool for deploying [OpenClaw](https://openclaw.ai) to **DigitalOcean**,
17
17
  - **Follow mode** (`--follow`) — Live-polling display that refreshes until deployment finishes
18
18
  - **JSON output** (`--json`) — NDJSON format for programmatic consumption
19
19
  - **Clap-based CLI** — Proper subcommand routing with `track` and `serve`
20
- - **4 cloud providers** — DigitalOcean, AWS Lightsail, Tencent Cloud, Microsoft Azure
20
+ - **5 cloud providers** — DigitalOcean, AWS Lightsail, Tencent Cloud, Microsoft Azure, BytePlus Cloud
21
21
  - **npm distribution** — `npm install -g clawmacdo`
22
22
 
23
23
  ## 🏗️ Project Structure
@@ -43,7 +43,7 @@ clawmacdo/
43
43
  |-------|---------|--------------|
44
44
  | **clawmacdo-cli** | Main binary, command parsing, orchestration | All other crates |
45
45
  | **clawmacdo-core** | Configuration, errors, shared types | Minimal (serde, anyhow) |
46
- | **clawmacdo-cloud** | DigitalOcean, AWS Lightsail & Tencent Cloud APIs | reqwest, async-trait |
46
+ | **clawmacdo-cloud** | DigitalOcean, AWS Lightsail, Tencent Cloud & BytePlus APIs | reqwest, async-trait |
47
47
  | **clawmacdo-provision** | Server setup, package installation | SSH, Core, UI |
48
48
  | **clawmacdo-db** | SQLite operations, job tracking | rusqlite |
49
49
  | **clawmacdo-ssh** | SSH connections, file transfers | ssh2 |
@@ -51,7 +51,7 @@ clawmacdo/
51
51
 
52
52
  ## Features
53
53
 
54
- - **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
55
55
  - **Backup** local `~/.openclaw/` config into a timestamped `.tar.gz`
56
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
57
57
  - **Cloud-to-cloud migration**: SSH into a source instance, back up remotely, deploy to a new instance, restore
@@ -59,7 +59,7 @@ clawmacdo/
59
59
  - **Status**: list all openclaw-tagged instances with IPs
60
60
  - **List backups**: show local backup archives with sizes and dates
61
61
  - **Web UI**: Browser-based deploy interface with real-time SSE progress streaming (optional)
62
- - **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)
63
63
 
64
64
  ## Supported Cloud Providers
65
65
 
@@ -69,6 +69,7 @@ clawmacdo/
69
69
  | AWS Lightsail | `--provider=lightsail` (or `aws`) | `--aws-access-key-id` + `--aws-secret-access-key` | [AWS CLI](https://aws.amazon.com/cli/) installed |
70
70
  | Tencent Cloud | `--provider=tencent` | `--tencent-secret-id` + `--tencent-secret-key` | — |
71
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` | — |
72
73
 
73
74
  ## Download
74
75
 
@@ -126,6 +127,7 @@ cargo build --release --no-default-features --features aws-only
126
127
  | `lightsail` | AWS Lightsail provider support (via AWS CLI) | ✅ |
127
128
  | `tencent-cloud` | Tencent Cloud provider support | ✅ |
128
129
  | `azure` | Microsoft Azure provider support (via Azure CLI) | ✅ |
130
+ | `byteplus` | BytePlus Cloud provider support | ✅ |
129
131
  | `digitalocean` | DigitalOcean provider support | ✅ |
130
132
  | `aws-only` | Lightsail-only build (no DO or Tencent) | ❌ |
131
133
  | `minimal` | CLI-only, no web UI or optional features | ❌ |
@@ -184,6 +186,29 @@ clawmacdo deploy \
184
186
  --region ap-hongkong
185
187
  ```
186
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
+
187
212
  ### Track Deploy Progress
188
213
 
189
214
  ```bash
@@ -307,6 +332,8 @@ new-crate = { workspace = true }
307
332
  | `AZURE_SUBSCRIPTION_ID` | Azure subscription ID | For Azure deploys |
308
333
  | `AZURE_CLIENT_ID` | Azure service principal client ID | For Azure deploys |
309
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 |
310
337
  | `CLAUDE_API_KEY` | Anthropic Claude API key | Optional |
311
338
  | `OPENAI_API_KEY` | OpenAI API key | Optional |
312
339
  | `TELEGRAM_TOKEN` | Telegram bot token | Optional |
@@ -352,6 +379,6 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and breaking changes.
352
379
 
353
380
  ---
354
381
 
355
- **Last updated:** March 14, 2026
356
- **Current version:** 0.11.0
382
+ **Last updated:** March 15, 2026
383
+ **Current version:** 0.12.0
357
384
  **Architecture version:** 2.0 (modular workspace)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.11.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.11.0",
34
- "@clawmacdo/linux-x64": "0.11.0",
35
- "@clawmacdo/win32-x64": "0.11.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
  }