clawmacdo 0.65.0 → 0.66.1

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 +40 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -143,6 +143,7 @@ clawmacdo plugin-install --instance <deploy-id> --plugin "@openguardrails/moltgu
143
143
  clawmacdo update-ip --instance <deploy-id>
144
144
 
145
145
  # Enable Tailscale Funnel (public HTTPS access)
146
+ # Performs clean Tailscale registration (wipes stale state if hostname mismatch)
146
147
  clawmacdo tailscale-funnel --instance <deploy-id> --auth-key "$TAILSCALE_AUTH_KEY"
147
148
  clawmacdo funnel-on --instance <deploy-id>
148
149
 
@@ -515,6 +516,44 @@ clawmacdo list-backups
515
516
  clawmacdo deploy --restore-from ~/.openclaw/backups/openclaw-2024-03-09_14-30-15.tar.gz
516
517
  ```
517
518
 
519
+ ### Scheduled Cron Jobs
520
+
521
+ ```bash
522
+ # Add a scheduled message (sent via telegram on a cron schedule)
523
+ clawmacdo cron-message \
524
+ --instance my-server \
525
+ --name "daily-digest" \
526
+ --schedule "0 9 * * *" \
527
+ --message "Summarise today's headlines" \
528
+ --channel telegram
529
+
530
+ # Add a scheduled message using an interval instead of a cron expression
531
+ clawmacdo cron-message \
532
+ --instance my-server \
533
+ --name "hourly-check" \
534
+ --every 1h \
535
+ --message "What is the current BTC price?" \
536
+ --channel telegram \
537
+ --to 7547736315
538
+
539
+ # Add a scheduled tool execution
540
+ clawmacdo cron-tool \
541
+ --instance my-server \
542
+ --name "weekly-report" \
543
+ --schedule "0 8 * * 1" \
544
+ --tool web-search \
545
+ --args "latest AI news" \
546
+ --channel telegram
547
+
548
+ # List all cron jobs on an instance
549
+ clawmacdo cron-list --instance my-server
550
+
551
+ # Remove a cron job by name
552
+ clawmacdo cron-remove --instance my-server --name daily-digest
553
+ ```
554
+
555
+ > **Performance note:** All cron commands batch the device-pairing approval step with the first gateway command into a single SSH session, minimising handshake overhead.
556
+
518
557
  ## Examples
519
558
 
520
559
  ### Full Deploy with All Options
@@ -859,7 +898,7 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
859
898
 
860
899
  ---
861
900
 
862
- **Current version:** 0.65.0
901
+ **Current version:** 0.66.1
863
902
 
864
903
 
865
904
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.65.0",
3
+ "version": "0.66.1",
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.65.0",
34
- "@clawmacdo/linux-x64": "0.65.0",
35
- "@clawmacdo/win32-x64": "0.65.0"
33
+ "@clawmacdo/darwin-arm64": "0.66.1",
34
+ "@clawmacdo/linux-x64": "0.66.1",
35
+ "@clawmacdo/win32-x64": "0.66.1"
36
36
  }
37
37
  }