cloudflare-workers

Build, test, and deploy Cloudflare Workers with Wrangler.

1|Updated Oct 31, 2025
One-click install
npx skills add https://github.com/alex-tgk/saasquatch --skill cloudflare-workers-alex-tgk
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cloudflare-workers
Source: https://github.com/alex-tgk/saasquatch/tree/main/.claude/skills/cloudflare-workers
Command: npx skills add https://github.com/alex-tgk/saasquatch --skill cloudflare-workers-alex-tgk

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Enables developers to design, build, test, and deploy serverless Cloudflare Workers across the global edge network with guided practices and ready-to-use patterns.

Core Features & Use Cases

  • Bindings and runtimes: configure KV, D1, R2, Durable Objects, and WebSocket endpoints to create edge-first applications.
  • End-to-end workflow: scaffold, test locally with Wrangler, and deploy to production with confidence.
  • Runtime APIs and examples: leverage fetch, caches, HTMLRewriter, and other Cloudflare APIs to build fast, resilient services.

Quick Start

Install Wrangler, scaffold a new Worker, and run it locally to validate edge deployment.

Frequently Asked Questions about cloudflare-workers

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build and deploy Cloudflare Workers using Wrangler?

You deploy Cloudflare Workers by scaffolding a project with Wrangler, validating it locally, and running the Wrangler deploy command to push ES modules to the edge network.

What are Cloudflare Workers bindings for KV, R2, and Durable Objects?

Cloudflare Workers bindings securely connect your edge application to KV, R2, D1, and Durable Objects without managing API keys, enabling low-latency globally distributed state management.

How do I test Cloudflare Workers locally before deploying to production?

Test Cloudflare Workers locally by running the Wrangler development server, which accurately emulates runtime APIs and bindings to validate HTTP endpoints and scheduled tasks before production deployment.

Can I use WebSocket handlers and scheduled tasks in Cloudflare Workers?

Yes, Cloudflare Workers support building WebSocket handlers for real-time communication and scheduled tasks for cron-triggered execution within the edge runtime environment.

What runtime APIs are available when building Cloudflare Workers?

Cloudflare Workers provide standard runtime APIs including fetch, caches, and HTMLRewriter, allowing you to intercept and transform HTTP responses directly at the edge network.

Do I need ES modules for Cloudflare Workers deployment?

Yes, ES modules are a strict technical requirement for building and deploying Cloudflare Workers, ensuring proper encapsulation of your code across the serverless edge network.