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);
      }
    };
Installs
235
GitHub Stars
172
First Seen
Jan 25, 2026
cloudflare-agents — secondsky/claude-skills