clawmacdo 0.70.0 → 0.71.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 +48 -8
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -140,6 +140,19 @@ clawmacdo deploy --provider digitalocean --openclaw-version 2026.3.22 ... # dep
|
|
|
140
140
|
clawmacdo update-model --instance <deploy-id> \
|
|
141
141
|
--primary-model openai --openai-key "$OPENAI_API_KEY"
|
|
142
142
|
|
|
143
|
+
# Set OpenClaw display name and owner context
|
|
144
|
+
clawmacdo openclaw-identity --instance <deploy-id> \
|
|
145
|
+
--openclaw-name "Clawdia" --owner-name "Kenneth"
|
|
146
|
+
|
|
147
|
+
# Download OpenClaw Markdown context files and memory logs as a ZIP
|
|
148
|
+
clawmacdo openclaw-md-download --instance <deploy-id> --output ~/backups/
|
|
149
|
+
|
|
150
|
+
# Regenerate the OpenClaw gateway token
|
|
151
|
+
clawmacdo openclaw-gateway-token --instance <deploy-id>
|
|
152
|
+
|
|
153
|
+
# Configure Remotion avatar app and return a Cloudflare Quick Tunnel URL
|
|
154
|
+
clawmacdo remotion-avatar-setup --instance <deploy-id> --name "Kenny"
|
|
155
|
+
|
|
143
156
|
# Install a plugin
|
|
144
157
|
clawmacdo plugin-install --instance <deploy-id> --plugin "@openguardrails/moltguard"
|
|
145
158
|
|
|
@@ -544,6 +557,40 @@ clawmacdo memory-download --instance 1.2.3.4 --output ~/backups/memory.tar.gz
|
|
|
544
557
|
|
|
545
558
|
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.
|
|
546
559
|
|
|
560
|
+
### OpenClaw Identity
|
|
561
|
+
|
|
562
|
+
```bash
|
|
563
|
+
clawmacdo openclaw-identity --instance my-server \
|
|
564
|
+
--openclaw-name "Clawdia" \
|
|
565
|
+
--owner-name "Kenneth"
|
|
566
|
+
```
|
|
567
|
+
|
|
568
|
+
This command sets the target agent's OpenClaw identity and writes managed owner context into the remote workspace `USER.md`, then restarts the gateway.
|
|
569
|
+
|
|
570
|
+
### OpenClaw Markdown Download
|
|
571
|
+
|
|
572
|
+
```bash
|
|
573
|
+
clawmacdo openclaw-md-download --instance my-server --output ~/backups/
|
|
574
|
+
```
|
|
575
|
+
|
|
576
|
+
Downloads the active OpenClaw workspace Markdown context files as a ZIP: `AGENTS.md`, `SOUL.md`, `IDENTITY.md`, `USER.md`, `TOOLS.md`, `HEARTBEAT.md`, `BOOTSTRAP.md` when present, plus daily memory logs under `memory/*.md`.
|
|
577
|
+
|
|
578
|
+
### Gateway Token Rotation
|
|
579
|
+
|
|
580
|
+
```bash
|
|
581
|
+
clawmacdo openclaw-gateway-token --instance my-server
|
|
582
|
+
```
|
|
583
|
+
|
|
584
|
+
Regenerates `gateway.auth.token` in `/home/openclaw/.openclaw/openclaw.json`, keeps password auth in sync when configured, backs up the old config to `openclaw.json.bak`, and restarts the gateway.
|
|
585
|
+
|
|
586
|
+
### Remotion Avatar Setup
|
|
587
|
+
|
|
588
|
+
```bash
|
|
589
|
+
clawmacdo remotion-avatar-setup --instance my-server --name "Kenny"
|
|
590
|
+
```
|
|
591
|
+
|
|
592
|
+
Configures `/home/openclaw/.openclaw/workspace/remotion-3d-AI-avatar/.env` with `CHAT_BASE_URL=http://127.0.0.1:18789/v1`, `CHAT_API_KEY` from the OpenClaw gateway token, `CHAT_MODEL=openclaw`, and `VITE_AVATAR_NAME` from `--name`; writes OpenAI-compatible aliases for apps that still expect them; replaces `kenken64` with the provided name; starts the app; starts a free Cloudflare Quick Tunnel to the frontend port; and prints the public `trycloudflare.com` URL.
|
|
593
|
+
|
|
547
594
|
### Scheduled Cron Jobs
|
|
548
595
|
|
|
549
596
|
```bash
|
|
@@ -956,14 +1003,7 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
|
|
|
956
1003
|
|
|
957
1004
|
---
|
|
958
1005
|
|
|
959
|
-
**Current version:** 0.
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
1006
|
+
**Current version:** 0.71.0
|
|
967
1007
|
|
|
968
1008
|
|
|
969
1009
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawmacdo",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.71.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.71.0",
|
|
34
|
+
"@clawmacdo/linux-x64": "0.71.0",
|
|
35
|
+
"@clawmacdo/win32-x64": "0.71.0"
|
|
36
36
|
}
|
|
37
37
|
}
|