refactor(cron): remove CLI cron commands and unify scheduling via cron tool

This commit is contained in:
Re-bin
2026-03-03 05:51:24 +00:00
parent 9a41aace1a
commit c05cb2ef64
3 changed files with 3 additions and 237 deletions

View File

@@ -901,23 +901,6 @@ MCP tools are automatically discovered and registered on startup. The LLM can us
Interactive mode exits: `exit`, `quit`, `/exit`, `/quit`, `:q`, or `Ctrl+D`.
<details>
<summary><b>Scheduled Tasks (Cron)</b></summary>
```bash
# Add a job
nanobot cron add --name "daily" --message "Good morning!" --cron "0 9 * * *"
nanobot cron add --name "hourly" --message "Check status" --every 3600
# List jobs
nanobot cron list
# Remove a job
nanobot cron remove <job_id>
```
</details>
<details>
<summary><b>Heartbeat (Periodic Tasks)</b></summary>