一键导入
cron
Scheduling rules for reminders and recurring tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Scheduling rules for reminders and recurring tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Add new LLM providers to Autobot with proper integration
Create proper releases following EVALinux standards with signed tags and changelogs
Testing guidelines for Autobot with AAA pattern and Crystal spec best practices
Create new tools for Autobot agent with proper schema and safety
| name | cron |
| description | Scheduling rules for reminders and recurring tasks. |
| tool | cron |
Always provide a short name for every job (max 30 chars). This label is shown in /cron and list output.
Keep it human-readable — describe what the job does, not how.
Bad: "Use the web_search tool to che" Good: "GitHub stars check"
The message field is the prompt for a background agent turn that runs without conversation context.
Write it as a self-contained instruction:
Bad: "Check the repo" Good: "Use the web_search tool to check https://github.com/user/repo for new releases published in the last 24 hours. If there is a new release, summarize the changelog."
Before creating a new job, always list existing jobs first.
If a matching job already exists, update it instead of creating a duplicate.
Never create duplicate jobs for the same purpose.
| Type | Parameter | Use case |
|---|---|---|
| Interval | every_seconds | Sub-minute or simple intervals (e.g. every 30s, every 5min) |
| Cron | cron_expr | Calendar-based schedules (e.g. weekdays at 9am) |
| One-time | at | Single future execution (ISO 8601 datetime in UTC) |
Five fields: MIN HOUR DOM MON DOW
* (any), */5 (every 5), 1-5 (range), 1,15 (list)*/5 * * * * (every 5 min), 0 9 * * 1-5 (weekdays 9am), 30 18 * * 0 (Sun 6:30pm)Always confirm with the user before add/remove/update:
Schedule: every 10 minutes
Message: "Use web_search to check..."
Next run: in 10 minutes