| 122 | |
| 123 | export const CRON_DELETE_DESCRIPTION = 'Cancel a scheduled cron job by ID' |
| 124 | export function buildCronDeletePrompt(durableEnabled: boolean): string { |
| 125 | return durableEnabled |
| 126 | ? `Cancel a cron job previously scheduled with ${CRON_CREATE_TOOL_NAME}. Removes it from .claude/scheduled_tasks.json (durable jobs) or the in-memory session store (session-only jobs).` |
| 127 | : `Cancel a cron job previously scheduled with ${CRON_CREATE_TOOL_NAME}. Removes it from the in-memory session store.` |
| 128 | } |
| 129 | |
| 130 | export const CRON_LIST_DESCRIPTION = 'List scheduled cron jobs' |
| 131 | export function buildCronListPrompt(durableEnabled: boolean): string { |