clawmacdo 0.24.0 → 0.26.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 +60 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -5,11 +5,16 @@
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.24.0
8
+ ## ✨ What's New in v0.26.0
9
9
 
10
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
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
12
  - **BytePlus spot instances** — new `--spot` flag on deploy enables `SpotAsPriceGo` strategy for up to ~80% compute cost savings
13
+ - **`bp-snapshot` subcommand** — create a named snapshot of a BytePlus ECS instance's system disk
14
+ - **`bp-restore` subcommand** — restore a new BytePlus ECS instance from a snapshot (creates custom image, then launches instance)
15
+ - **`ls-snapshot` subcommand** — create a snapshot of an AWS Lightsail instance
16
+ - **`ls-restore` subcommand** — restore a new Lightsail instance from a snapshot (direct, no intermediate image step)
17
+ - **BytePlus EIP orphan cleanup** — destroy command now finds and releases unbound EIPs left behind after instance termination
13
18
 
14
19
  ### Previous highlights (v0.21.x – v0.23.x)
15
20
  - **`destroy` subcommand** — delete any openclaw instance across all 5 cloud providers with interactive confirmation
@@ -358,6 +363,59 @@ clawmacdo do-snapshot \
358
363
 
359
364
  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
365
 
366
+ ### Create a BytePlus Snapshot from an ECS Instance
367
+
368
+ Create a named snapshot of a BytePlus ECS instance's system disk.
369
+
370
+ ```bash
371
+ clawmacdo bp-snapshot \
372
+ --instance-id i-abc123 \
373
+ --snapshot-name "my-openclaw-backup"
374
+ ```
375
+
376
+ ### Restore a BytePlus ECS Instance from a Snapshot
377
+
378
+ Create a new instance from an existing BytePlus snapshot. This creates a custom image from the snapshot, then launches a new instance from that image.
379
+
380
+ ```bash
381
+ # Restore from a snapshot by name
382
+ clawmacdo bp-restore \
383
+ --snapshot-name "my-openclaw-backup"
384
+
385
+ # With spot instance for cost savings
386
+ clawmacdo bp-restore \
387
+ --snapshot-name "my-openclaw-backup" \
388
+ --size ecs.g3i.large \
389
+ --spot
390
+ ```
391
+
392
+ ### Create a Lightsail Snapshot
393
+
394
+ Create a snapshot of an AWS Lightsail instance.
395
+
396
+ ```bash
397
+ clawmacdo ls-snapshot \
398
+ --instance-name "openclaw-abc123" \
399
+ --snapshot-name "my-openclaw-backup" \
400
+ --region ap-southeast-1
401
+ ```
402
+
403
+ ### Restore a Lightsail Instance from a Snapshot
404
+
405
+ Create a new instance directly from an existing Lightsail snapshot.
406
+
407
+ ```bash
408
+ # Restore from a snapshot by name
409
+ clawmacdo ls-restore \
410
+ --snapshot-name "my-openclaw-backup" \
411
+ --region ap-southeast-1
412
+
413
+ # With size override
414
+ clawmacdo ls-restore \
415
+ --snapshot-name "my-openclaw-backup" \
416
+ --size s-4vcpu-8gb
417
+ ```
418
+
361
419
  ### Destroy an Instance
362
420
 
363
421
  Delete an instance by name across any supported provider. Removes cloud SSH key, local key, and (for BytePlus) EIP and VPC resources.
@@ -605,5 +663,5 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and breaking changes.
605
663
  ---
606
664
 
607
665
  **Last updated:** March 19, 2026
608
- **Current version:** 0.24.0
666
+ **Current version:** 0.26.0
609
667
  **Architecture version:** 2.0 (modular workspace)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.24.0",
3
+ "version": "0.26.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.24.0",
34
- "@clawmacdo/linux-x64": "0.24.0",
35
- "@clawmacdo/win32-x64": "0.24.0"
33
+ "@clawmacdo/darwin-arm64": "0.26.0",
34
+ "@clawmacdo/linux-x64": "0.26.0",
35
+ "@clawmacdo/win32-x64": "0.26.0"
36
36
  }
37
37
  }