$npx skillfedfor your agent

cloudflare-expert

Cloudflare Expert provides in-depth knowledge for building serverless applications on Cloudflare's edge platform. Learn to deploy code globally with Workers, optimize caching and CDN performance, implement security features like WAF and DDoS protection, and manage distributed state using Workers KV and Durable Objects.

Cloudflare Expert helps you build and deploy serverless edge computing applications using Workers, CDN, and security services.

AI-generated summary based on this skill's SKILL.md

38 8 Apache-2.0updated by personamanagmentlayer

Decision gist · record as of 2026-03-30

Cloudflare Expert helps you build and deploy serverless edge computing applications using Workers, CDN, and security services. Cloudflare Expert provides in-depth knowledge for building serverless applications on Cloudflare's edge platform. Learn to deploy code globally with Workers, optimize caching and CDN performance, implement security features like WAF and DDoS protection, and manage distributed state using Workers KV and Durable Objects.

manual: git clone https://github.com/personamanagmentlayer/pcl → cp -r pcl/stdlib/cloud/cloudflare-expert ~/.claude/skills/cloudflare-expert
stdlib/cloud/cloudflare-expert/SKILL.md · version de4bb3ed

Use it when

  • Cloudflare Expert explains that Durable Objects create stateful, real-time applications on the edge by providing isolated.
  • Cloudflare Expert covers caching strategies including cache-first, network-first, and stale-while-revalidate patterns.

Verify before relying

Read SKILL.md below before installing (1 file). Open directory: indexed for reading, not audited.

Same gist for agents: .md · .json

Install

personamanagmentlayer/pcl/cloudflare-expert · repository language: TypeScript

Open directory. Skills are indexed for reading, not audited. Review a skill's body before installing it.

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

How do I build serverless apps with Cloudflare Workers?

Cloudflare Expert teaches you to build serverless applications by deploying JavaScript or TypeScript code to Cloudflare's global edge network. Workers execute your code closer to users, reducing latency. Start with the Wrangler CLI to scaffold projects, write request handlers, and deploy instantly. Cloudflare Expert covers routing, middleware patterns, and integrating with Workers KV for persistent storage and Durable Objects for stateful logic.

What are Durable Objects and how do they enable stateful computing?

Cloudflare Expert explains that Durable Objects create stateful, real-time applications on the edge by providing isolated, persistent storage tied to unique IDs. Use them for WebSocket chat, collaborative editing, rate limiting counters, and session management. Each Durable Object instance maintains state across requests and coordinates with other objects, enabling complex distributed applications without traditional databases.

How can Cloudflare Workers optimize content delivery and caching?

Cloudflare Expert covers caching strategies including cache-first, network-first, and stale-while-revalidate patterns. Use Workers KV for global key-value storage, set appropriate Cache-Control headers, and leverage Cloudflare's CDN to serve content from edge locations. Implement geolocation routing to serve region-specific content, purge cache on demand, and monitor cache hit ratios for performance gains.

How do I implement security, rate limiting, and request handling in Workers?

Cloudflare Expert teaches security best practices including JWT authentication, CORS configuration, and request validation. Implement rate limiting using Durable Objects as distributed counters or Workers KV for simple thresholds. Add WAF rules, DDoS protection, and IP filtering. Use HTMLRewriter to sanitize responses, validate headers, and block malicious requests before they reach your origin.

What is the Wrangler CLI and how do I use it for deployment?

Cloudflare Expert covers Wrangler, the official CLI for developing and deploying Workers. Use `wrangler init` to scaffold projects, `wrangler dev` for local testing, and `wrangler publish` to deploy globally. Configure bindings for KV, Durable Objects, and environment variables in `wrangler.toml`. Manage multiple environments, preview deployments, and monitor logs through Wrangler.

How can I reduce latency using edge computing with Cloudflare?

Cloudflare Expert demonstrates latency reduction by running compute at the edge instead of centralized servers. Deploy Workers globally to execute logic near users, cache responses at edge locations, and use Durable Objects for distributed state. Implement A/B testing, personalization, and load balancing at the edge. Monitor performance with analytics and optimize cold start times through code splitting and efficient dependencies.

SKILL.md

Rendered from the published skill. Quoted content, verbatim.

Cloudflare Expert

