clawmacdo 0.10.0 → 0.11.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 +8 -6
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -5,16 +5,18 @@
5
5
 
6
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.
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
20
  - **4 cloud providers** — DigitalOcean, AWS Lightsail, Tencent Cloud, Microsoft Azure
19
21
  - **npm distribution** — `npm install -g clawmacdo`
20
22
 
@@ -351,5 +353,5 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and breaking changes.
351
353
  ---
352
354
 
353
355
  **Last updated:** March 14, 2026
354
- **Current version:** 0.9.0
356
+ **Current version:** 0.11.0
355
357
  **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.11.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.11.0",
34
+ "@clawmacdo/linux-x64": "0.11.0",
35
+ "@clawmacdo/win32-x64": "0.11.0"
36
36
  }
37
37
  }