clawmacdo 0.67.1 → 0.69.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 +30 -5
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -8,13 +8,13 @@ Rust CLI tool for deploying [OpenClaw](https://openclaw.ai) to **DigitalOcean**,
8
8
  ## Features
9
9
 
10
10
  - **Multi-cloud**: Deploy to DigitalOcean, AWS Lightsail, Tencent Cloud, Microsoft Azure, or BytePlus Cloud with `--provider` flag
11
- - **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
11
+ - **1-click deploy**: generate SSH keys, provision a cloud instance, install Node 24 + OpenClaw + Claude Code + Codex + Gemini CLI + OpenCode, restore config, configure `.env` (API + messaging), start the gateway, and auto-configure model failover
12
12
  - **Cloud-to-cloud migration**: SSH into a source instance, back up remotely, deploy to a new instance, restore
13
13
  - **Snapshot & restore**: create and restore named snapshots for DigitalOcean, BytePlus, and AWS Lightsail
14
14
  - **Destroy**: delete an instance by name with confirmation, clean up SSH keys (cloud + local)
15
15
  - **Status**: list all openclaw-tagged instances with IPs
16
16
  - **Backup**: back up local `~/.openclaw/` config into a timestamped `.tar.gz`
17
- - **Web UI**: browser-based deploy interface with real-time SSE progress streaming (optional)
17
+ - **Web UI**: browser-based deploy interface with a lobster-red OpenClaw-inspired theme and real-time SSE progress streaming (optional)
18
18
  - **Security groups**: auto-create firewall rules on Tencent Cloud and BytePlus (SSH + HTTP/HTTPS + Gateway)
19
19
 
20
20
  ## Supported Cloud Providers
@@ -242,7 +242,7 @@ clawmacdo deploy \
242
242
 
243
243
  ### AI Model Configuration
244
244
 
245
- Set a primary AI model and optional failovers for the deployed instance. Supported models: `anthropic`, `openai`, `gemini`, `byteplus`.
245
+ Set a primary AI model and optional failovers for the deployed instance. Supported models: `anthropic`, `openai`, `gemini`, `byteplus`, `opencode`.
246
246
 
247
247
  ```bash
248
248
  # Anthropic as primary (default)
@@ -260,6 +260,10 @@ clawmacdo deploy --provider do --customer-email "user@example.com" \
260
260
  --primary-model anthropic --failover-1 openai --failover-2 gemini \
261
261
  --anthropic-key "$ANTHROPIC_API_KEY" \
262
262
  --openai-key "$OPENAI_API_KEY" --gemini-key "$GEMINI_API_KEY"
263
+
264
+ # OpenCode with MiniMax M2.5 Free as primary (no API key required)
265
+ clawmacdo deploy --provider do --customer-email "user@example.com" \
266
+ --primary-model opencode
263
267
  ```
264
268
 
265
269
  | Model | `--primary-model` value | Model identifier | Required flag |
@@ -268,6 +272,7 @@ clawmacdo deploy --provider do --customer-email "user@example.com" \
268
272
  | OpenAI | `openai` | `openai/gpt-5-mini` | `--openai-key` |
269
273
  | Google Gemini | `gemini` | `google/gemini-2.5-flash` | `--gemini-key` |
270
274
  | BytePlus ARK | `byteplus` | `byteplus/ark-code-latest` | `--byteplus-ark-api-key` |
275
+ | OpenCode (MiniMax M2.5 Free) | `opencode` | `opencode/minimax-m2.5-free` | none (free) |
271
276
 
272
277
  ### Update AI Model on a Running Instance
273
278
 
@@ -289,9 +294,13 @@ clawmacdo update-model --instance <deploy-id> \
289
294
  --primary-model anthropic --failover-1 openai --failover-2 gemini \
290
295
  --anthropic-key "$ANTHROPIC_API_KEY" \
291
296
  --openai-key "$OPENAI_API_KEY" --gemini-key "$GEMINI_API_KEY"
297
+
298
+ # Switch to OpenCode (MiniMax M2.5 Free, no API key required)
299
+ clawmacdo update-model --instance <deploy-id> \
300
+ --primary-model opencode
292
301
  ```
293
302
 
294
- The command updates API keys in `.env`, configures provider settings (BytePlus `openclaw.json`), sets the model via `openclaw models set`, adds failovers, and restarts the gateway service. API keys are optional — if omitted, the existing key on the instance is preserved.
303
+ The command updates API keys in `.env`, configures provider settings (BytePlus `openclaw.json`), sets the model via `openclaw models set`, adds failovers, and restarts the gateway service. When `opencode` is selected, OpenCode is installed via `curl -fsSL https://opencode.ai/install | bash` and configured with MiniMax M2.5 Free (`opencode/minimax-m2.5-free`) — no API key required. API keys for other providers are optional — if omitted, the existing key on the instance is preserved.
295
304
 
296
305
  ### ARK API Key Management
297
306
 
@@ -516,6 +525,21 @@ clawmacdo list-backups
516
525
  clawmacdo deploy --restore-from ~/.openclaw/backups/openclaw-2024-03-09_14-30-15.tar.gz
517
526
  ```
518
527
 
528
+ ### Memory Archive Download
529
+
530
+ ```bash
531
+ # Download all memory archives from an instance to the current directory
532
+ clawmacdo memory-download --instance my-server
533
+
534
+ # Download to a specific output directory
535
+ clawmacdo memory-download --instance my-server --output ~/backups/
536
+
537
+ # Download to a specific file path
538
+ clawmacdo memory-download --instance 1.2.3.4 --output ~/backups/memory.tar.gz
539
+ ```
540
+
541
+ The command SSHes into the instance, creates a tar.gz of all files under `/home/openclaw/.openclaw/memory/`, downloads it locally, and cleans up the temporary archive on the remote host.
542
+
519
543
  ### Scheduled Cron Jobs
520
544
 
521
545
  ```bash
@@ -927,7 +951,8 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
927
951
 
928
952
  ---
929
953
 
930
- **Current version:** 0.67.1
954
+ **Current version:** 0.69.0
955
+
931
956
 
932
957
 
933
958
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.67.1",
3
+ "version": "0.69.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.67.1",
34
- "@clawmacdo/linux-x64": "0.67.1",
35
- "@clawmacdo/win32-x64": "0.67.1"
33
+ "@clawmacdo/darwin-arm64": "0.69.0",
34
+ "@clawmacdo/linux-x64": "0.69.0",
35
+ "@clawmacdo/win32-x64": "0.69.0"
36
36
  }
37
37
  }