cloudflare-workers

Develop and deploy serverless applications on Cloudflare Workers with Wrangler CLI.

1|Updated Sep 26, 2025
One-click install
npx skills add https://github.com/pascallammers/mylo-travel-concierge-v2 --skill cloudflare-workers-pascallammers
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cloudflare-workers
Source: https://github.com/pascallammers/mylo-travel-concierge-v2/tree/main/.factory/skills/cloudflare-workers
Command: npx skills add https://github.com/pascallammers/mylo-travel-concierge-v2 --skill cloudflare-workers-pascallammers

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill simplifies the development, deployment, and management of serverless applications using Cloudflare Workers, enabling efficient edge computing.

Core Features & Use Cases

  • Edge Function Execution: Run JavaScript/TypeScript code close to your users for low latency.
  • Stateful Applications: Utilize Durable Objects for strongly consistent, stateful services.
  • Global Storage: Leverage KV, R2, and D1 for distributed data storage and retrieval.
  • Use Case: Build a global API that responds instantly to user requests, caches data at the edge using KV, and handles real-time interactions with Durable Objects for a seamless user experience.

Quick Start

Use the cloudflare-workers skill to deploy a new worker to production.

Frequently Asked Questions about cloudflare-workers

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

FAQPage Schema
How do I deploy serverless applications to Cloudflare Workers?

Deploy serverless applications to Cloudflare Workers by writing JavaScript or TypeScript edge functions and using the Wrangler CLI to publish them globally for low-latency execution.

What is the best way to manage state in edge computing applications?

Manage state in edge computing applications by using Durable Objects for strongly consistent, stateful services and KV storage for distributed, eventually consistent data retrieval.

Can I use R2 object storage with Cloudflare Workers for global data access?

R2 object storage integrates natively with Cloudflare Workers to provide distributed data storage and retrieval, enabling scalable, global data access without egress fees.

How do I set up local development for Cloudflare Workers using Wrangler CLI?

Set up local development for Cloudflare Workers by installing the Wrangler CLI, configuring your project, and running a local server to test edge functions before production deployment.

When should I use Durable Objects instead of KV storage for stateful services?

Durable Objects provide strongly consistent, real-time state management for interactive sessions, whereas KV storage is designed for eventually consistent, distributed data caching at the edge.

Does Cloudflare Workers support building scalable APIs with low latency?

Cloudflare Workers supports building scalable, low-latency APIs by executing JavaScript code close to users at the edge, caching responses with KV, and handling real-time interactions with Durable Objects.