MCPcopy Create free account
hub / github.com/codeaashu/claude-code / buildCronCreateDescription

Function buildCronCreateDescription

src/tools/ScheduleCronTool/prompt.ts:68–72  ·  view source on GitHub ↗
(durableEnabled: boolean)

Source from the content-addressed store, hash-verified

66export const CRON_LIST_TOOL_NAME = 'CronList'
67
68export 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
74export function buildCronCreatePrompt(durableEnabled: boolean): string {
75 const durabilitySection = durableEnabled

Callers 1

descriptionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected