An officially maintained collection of Agent Skills by Cloudflare, providing standardized skills and commands for developers building applications on the Cloudflare platform (Workers, Agents SDK, Storage, AI), with support for multiple AI agent tools including Claude Code, Cursor, and OpenCode.
Overview#
Cloudflare Skills is an officially maintained collection of Agent Skills by Cloudflare, designed to help developers build applications on the Cloudflare platform using AI agent tools (such as Claude Code, Cursor). The project is licensed under Apache-2.0 and is actively maintained.
Core Capabilities#
Skills - Context-aware Auto-loading#
| Skill Name | Description |
|---|---|
cloudflare | Comprehensive platform skill covering Workers, Pages, Storage (KV, D1, R2), AI (Workers AI, Vectorize, Agents SDK), Networking (Tunnel, Spectrum), Security (WAF, DDoS), and IaC (Terraform, Pulumi) |
agents-sdk | Build stateful AI agents with state, scheduling, RPC, MCP servers, email, and streaming chat |
durable-objects | Stateful coordination (chat rooms, games, bookings), RPC, SQLite, alarms, WebSockets |
sandbox-sdk | Secure code execution for AI code execution, code interpreters, CI/CD systems, and interactive development environments |
wrangler | Deploy and manage Workers, KV, R2, D1, Vectorize, Queues, Workflows |
web-perf | Audit core Web vitals (FCP, LCP, TBT, CLS), render-blocking resources, network chains |
building-mcp-server-on-cloudflare | Build remote MCP servers with tools, OAuth, and deployment |
building-ai-agent-on-cloudflare | Build AI agents with state, WebSockets, and tool integration |
Commands - Explicit User Invocation#
/cloudflare:build-agent: Build AI agents on Cloudflare using Agents SDK/cloudflare:build-mcp: Build MCP servers on Cloudflare
Installation & Quick Start#
Claude Code (Recommended)#
/plugin marketplace add cloudflare/skills
/plugin install cloudflare@cloudflare
Cursor#
Install from Cursor Marketplace or manually add: Settings > Rules > Add Rule > Remote Rule (Github) with cloudflare/skills
Using npx skills CLI#
npx skills add https://github.com/cloudflare/skills
Manual Installation#
Clone the repository and copy skill folders to the appropriate directory:
- Claude Code:
~/.claude/skills/ - Cursor:
~/.cursor/skills/ - OpenCode:
~/.config/opencode/skills/ - OpenAI Codex:
~/.codex/skills/ - Pi:
~/.pi/agent/skills/
Usage Examples#
/build-agent a customer support chatbot
/build-agent real-time coding assistant with WebSocket
/build-mcp [description]
MCP Server Integration#
The project includes 5 remote MCP server configurations:
| Server Name | Function |
|---|---|
cloudflare-api | Cloudflare API access |
cloudflare-docs | Latest Cloudflare documentation and references |
cloudflare-bindings | Build Workers applications with storage, AI, and compute primitives |
cloudflare-builds | Manage and gain insights into Workers builds |
cloudflare-observability | Debug and analyze application logs and analytics |
Architecture Design#
cloudflare/skills/
├── .claude-plugin/ # Claude Code plugin config
├── .cursor-plugin/ # Cursor plugin config
├── commands/ # User-invoked commands
├── rules/ # Rule definitions
├── skills/ # Core skill definitions
├── .mcp.json # MCP server configuration
├── LICENSE
└── README.md
Key Technical Features:
- Markdown-based skill definitions
- Context-aware auto-loading mechanism
- Multi-platform plugin system support
- Real-time capabilities via HTTP MCP servers