with one click
schedule
Schedule a one-off or cron task via DeepCode's daemon.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Schedule a one-off or cron task via DeepCode's daemon.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Help build/debug DeepSeek API usage (openai-compatible).
Run a command on a recurring interval (poll CI etc.).
Read/extract/combine/split PDFs.
Launch this project's app to see a change in action.
Help author a new skill — frontmatter + body + best-trigger description.
Modify settings.json / hooks / permissions safely + explain trade-offs.
| name | schedule |
| description | Schedule a one-off or cron task via DeepCode's daemon. |
Schedule background work via the launchd LaunchAgent (macOS) or its
Linux equivalent. Two common shapes: one-shot (run at time T) or
recurring (cron expression).
Tasks live in ~/.deepcode/scheduled-tasks.json:
[
{
"id": "task-abc",
"type": "oneshot",
"runAt": "2026-05-28T17:00:00Z",
"command": "deepcode -p 'check the build status' -o json"
},
{
"id": "task-def",
"type": "cron",
"schedule": "0 9 * * *",
"command": "deepcode -p 'morning standup' -o text"
}
]
The launchd LaunchAgent (dev.deepcode.scheduler) fires every minute,
reads this file, and dispatches due tasks.
deepcode -p "<prompt>" with the
user's task description.Standard 5-field cron: min hour day-of-month month day-of-week.
Examples:
0 9 * * 1-5 — 9am weekdays*/15 * * * * — every 15 min0 0 1 * * — first of the month--mode dontAsk AND a clear
user confirmation in the same turn.