·workflows
</>

workflows

null-shot/cloudflare-skills

Durable, long-running workflows with automatic retries and state persistence. Load when building multi-step async processes, implementing human-in-the-loop approval flows, coordinating API calls with retry logic, or creating reliable background jobs that survive restarts.

2Installs·0Trend·@null-shot

Installation

$npx skills add https://github.com/null-shot/cloudflare-skills --skill workflows

SKILL.md

Build durable, long-running workflows that survive restarts and handle retries automatically using Cloudflare Workflows.

| Define workflow | class MyWorkflow extends WorkflowEntrypoint | | Execute step | await step.do('name', async () => { ... }) | | Sleep/pause | await step.sleep('wait', '1 minute') | | Step with retries | await step.do('name', { retries: { limit: 5 } }, async () => {}) | | Create instance | await env.MYWORKFLOW.create({ id, params }) |

| Get instance | await env.MYWORKFLOW.get(id) | | Check status | await instance.status() |

Durable, long-running workflows with automatic retries and state persistence. Load when building multi-step async processes, implementing human-in-the-loop approval flows, coordinating API calls with retry logic, or creating reliable background jobs that survive restarts. Source: null-shot/cloudflare-skills.

View raw

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/null-shot/cloudflare-skills --skill workflows
Category
</>Dev Tools
Verified
First Seen
2026-02-05
Updated
2026-02-18

Quick answers

What is workflows?

Durable, long-running workflows with automatic retries and state persistence. Load when building multi-step async processes, implementing human-in-the-loop approval flows, coordinating API calls with retry logic, or creating reliable background jobs that survive restarts. Source: null-shot/cloudflare-skills.

How do I install workflows?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/null-shot/cloudflare-skills --skill workflows Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor

Where is the source repository?

https://github.com/null-shot/cloudflare-skills