clawmacdo 0.69.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.
Files changed (2) hide show
  1. package/README.md +58 -14
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # clawmacdo
2
2
 
3
+ <p align="center">
4
+ <img src="clawmacdo.png" alt="clawmacdo logo" width="280" />
5
+ </p>
6
+
3
7
  [![Release](https://github.com/kenken64/clawmacdo/actions/workflows/release.yml/badge.svg)](https://github.com/kenken64/clawmacdo/actions/workflows/release.yml)
4
8
  [![Changelog](https://github.com/kenken64/clawmacdo/actions/workflows/changelog.yml/badge.svg)](https://github.com/kenken64/clawmacdo/actions/workflows/changelog.yml)
5
9
 
@@ -136,6 +140,19 @@ clawmacdo deploy --provider digitalocean --openclaw-version 2026.3.22 ... # dep
136
140
  clawmacdo update-model --instance <deploy-id> \
137
141
  --primary-model openai --openai-key "$OPENAI_API_KEY"
138
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
+
139
156
  # Install a plugin
140
157
  clawmacdo plugin-install --instance <deploy-id> --plugin "@openguardrails/moltguard"
141
158
 
@@ -540,6 +557,40 @@ clawmacdo memory-download --instance 1.2.3.4 --output ~/backups/memory.tar.gz
540
557
 
541
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.
542
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
+
543
594
  ### Scheduled Cron Jobs
544
595
 
545
596
  ```bash
@@ -845,19 +896,20 @@ clawmacdo/
845
896
  # Build all crates
846
897
  cargo build
847
898
 
848
- # Test all crates
899
+ # Run the full Rust quality pipeline
900
+ cargo fmt --all
901
+ cargo clippy --all-targets --all-features -- -D warnings
849
902
  cargo test
850
903
 
851
904
  # Build specific crate
852
905
  cargo build -p clawmacdo-core
853
906
 
854
- # Run clippy on workspace
855
- cargo clippy --all
856
-
857
907
  # Update dependencies
858
908
  cargo update
859
909
  ```
860
910
 
911
+ The workspace now includes focused Rust tests around config/path validation, deployment database lookups, cron/hook command construction helpers, QR parsing, and web middleware behavior. Add new tests close to the module they protect.
912
+
861
913
  ### Adding Dependencies
862
914
 
863
915
  Add to workspace `Cargo.toml`:
@@ -913,7 +965,7 @@ See [docs/HIGH_SECURITY_FIXES.md](docs/HIGH_SECURITY_FIXES.md) for the finding-b
913
965
  1. Fork the repository
914
966
  2. Create a feature branch
915
967
  3. Add tests for new functionality
916
- 4. Run `cargo clippy` and `cargo test`
968
+ 4. Run `cargo fmt --all`, `cargo clippy --all-targets --all-features -- -D warnings`, and `cargo test`
917
969
  5. Submit a pull request
918
970
 
919
971
  ## License
@@ -951,15 +1003,7 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
951
1003
 
952
1004
  ---
953
1005
 
954
- **Current version:** 0.69.0
955
-
956
-
957
-
958
-
959
-
960
-
961
-
962
-
1006
+ **Current version:** 0.71.0
963
1007
 
964
1008
 
965
1009
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.69.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.69.0",
34
- "@clawmacdo/linux-x64": "0.69.0",
35
- "@clawmacdo/win32-x64": "0.69.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
  }