clawmacdo 0.71.0 → 0.73.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 +25 -10
  2. 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"
@@ -573,7 +575,22 @@ This command sets the target agent's OpenClaw identity and writes managed owner
573
575
  clawmacdo openclaw-md-download --instance my-server --output ~/backups/
574
576
  ```
575
577
 
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`.
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`, `llm_wiki.md` when present, plus daily memory logs under `memory/*.md`.
579
+
580
+ ### OpenClaw LLM Wiki
581
+
582
+ ```bash
583
+ clawmacdo openclaw-llm-wiki --instance my-server \
584
+ --title "Project LLM Wiki" \
585
+ --prompt "Include architecture, runbooks, and open questions."
586
+
587
+ # Upload an existing Markdown file from a web backend or local path
588
+ clawmacdo openclaw-llm-wiki --instance my-server \
589
+ --llm-wiki-md ./llm_wiki.md \
590
+ --skip-claude
591
+ ```
592
+
593
+ SSHes into the instance as the OpenClaw user, resolves the target agent workspace, creates or uploads an attachable `llm_wiki.md` at the workspace root, seeds the `llm_wiki/` project tree, then optionally launches Claude Code on the instance to refine the wiki structure. `--llm-wiki-md` uploads any local Markdown file as `llm_wiki.md`; `--skip-claude` makes the command upload/seed only.
577
594
 
578
595
  ### Gateway Token Rotation
579
596
 
@@ -586,10 +603,13 @@ Regenerates `gateway.auth.token` in `/home/openclaw/.openclaw/openclaw.json`, ke
586
603
  ### Remotion Avatar Setup
587
604
 
588
605
  ```bash
589
- clawmacdo remotion-avatar-setup --instance my-server --name "Kenny"
606
+ clawmacdo remotion-avatar-setup --instance my-server --name "Kenny" \
607
+ --openai-api-key "$OPENAI_API_KEY" \
608
+ --voice-gender female \
609
+ --avatar-glb ./kenny_avatar.glb
590
610
  ```
591
611
 
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.
612
+ 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
613
 
594
614
  ### Scheduled Cron Jobs
595
615
 
@@ -1003,10 +1023,5 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
1003
1023
 
1004
1024
  ---
1005
1025
 
1006
- **Current version:** 0.71.0
1007
-
1008
-
1009
-
1010
-
1011
-
1026
+ **Current version:** 0.73.0
1012
1027
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.71.0",
3
+ "version": "0.73.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.71.0",
34
- "@clawmacdo/linux-x64": "0.71.0",
35
- "@clawmacdo/win32-x64": "0.71.0"
33
+ "@clawmacdo/darwin-arm64": "0.73.0",
34
+ "@clawmacdo/linux-x64": "0.73.0",
35
+ "@clawmacdo/win32-x64": "0.73.0"
36
36
  }
37
37
  }