원클릭으로
schedule
Schedule a one-off or cron task via DeepCode's daemon.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Schedule a one-off or cron task via DeepCode's daemon.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.