clawmacdo 0.70.0 → 0.72.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 +53 -10
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -140,6 +140,21 @@ 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
+ --openai-api-key "$OPENAI_API_KEY" --voice-gender female \
156
+ --avatar-glb ./kenny_avatar.glb
157
+
143
158
  # Install a plugin
144
159
  clawmacdo plugin-install --instance <deploy-id> --plugin "@openguardrails/moltguard"
145
160
 
@@ -544,6 +559,43 @@ clawmacdo memory-download --instance 1.2.3.4 --output ~/backups/memory.tar.gz
544
559
 
545
560
  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
561
 
562
+ ### OpenClaw Identity
563
+
564
+ ```bash
565
+ clawmacdo openclaw-identity --instance my-server \
566
+ --openclaw-name "Clawdia" \
567
+ --owner-name "Kenneth"
568
+ ```
569
+
570
+ This command sets the target agent's OpenClaw identity and writes managed owner context into the remote workspace `USER.md`, then restarts the gateway.
571
+
572
+ ### OpenClaw Markdown Download
573
+
574
+ ```bash
575
+ clawmacdo openclaw-md-download --instance my-server --output ~/backups/
576
+ ```
577
+
578
+ 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`.
579
+
580
+ ### Gateway Token Rotation
581
+
582
+ ```bash
583
+ clawmacdo openclaw-gateway-token --instance my-server
584
+ ```
585
+
586
+ 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.
587
+
588
+ ### Remotion Avatar Setup
589
+
590
+ ```bash
591
+ clawmacdo remotion-avatar-setup --instance my-server --name "Kenny" \
592
+ --openai-api-key "$OPENAI_API_KEY" \
593
+ --voice-gender female \
594
+ --avatar-glb ./kenny_avatar.glb
595
+ ```
596
+
597
+ 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`, `VITE_AVATAR_NAME` from `--name`, `OPENAI_API_KEY` from `--openai-api-key`/`OPENAI_API_KEY`, and voice settings (`VOICE_GENDER`, `TTS_VOICE`; male maps to `onyx`, female maps to `nova`); optionally uploads `avatar.glb` or `<userid>_avatar.glb` to the app as `public/avatar.glb`; 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.
598
+
547
599
  ### Scheduled Cron Jobs
548
600
 
549
601
  ```bash
@@ -956,16 +1008,7 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
956
1008
 
957
1009
  ---
958
1010
 
959
- **Current version:** 0.70.0
960
-
961
-
962
-
963
-
964
-
965
-
966
-
967
-
968
-
1011
+ **Current version:** 0.72.0
969
1012
 
970
1013
 
971
1014
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.70.0",
3
+ "version": "0.72.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.70.0",
34
- "@clawmacdo/linux-x64": "0.70.0",
35
- "@clawmacdo/win32-x64": "0.70.0"
33
+ "@clawmacdo/darwin-arm64": "0.72.0",
34
+ "@clawmacdo/linux-x64": "0.72.0",
35
+ "@clawmacdo/win32-x64": "0.72.0"
36
36
  }
37
37
  }