clawmacdo 0.71.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.
- package/README.md +9 -6
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -151,7 +151,9 @@ clawmacdo openclaw-md-download --instance <deploy-id> --output ~/backups/
|
|
|
151
151
|
clawmacdo openclaw-gateway-token --instance <deploy-id>
|
|
152
152
|
|
|
153
153
|
# Configure Remotion avatar app and return a Cloudflare Quick Tunnel URL
|
|
154
|
-
clawmacdo remotion-avatar-setup --instance <deploy-id> --name "Kenny"
|
|
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
|
|
155
157
|
|
|
156
158
|
# Install a plugin
|
|
157
159
|
clawmacdo plugin-install --instance <deploy-id> --plugin "@openguardrails/moltguard"
|
|
@@ -586,10 +588,13 @@ Regenerates `gateway.auth.token` in `/home/openclaw/.openclaw/openclaw.json`, ke
|
|
|
586
588
|
### Remotion Avatar Setup
|
|
587
589
|
|
|
588
590
|
```bash
|
|
589
|
-
clawmacdo remotion-avatar-setup --instance my-server --name "Kenny"
|
|
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
|
|
590
595
|
```
|
|
591
596
|
|
|
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`,
|
|
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.
|
|
593
598
|
|
|
594
599
|
### Scheduled Cron Jobs
|
|
595
600
|
|
|
@@ -1003,9 +1008,7 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
|
|
|
1003
1008
|
|
|
1004
1009
|
---
|
|
1005
1010
|
|
|
1006
|
-
**Current version:** 0.
|
|
1007
|
-
|
|
1008
|
-
|
|
1011
|
+
**Current version:** 0.72.0
|
|
1009
1012
|
|
|
1010
1013
|
|
|
1011
1014
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawmacdo",
|
|
3
|
-
"version": "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.
|
|
34
|
-
"@clawmacdo/linux-x64": "0.
|
|
35
|
-
"@clawmacdo/win32-x64": "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
|
}
|