clawmacdo 0.73.0 → 0.75.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 +54 -4
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -147,13 +147,21 @@ clawmacdo openclaw-identity --instance <deploy-id> \
147
147
  # Download OpenClaw Markdown context files and memory logs as a ZIP
148
148
  clawmacdo openclaw-md-download --instance <deploy-id> --output ~/backups/
149
149
 
150
+ # Project wiki read/write/export for web apps
151
+ clawmacdo wiki-tree --instance <deploy-id> --project llm_wiki --json
152
+ clawmacdo wiki-read --instance <deploy-id> --path llm_wiki/INDEX.md --json
153
+ clawmacdo wiki-write --instance <deploy-id> --path llm_wiki/INDEX.md \
154
+ --content-file /tmp/INDEX.md --base-sha <sha-from-read> --json
155
+ clawmacdo wiki-export --instance <deploy-id> --project llm_wiki --json
156
+
150
157
  # Regenerate the OpenClaw gateway token
151
158
  clawmacdo openclaw-gateway-token --instance <deploy-id>
159
+ clawmacdo openclaw-gateway-url --instance <deploy-id> --json
152
160
 
153
161
  # Configure Remotion avatar app and return a Cloudflare Quick Tunnel URL
154
162
  clawmacdo remotion-avatar-setup --instance <deploy-id> --name "Kenny" \
155
163
  --openai-api-key "$OPENAI_API_KEY" --voice-gender female \
156
- --avatar-glb ./kenny_avatar.glb
164
+ --avatar-glb ./kenny_avatar.glb --json
157
165
 
158
166
  # Install a plugin
159
167
  clawmacdo plugin-install --instance <deploy-id> --plugin "@openguardrails/moltguard"
@@ -592,25 +600,68 @@ clawmacdo openclaw-llm-wiki --instance my-server \
592
600
 
593
601
  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.
594
602
 
603
+ ### OpenClaw Wiki Files
604
+
605
+ ```bash
606
+ clawmacdo wiki-tree --instance my-server --project llm_wiki --json
607
+ clawmacdo wiki-index --instance my-server --project llm_wiki --json
608
+ clawmacdo wiki-read --instance my-server --path llm_wiki/INDEX.md --json
609
+ clawmacdo wiki-write --instance my-server --path llm_wiki/INDEX.md \
610
+ --content-file /tmp/INDEX.md \
611
+ --base-sha <sha-from-wiki-read> \
612
+ --json
613
+ clawmacdo wiki-write --instance my-server --path llm_wiki/new-page.md \
614
+ --content-file /tmp/new-page.md \
615
+ --base-sha NEW \
616
+ --json
617
+ clawmacdo wiki-export --instance my-server --project llm_wiki --output ~/backups/ --json
618
+ ```
619
+
620
+ These commands resolve the configured OpenClaw agent workspace on the instance and only operate on safe relative Markdown paths under that workspace. `wiki-read` returns `content`, `sha256`, `mtime`, and `size`; `wiki-write` requires `--base-sha` so a web app cannot overwrite a file that changed after it was opened. Use `--base-sha NEW` only when creating a new file. `wiki-index` returns per-page hashes plus headings, tags, and Markdown/wiki links for graph or navigation UIs.
621
+
595
622
  ### Gateway Token Rotation
596
623
 
597
624
  ```bash
598
625
  clawmacdo openclaw-gateway-token --instance my-server
626
+ clawmacdo openclaw-gateway-url --instance my-server --json
599
627
  ```
600
628
 
601
629
  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.
602
630
 
631
+ `openclaw-gateway-url --json` returns the current public Tailscale Funnel Gateway URL when available:
632
+
633
+ ```json
634
+ {
635
+ "ok": true,
636
+ "public_url": "https://example.ts.net",
637
+ "gateway_url": "https://example.ts.net/auth.html#...",
638
+ "gateway_token_present": true
639
+ }
640
+ ```
641
+
603
642
  ### Remotion Avatar Setup
604
643
 
605
644
  ```bash
606
645
  clawmacdo remotion-avatar-setup --instance my-server --name "Kenny" \
607
646
  --openai-api-key "$OPENAI_API_KEY" \
608
647
  --voice-gender female \
609
- --avatar-glb ./kenny_avatar.glb
648
+ --avatar-glb ./kenny_avatar.glb \
649
+ --json
610
650
  ```
611
651
 
612
652
  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.
613
653
 
654
+ With `--json`, the command returns a stable object for web apps:
655
+
656
+ ```json
657
+ {
658
+ "ok": true,
659
+ "remotion_url": "https://example.trycloudflare.com",
660
+ "remotion_service": "active",
661
+ "tunnel_service": "active"
662
+ }
663
+ ```
664
+
614
665
  ### Scheduled Cron Jobs
615
666
 
616
667
  ```bash
@@ -1023,5 +1074,4 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
1023
1074
 
1024
1075
  ---
1025
1076
 
1026
- **Current version:** 0.73.0
1027
-
1077
+ **Current version:** 0.75.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.73.0",
3
+ "version": "0.75.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.73.0",
34
- "@clawmacdo/linux-x64": "0.73.0",
35
- "@clawmacdo/win32-x64": "0.73.0"
33
+ "@clawmacdo/darwin-arm64": "0.75.0",
34
+ "@clawmacdo/linux-x64": "0.75.0",
35
+ "@clawmacdo/win32-x64": "0.75.0"
36
36
  }
37
37
  }