clawmacdo 0.68.0 → 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.
- package/README.md +15 -5
- 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
|
|
|
@@ -942,7 +951,8 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
|
|
|
942
951
|
|
|
943
952
|
---
|
|
944
953
|
|
|
945
|
-
**Current version:** 0.
|
|
954
|
+
**Current version:** 0.69.0
|
|
955
|
+
|
|
946
956
|
|
|
947
957
|
|
|
948
958
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawmacdo",
|
|
3
|
-
"version": "0.
|
|
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.
|
|
34
|
-
"@clawmacdo/linux-x64": "0.
|
|
35
|
-
"@clawmacdo/win32-x64": "0.
|
|
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
|
}
|