원클릭으로
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