AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Cloudflare Workers

skill-ashish7802-awesome-api-skills-cloudflare-workers · by ashish7802

A Claude skill from ashish7802/awesome-api-skills.

No reviews yet
0 installs
31 views
0.0% view→install

Install

$ agentstack add skill-ashish7802-awesome-api-skills-cloudflare-workers

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ashish7802-awesome-api-skills-cloudflare-workers)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Cloudflare Workers? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Cloudflare Workers Skill

> Build serverless applications and deploy globally across the Cloudflare edge network.

Ecosystem Graph Preview

graph LR
  cloudflare-workers["cloudflare-workers"]:::core
  classDef core fill:#f9f,stroke:#333,stroke-width:4px;
  cloudflare-workers -- "works well with" --> hono
  cloudflare-workers -- "integrates with" --> drizzle
  deno-deploy -- "alternative to" --> cloudflare-workers

Recommended Next Skills

  • [deno-deploy](/skills/deno-deploy) (Score: 0.82)

Why: Direct relationship, Both are Cloud, Shared ecosystem (javascript), Similar network profile

  • [drizzle](/skills/drizzle) (Score: 0.8)

Why: Direct relationship, Both are Developer Tools, Can deploy to cloudflare

  • [hono](/skills/hono) (Score: 0.72)

Why: Direct relationship, Shared ecosystem (javascript), Can deploy to cloudflare, Similar network profile

Quick Start

Workers run V8 isolates, meaning there are virtually zero cold starts compared to AWS Lambda. Your code executes physically close to the user in hundreds of data centers globally.

npm create cloudflare@latest

Production Patterns

KV and Durable Objects

Workers are stateless. To persist data at the edge, use Cloudflare KV for read-heavy eventual consistency, or Durable Objects for strongly consistent transactional state (like WebSockets or counters).

Architecture & Scaling

Web Standard APIs

Workers do not run Node.js (though compatibility is improving). You must use Web Standard APIs (fetch, Request, Response, crypto.subtle). Avoid libraries that depend heavily on fs or native Node C++ bindings.

Error Recovery

Workers have strict CPU time limits (e.g., 10-50ms). Doing heavy CPU processing will cause the worker to be killed. Offload heavy processing to traditional servers or use Cloudflare Queues.

Security Notes

Use wrangler secret put to securely store API keys. These are injected into the env object passed to your fetch handler, ensuring secrets never touch the codebase.

References

Why use this skill

Use this when your agent works with cloudflare-workers — structured patterns beat pasted docs and prevent common hallucinations.

AI pitfalls

  • Referencing CLI flags or config keys that do not exist
  • Using outdated major versions of tools
  • Skipping lockfile or version pinning in examples

Production checklist

  • [ ] Secrets in environment variables, not source code
  • [ ] Error handling and logging in place
  • [ ] Rate limits and timeouts configured

Related skills

  • [hono](../hono/SKILL.md) — works well with
  • [drizzle](../drizzle/SKILL.md) — integrates with

> Last Verified: 2026-07-02

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.