Expert guidance for Cloudflare Workers, edge computing, CDN optimization, and Cloudflare security services.

Core Concepts

Cloudflare Services
  • Cloudflare Workers (serverless edge computing)
  • CDN and caching
  • DDoS protection
  • Web Application Firewall (WAF)
  • DNS management
  • Load balancing
  • Workers KV (key-value storage)
  • Durable Objects
Edge Computing
  • Deploy code globally
  • Reduce latency
  • Process at the edge
  • Distributed state
  • Real-time applications
Developer Tools
  • Wrangler CLI
  • Workers Playground
  • Edge APIs
  • Analytics and logs

Cloudflare Workers

```javascript // Basic Worker export default { async fetch(request, env, ctx) { return new Response('Hello from Cloudflare Workers!', { headers: { 'Content-Type': 'text/plain' } }); } };

// Advanced routing export default { async fetch(request, env, ctx) { const url = new

(truncated - see the full file via the links below)

File tree — 1 file
stdlib/cloud/cloudflare-expert/SKILL.md

Let your AI agent find skills like this

Example. Real query, live index.

You found this page by searching. An agent finds it by wishing: SkillFed indexes 56,283 agent skills by what they can do, searchable in plain language.

wish › “Build and deploy serverless edge computing applications”

Give your agent the search over MCP, or paste the wish link into any chat. No install? Search from any chat →

Related skills

cloudflare-worker-dev
by curiositech · curiositech/some_claude_skills

This skill guides you through building production edge APIs with Cloudflare Workers, KV storage for caching and state, and Durable Objects for real-time coordination. It covers request routing, CORS handling, geohash-based caching patterns, IP rate limiting, and wrangler configuration to deploy across environments.

MITfor claude-codeupdated Jul 2026
★ 164repo stars
cloudflare-workers-security
by secondsky · secondsky/claude-skills

Cloudflare Workers Security delivers production patterns for protecting APIs and Workers through authentication verification, request rate limiting, input validation, and security headers. It covers JWT and API key validation, CORS configuration, and defends against common vulnerabilities like injection, XSS, and unauthorized access.

MITupdated Jul 2026
★ 196repo stars
bun-cloudflare-workers
by secondsky · secondsky/claude-skills

This skill enables developers to deploy and execute Bun applications directly on Cloudflare Workers, combining the speed of Bun's runtime with Cloudflare's global edge network. It provides production-grade tooling for serverless workloads, including support for modern frameworks and AI service integrations. Ideal for teams building high-performance, distributed applications that need minimal latency and automatic scaling.

MITupdated Jul 2026
★ 196repo stars
cloudflare-development
by Mindrally · Mindrally/skills

This skill covers development patterns and architectural guidance for Cloudflare's edge platform, including Workers for compute, Pages for frontend hosting, KV for caching, D1 for databases, R2 for object storage, and Durable Objects for stateful coordination. Learn optimization techniques, security practices, and configuration strategies to build performant serverless applications at the edge.

Apache-2.0updated Jun 2026
★ 202repo stars
cloudflare-kv
by secondsky · secondsky/claude-skills

This skill streamlines setup and configuration of Cloudflare Workers KV storage namespaces, handling bindings and environment integration for Claude Code CLI. Part of a vetted collection of 142 production-ready skills designed for immediate deployment in Claude Code and Factory Droid environments.

MITupdated Jul 2026
★ 196repo stars
cloudflare-workers-observability
by secondsky · secondsky/claude-skills

Cloudflare Workers Observability equips you with structured logging, custom metrics via Analytics Engine, real-time log streaming through Tail Workers, and alerting capabilities for production deployments. The skill covers critical patterns for request context tracking, sensitive data redaction, log sampling, and error prevention across all observability components.

MITupdated Jul 2026
★ 196repo stars

More skills Cloudflare (unlicensed) · cloudflare-workers (MIT) · hono-cloudflare (MIT) · wrangler (MIT) · Cloudflare Agentic Inbox (NOASSERTION) · airflow-expert (Apache-2.0) · building-mcp-server-on-cloudflare (Apache-2.0) · building-ai-agent-on-cloudflare (Apache-2.0)

Tags
serverless-edgeglobal-deploymentrequest-routingdistributed-statereal-time-appsapi-gatewaycontent-deliverysecurity-middleware