clawmacdo 0.13.0 → 0.16.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 +29 -12
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -5,13 +5,28 @@
5
5
 
6
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.12.2
9
-
8
+ ## ✨ What's New in v0.16.0
9
+
10
+ - **BytePlus destroy cleanup** — Automatically release EIP and delete VPC/subnet/security-group when destroying BytePlus instances
11
+ - **BytePlus deploy form improvements** — Auto-default primary AI model to "byteplus" when BytePlus provider selected; "Generate" button for ARK API key with endpoint selection
12
+ - **ARK API endpoints** — `POST /api/ark/endpoints` and `POST /api/ark/api-key` for ARK key generation from the web UI
13
+ - **Playwright E2E test suite** — 30 CSV-driven test scenarios covering all 5 cloud providers with all model/failover/messaging permutations
14
+
15
+ ### Previous highlights (v0.14.x – v0.15.x)
16
+ - **Windows builds fixed** — Dependencies correctly scoped, native MSVC builds
17
+ - **`digitalocean` feature flag** — DigitalOcean provider now properly gated as a default feature
18
+
19
+ ### Previous highlights (v0.13.x)
20
+ - **`ark-api-key`** — Generate temporary BytePlus ARK API keys from access/secret credentials, or list endpoints with `--list`
21
+ - **`ark-chat`** — Send prompts to BytePlus ARK models directly from the CLI
22
+ - **`telegram-setup` / `telegram-pair`** — Configure and pair Telegram bots on deployed instances via SSH
23
+ - **Web UI destroy** — Destroy cloud instances directly from the Deployments tab with provider-specific credential prompts
24
+ - **Detach mode improvements** — Proper `setsid()` session detachment, stdout/stderr logging to file
25
+ - **Workspace path fix** — Automatic `/root/` → `/home/openclaw/` path correction during provisioning
26
+
27
+ ### Earlier highlights (v0.9.x – v0.12.x)
10
28
  - **BytePlus Cloud** — 5th cloud provider added (`--provider=byteplus` or `bp`)
11
29
  - **BytePlus ECS client** — HMAC-SHA256 signed REST API with auto-provisioning of VPC, subnet, and security group
12
- - **Web UI** — BytePlus dropdown, credential fields, region/size selectors
13
-
14
- ### Previous highlights (v0.9.x – v0.11.x)
15
30
  - **Preflight CLI checks** — Azure CLI and AWS CLI verified at startup, auto-installed if missing
16
31
  - **Full-width professional web UI** — layout widened to 1536px max, compact hero with inline mascot
17
32
  - **Deploy progress tracking** — All 16 deploy steps persisted to SQLite in real-time
@@ -75,11 +90,11 @@ clawmacdo/
75
90
 
76
91
  Pre-built binaries for every release are available on the [Releases page](https://github.com/kenken64/clawmacdo/releases):
77
92
 
78
- | Platform | Architecture | File |
79
- |----------|-------------|------|
80
- | Windows | x86_64 | `clawmacdo-windows-amd64.zip` |
81
- | Linux | x86_64 | `clawmacdo-linux-amd64.tar.gz` |
82
- | macOS | Apple Silicon (arm64) | `clawmacdo-darwin-arm64.tar.gz` |
93
+ | Platform | Architecture | Full Build | Minimal Build |
94
+ |----------|-------------|------------|---------------|
95
+ | Linux | x86_64 | `clawmacdo-linux-amd64-full.tar.gz` | `clawmacdo-linux-amd64-minimal.tar.gz` |
96
+ | macOS | Apple Silicon (arm64) | `clawmacdo-darwin-arm64-full.tar.gz` | `clawmacdo-darwin-arm64-minimal.tar.gz` |
97
+ | Windows | x86_64 | `clawmacdo-windows-amd64-full.zip` | `clawmacdo-windows-amd64-minimal.zip` |
83
98
 
84
99
  ## Installation
85
100
 
@@ -134,6 +149,8 @@ cargo build --release --no-default-features --features aws-only
134
149
 
135
150
  ## Usage
136
151
 
152
+ > **Full CLI reference with all examples, curl commands, and sample responses:** [docs/clawmacdo_usage.md](docs/clawmacdo_usage.md)
153
+
137
154
  ### Deploy OpenClaw to DigitalOcean
138
155
 
139
156
  ```bash
@@ -379,6 +396,6 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and breaking changes.
379
396
 
380
397
  ---
381
398
 
382
- **Last updated:** March 15, 2026
383
- **Current version:** 0.12.2
399
+ **Last updated:** March 16, 2026
400
+ **Current version:** 0.16.0
384
401
  **Architecture version:** 2.0 (modular workspace)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.13.0",
3
+ "version": "0.16.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.13.0",
34
- "@clawmacdo/linux-x64": "0.13.0",
35
- "@clawmacdo/win32-x64": "0.13.0"
33
+ "@clawmacdo/darwin-arm64": "0.16.0",
34
+ "@clawmacdo/linux-x64": "0.16.0",
35
+ "@clawmacdo/win32-x64": "0.16.0"
36
36
  }
37
37
  }