Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Assists with building and deploying applications on Cloudflare Workers edge computing platform. Use when working with Workers runtime, Wrangler CLI, KV, D1, R2, Durable Objects, Queues, or Hyperdrive. Trigger words: cloudflare, workers, edge functions, wrangler, KV, D1, R2, durable objects, edge computing.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-07 | ✗→✓ | ▲ Improved | 28% | 0% |
| case-20 | ✓→✓ | = Same ✓ | 5% | 0% |
| case-02 | ✓→✓ | = Same ✓ | 34% | 0% |
| case-03 | ✓→✓ | = Same ✓ | 21% | 0% |
| case-04 | ✓→✓ | = Same ✓ | 21% | 0% |
Cloudflare Workers enables building and deploying applications at the edge with sub-millisecond cold starts. The platform leverages the Workers runtime alongside storage services like KV, D1, R2, Durable Objects, and Queues to build globally distributed, low-latency applications.
wrangler init using ES Module syntax (export default { fetch }) and set compatibility_date in wrangler.toml.wrangler dev with hot reload and local KV/D1/R2 simulation.wrangler deploy and configure routes, bindings, and build settings in wrangler.toml.wrangler secret put KEY_NAME and type bindings with an Env interface.caches.default), Smart Placement, streaming responses with TransformStream, and HTMLRewriter for HTML transformation.ctx.waitUntil() for fire-and-forget async tasks like analytics or logging.User request: "Set up a Cloudflare Worker that serves cached API responses from KV"
Actions:
wrangler initwrangler.tomlwrangler devOutput: A Worker that checks KV for cached data, falls back to origin, and stores results in KV with TTL.
User request: "Build a Worker that runs on a schedule to sync data from an external API into D1"
Actions:
wrangler.tomlscheduled() handler that fetches external data and inserts into D1ctx.waitUntil() for non-blocking cleanup tasksOutput: A Worker with cron-triggered data synchronization and D1 storage.
compatibility_date in wrangler.toml to pin runtime behavior.export default) over Service Worker syntax.Env interface for type safety.ctx.waitUntil() for fire-and-forget async work that should not block the response.Cache-Control headers and leverage Cloudflare's edge cache.Other measured skills in the registry, with their headline benchmark lift.