Agent skill · AI & Agents

cloudflare-agents

Build AI agents on Cloudflare Workers with MCP integration, tool use, and LLM providers.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/agent/cloudflare-agents-secondsky-claude-skills/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Quick Start
  2. Core Features
  3. Agent Pattern
  4. Resources
  5. Core Documentation
  6. Integration Guides
  7. Advanced Features
  8. Error Reference
  9. Templates
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going