clawmacdo 0.12.2 → 0.15.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 +23 -11
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -5,13 +5,23 @@
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
8
+ ## ✨ What's New in v0.15.0
9
9
 
10
+ - **Windows builds fixed** — Dependencies were incorrectly scoped under unix-only target, now all platforms build correctly
11
+ - **Native Windows MSVC builds** — Switched from cross-compilation to native `x86_64-pc-windows-msvc` builds on `windows-latest`
12
+ - **`digitalocean` feature flag** — DigitalOcean provider now properly gated as a default feature
13
+
14
+ ### Previous highlights (v0.13.x – v0.14.x)
15
+ - **`ark-api-key`** — Generate temporary BytePlus ARK API keys from access/secret credentials, or list endpoints with `--list`
16
+ - **`ark-chat`** — Send prompts to BytePlus ARK models directly from the CLI
17
+ - **`telegram-setup` / `telegram-pair`** — Configure and pair Telegram bots on deployed instances via SSH
18
+ - **Web UI destroy** — Destroy cloud instances directly from the Deployments tab with provider-specific credential prompts
19
+ - **Detach mode improvements** — Proper `setsid()` session detachment, stdout/stderr logging to file
20
+ - **Workspace path fix** — Automatic `/root/` → `/home/openclaw/` path correction during provisioning
21
+
22
+ ### Earlier highlights (v0.9.x – v0.12.x)
10
23
  - **BytePlus Cloud** — 5th cloud provider added (`--provider=byteplus` or `bp`)
11
24
  - **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
25
  - **Preflight CLI checks** — Azure CLI and AWS CLI verified at startup, auto-installed if missing
16
26
  - **Full-width professional web UI** — layout widened to 1536px max, compact hero with inline mascot
17
27
  - **Deploy progress tracking** — All 16 deploy steps persisted to SQLite in real-time
@@ -75,11 +85,11 @@ clawmacdo/
75
85
 
76
86
  Pre-built binaries for every release are available on the [Releases page](https://github.com/kenken64/clawmacdo/releases):
77
87
 
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` |
88
+ | Platform | Architecture | Full Build | Minimal Build |
89
+ |----------|-------------|------------|---------------|
90
+ | Linux | x86_64 | `clawmacdo-linux-amd64-full.tar.gz` | `clawmacdo-linux-amd64-minimal.tar.gz` |
91
+ | macOS | Apple Silicon (arm64) | `clawmacdo-darwin-arm64-full.tar.gz` | `clawmacdo-darwin-arm64-minimal.tar.gz` |
92
+ | Windows | x86_64 | `clawmacdo-windows-amd64-full.zip` | `clawmacdo-windows-amd64-minimal.zip` |
83
93
 
84
94
  ## Installation
85
95
 
@@ -134,6 +144,8 @@ cargo build --release --no-default-features --features aws-only
134
144
 
135
145
  ## Usage
136
146
 
147
+ > **Full CLI reference with all examples, curl commands, and sample responses:** [docs/clawmacdo_usage.md](docs/clawmacdo_usage.md)
148
+
137
149
  ### Deploy OpenClaw to DigitalOcean
138
150
 
139
151
  ```bash
@@ -379,6 +391,6 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and breaking changes.
379
391
 
380
392
  ---
381
393
 
382
- **Last updated:** March 15, 2026
383
- **Current version:** 0.12.2
394
+ **Last updated:** March 16, 2026
395
+ **Current version:** 0.15.0
384
396
  **Architecture version:** 2.0 (modular workspace)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.12.2",
3
+ "version": "0.15.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.12.2",
34
- "@clawmacdo/linux-x64": "0.12.2",
35
- "@clawmacdo/win32-x64": "0.12.2"
33
+ "@clawmacdo/darwin-arm64": "0.15.0",
34
+ "@clawmacdo/linux-x64": "0.15.0",
35
+ "@clawmacdo/win32-x64": "0.15.0"
36
36
  }
37
37
  }