cloudflare-agents
Build AI agents on Cloudflare Workers with MCP integration, tool use, and LLM providers.
npx skills add majiayu000/claude-skill-registry --skill cloudflare-agents-secondsky-claude-skills --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Cloudflare Agents **Last Updated**: 2025-11-21 ## Quick Start ```typescript export default { async fetch(request, env, ctx) { const agent = { tools: [ { name: 'getTodo', handler: async ({id}) => ({id, title: 'Task'}) } ], async run(input) { return await processWithLLM(input, this.tools); } }; return Response.json(await agent.run(await request.text())); } }; ``` ## Core Features - **Tool Integration**: Register and execute tools - **LLM Providers**: OpenAI, Anthropic, Google Gemini - **MCP Protocol**: Model Context Protocol support - **Cloudflare Bindings**: D1, KV, R2, Durable Objects ## Agent Pattern ```typescript const agent = { tools: [...], systemPrompt: 'You are a helpful assistant', model: 'gpt-4o', async run(input) { // Process with LLM } }; ``` ## Resources ### Core Documentation - `references/patterns-concepts.md` (317 lines) - What is Cloudflare Agents, patterns & concepts, critical rules, known issues prevention - `references/configuration-guide.md` (152 lines) - Complete configuration deep dive - `references/agent-api.md` (115 lines) - Complete Agent Class API reference ### Integration Guides - `references/http-sse-guide.md` (74 lines) - HTTP & Server-Sent Events - `r
- Quick Start
- Core Features
- Agent Pattern
- Resources
- Core Documentation
- Integration Guides
- Advanced Features
- Error Reference
- Templates
What does the cloudflare-agents skill do?
Build AI agents on Cloudflare Workers with MCP integration, tool use, and LLM providers.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill cloudflare-agents-secondsky-claude-skills --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
