cloudflare-agents

Originally fromjezweb/claude-skills
Installation
SKILL.md

Cloudflare Agents

Last Updated: 2025-11-21

Quick Start

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()));
Related skills

More from secondsky/claude-skills

Installs
164
GitHub Stars
143
First Seen
Jan 25, 2026