The workflow runs in a Cloudflare Workers application and needs stateful scheduled or durable agent work.
It explicitly provides persistent state, recurring and cron scheduling, and durable workflows.
Editorial confidence: highCompare schedulers and recurring-work patterns by hosting, permissions, monitoring, retries, state, and failure recovery.
The job
Includedcron-like recurring agent jobs · local or hosted scheduling · logging, retries, alerts, and run state
Not this pagedesigning the underlying business workflow · general multi-agent orchestration · unattended irreversible actions
30-second route
It explicitly provides persistent state, recurring and cron scheduling, and durable workflows.
Editorial confidence: highIt supplies scheduled-task setup, memory and task-queue patterns, and completion/error-handling guidance.
Editorial confidence: highIt documents external schedulers, persistent timers, and a file-based state/log architecture.
Editorial confidence: highThe selected sources support scheduling and state, but do not document a complete managed retry-and-alert solution.
Editorial confidence: highBefore you install
The sources explicitly cover schedules and state, while complete retry/alert operations are not documented by the selected skills.
Read the intervention guide →Source-led comparison
Facts are extracted from each selected Skill’s declared workflow. Signals describe public adoption; they are not a universal score.
Source notes
Why these candidatesEach candidate comes from tracked public sources and has a source-attributed adoption signal. This is a shortlist, not a catalogue or global ranking.
What this cannot establishWe read declared instructions and public signals. We do not run skills, benchmark outputs, audit security, or claim a universal best choice.
Use it forCloudflare Workers applications that need recurring or cron-triggered agent work with persistent state and durable multi-step workflows.
Avoid ifYou need a local scheduler or a workflow that is not being built on Cloudflare Workers.
ActionInstall
EditsDefine the Agent class, configure Durable Objects and SQLite migration, then schedule the bounded task with cron or an interval.
SetupInstall the `agents` package and configure the Durable Object binding and migration.
ContextCloudflare-hosted agent runtime.
OutputAn Agent class with scheduled handlers, persistent state, and optional `AgentWorkflow` processing.
ControlCode-first SDK configuration.
Invocationnpm install agents
Install scopeproject dependency
Agent fitDirect fit for a hosted recurring agent workflow with state.
Watch outThe source directs users to retrieve current Agents SDK documentation before implementation.
The skill explicitly covers scheduled tasks and its documentation map includes scheduling for `schedule()`, `scheduleEvery()`, and cron.SKILL.md:3, 20 · inspected 2026-07-20 · high confidence
It provides SQLite-backed persistent state, recurring/cron scheduling, and durable multi-step workflows.SKILL.md:34-40 · inspected 2026-07-20 · high confidence
Its API examples show cron and interval scheduling plus starting a workflow.SKILL.md:111-123 · inspected 2026-07-20 · high confidence
Setup includes installing `agents` and configuring a Durable Object with a SQLite migration.SKILL.md:45-65 · inspected 2026-07-20 · high confidence
Use it forA Claude Code-based recurring workflow that needs scheduled tasks, persistent memory or queue state, explicit consent boundaries, and completion checks.
Avoid ifYou only need a minimal scheduler and do not want MCP memory or scheduled-task setup.
ActionAdapt
EditsKeep the workflow bounded; use the scheduled-task prompt to record its result to memory and include error handling and a completion check.
SetupConfigure the listed `memory` and `scheduled-tasks` MCP servers, then create the scheduled task for the project directory.
ContextClaude Code with MCP servers for memory and scheduled tasks.
OutputA scheduled isolated agent session that writes workflow state to memory.
ControlPrompt-and-MCP configuration with explicit approval boundaries.
Invocationmcp__scheduled-tasks__create_scheduled_task(...)
Install scopeClaude Code configuration and MCP servers
Agent fitDirect fit for recurring Claude Code operations with state carried through memory.
Watch outScheduled tasks run in isolated sessions, so context must be shared through memory; the source says to verify completion and add error handling.
The skill is for scheduled and continuous agent operation and says users should explicitly scope autonomous operation.SKILL.md:10-25 · inspected 2026-07-20 · high confidence
It defines cron-based scheduled operations and gives recurring task examples.SKILL.md:86-113 · inspected 2026-07-20 · high confidence
It describes persistent memory and a task queue that survives session boundaries.SKILL.md:57-84, 149-173 · inspected 2026-07-20 · high confidence
It supplies MCP-server configuration for memory and scheduled tasks.SKILL.md:187-220 · inspected 2026-07-20 · high confidence
It warns that cron tasks are isolated and directs users to verify completion and add error handling.SKILL.md:268-275 · inspected 2026-07-20 · high confidence
Use it forA local, persistent Claude Code project that needs an inspectable file-based state and log layer plus a scheduler that survives session restarts.
Avoid ifYou want a managed hosted scheduler or built-in retry and alert handling.
ActionAdapt
EditsUse the supplied `data/` layout for run state and append-only logs; invoke a bounded command through the shown external scheduler and add your own failure-notification policy.
SetupCreate the kernel, command, scripts, and data directories; choose LaunchAgent, a systemd user timer, or pm2.
ContextProject-local Claude Code operating model with external scheduling.
OutputScheduled command execution with project-local JSON/Markdown state and logs.
ControlFilesystem-first architecture plus external OS/process scheduler.
InvocationNot yet mapped from the source.
Install scopeproject files plus selected external scheduler
Agent fitDirect fit where recurring jobs must survive session restarts and leave inspectable state.
Watch outThe skill explicitly recommends an external scheduler because Claude Code’s built-in cron ends with the session; it does not document retries or alerts.
The architecture assigns scripts to scheduled or event-driven tasks and the data layer to append-only logs and project state.SKILL.md:20-41 · inspected 2026-07-20 · high confidence
It states scheduled automation uses external cron because Claude Code built-in cron dies when the session ends.SKILL.md:212-215 · inspected 2026-07-20 · high confidence
It provides macOS LaunchAgent, Linux systemd timer with `Persistent=true`, and pm2 scheduling examples.SKILL.md:216-285 · inspected 2026-07-20 · high confidence
It defines JSON and Markdown as the filesystem data layer.SKILL.md:287-329 · inspected 2026-07-20 · high confidence
Its best-practices checklist repeats the external-cron recommendation and append-only logging.SKILL.md:377-388 · inspected 2026-07-20 · high confidence
Still comparing?