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