clawmacdo 0.22.0 → 0.24.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 +31 -4
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -5,10 +5,15 @@
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.21.0
8
+ ## ✨ What's New in v0.24.0
9
9
 
10
- - **`destroy` subcommand** — delete any openclaw instance across all 5 cloud providers (DigitalOcean, Lightsail, Tencent, Azure, BytePlus) with interactive confirmation; removes cloud SSH key, local key, and for BytePlus also releases EIP and cleans up VPC/subnet/security-group
11
- - **`skills-data-api` service** — Node.js/Express API backed by MongoDB for browsing, scraping, and serving Claude Code skill marketplace data; includes Docker support and shell scripts for bulk download and data loading
10
+ - **`do-snapshot` subcommand** — create a named DigitalOcean snapshot from an existing droplet by ID, with optional `--power-off` flag for clean shutdown/snapshot/power-on cycle
11
+ - **BytePlus EIP cost reduction** — switched from pay-by-bandwidth to pay-by-traffic billing, reduced default bandwidth from 10 Mbps to 5 Mbps, and EIP is now created inline with the instance (`ReleaseWithInstance: true`) so it auto-releases on destroy
12
+ - **BytePlus spot instances** — new `--spot` flag on deploy enables `SpotAsPriceGo` strategy for up to ~80% compute cost savings
13
+
14
+ ### Previous highlights (v0.21.x – v0.23.x)
15
+ - **`destroy` subcommand** — delete any openclaw instance across all 5 cloud providers with interactive confirmation
16
+ - **`skills-data-api` service** — Node.js/Express API backed by MongoDB for browsing, scraping, and serving Claude Code skill marketplace data
12
17
  - **Playwright e2e test suite** — CSV-driven deploy form testing under `e2e/`, covering all 5 cloud providers with 30+ scenarios
13
18
 
14
19
  ### Previous highlights (v0.20.x)
@@ -88,6 +93,7 @@ clawmacdo/
88
93
  - **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
89
94
  - **Cloud-to-cloud migration**: SSH into a source instance, back up remotely, deploy to a new instance, restore
90
95
  - **Snapshot restore**: create a DigitalOcean droplet from a snapshot by name, with deploy record saved to SQLite for web UI visibility
96
+ - **Snapshot create**: create a named snapshot from an existing DigitalOcean droplet, with optional power-off for data consistency
91
97
  - **Destroy**: delete an instance by name with confirmation, clean up SSH keys (cloud + local)
92
98
  - **Status**: list all openclaw-tagged instances with IPs
93
99
  - **List backups**: show local backup archives with sizes and dates
@@ -331,6 +337,27 @@ clawmacdo do-restore \
331
337
 
332
338
  The command generates a new SSH key pair, looks up the snapshot by name, creates the droplet, waits for it to become active, and saves a deploy record for use with other `clawmacdo` commands.
333
339
 
340
+ ### Create a DigitalOcean Snapshot from a Droplet
341
+
342
+ Create a named snapshot from an existing DigitalOcean droplet. Optionally shuts down the droplet first for a clean snapshot.
343
+
344
+ ```bash
345
+ # Create a snapshot (droplet stays running)
346
+ clawmacdo do-snapshot \
347
+ --do-token "$DO_TOKEN" \
348
+ --droplet-id 558765268 \
349
+ --snapshot-name "my-openclaw-2026-03-19"
350
+
351
+ # Recommended: shut down first for a clean snapshot, then power back on
352
+ clawmacdo do-snapshot \
353
+ --do-token "$DO_TOKEN" \
354
+ --droplet-id 558765268 \
355
+ --snapshot-name "my-openclaw-2026-03-19" \
356
+ --power-off
357
+ ```
358
+
359
+ The command verifies the droplet exists, optionally shuts it down, creates the snapshot, polls until complete, confirms the snapshot, and optionally powers the droplet back on.
360
+
334
361
  ### Destroy an Instance
335
362
 
336
363
  Delete an instance by name across any supported provider. Removes cloud SSH key, local key, and (for BytePlus) EIP and VPC resources.
@@ -578,5 +605,5 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and breaking changes.
578
605
  ---
579
606
 
580
607
  **Last updated:** March 19, 2026
581
- **Current version:** 0.22.0
608
+ **Current version:** 0.24.0
582
609
  **Architecture version:** 2.0 (modular workspace)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.22.0",
3
+ "version": "0.24.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.22.0",
34
- "@clawmacdo/linux-x64": "0.22.0",
35
- "@clawmacdo/win32-x64": "0.22.0"
33
+ "@clawmacdo/darwin-arm64": "0.24.0",
34
+ "@clawmacdo/linux-x64": "0.24.0",
35
+ "@clawmacdo/win32-x64": "0.24.0"
36
36
  }
37
37
  }