| 66 | export const CRON_LIST_TOOL_NAME = 'CronList' |
| 67 | |
| 68 | export function buildCronCreateDescription(durableEnabled: boolean): string { |
| 69 | return durableEnabled |
| 70 | ? 'Schedule a prompt to run at a future time — either recurring on a cron schedule, or once at a specific time. Pass durable: true to persist to .claude/scheduled_tasks.json; otherwise session-only.' |
| 71 | : 'Schedule a prompt to run at a future time within this Claude session — either recurring on a cron schedule, or once at a specific time.' |
| 72 | } |
| 73 | |
| 74 | export function buildCronCreatePrompt(durableEnabled: boolean): string { |
| 75 | const durabilitySection = durableEnabled |