cloudflare-ecosystem

cloudflare-ecosystem is a skill for Claude Code, Codex from iofold/ainative-claude-plugins. It costs 107 tokens per session (1,784 once invoked), scanned A, original, MIT.

A reference guide for Cloudflare, a platform for running web code and storing data close to users around the world.

In plain words
What is it for?
Use it when deploying Workers, setting up D1 databases, configuring KV or R2 storage, using Durable Objects, or troubleshooting Wrangler deployments.
Why use it?
It provides current configuration and implementation guidance for Cloudflare services whose settings and APIs can be easy to get wrong.

Skill for Claude CodeCodex

Part of the cloudflare-tools plugin — 1 skill shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/iofold/ainative-claude-plugins/cloudflare-ecosystem
Any agent
npx skills add iofold/ainative-claude-plugins --skill cloudflare-ecosystem
Clone the repo
git clone --depth 1 https://github.com/iofold/ainative-claude-plugins

Made for: Claude Code, Codex.

Or install cloudflare-tools, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cloudflare-ecosystem

README.md
[![agentmods](https://agentmods.dev/badge/skills/iofold/ainative-claude-plugins/cloudflare-ecosystem.svg)](https://agentmods.dev/skills/iofold/ainative-claude-plugins/cloudflare-ecosystem)
Your own site
<a href="https://agentmods.dev/skills/iofold/ainative-claude-plugins/cloudflare-ecosystem"><img src="https://agentmods.dev/badge/skills/iofold/ainative-claude-plugins/cloudflare-ecosystem.svg" alt="Measured on agentmods" height="20"></a>
Per session 107 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,784 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00107 $0.01784
Opus 5 $0.00053 $0.00892
Sonnet 5 $0.00021 $0.00357
Haiku 4.5 $0.00011 $0.00178

Measured 4d ago against content hash cf7ee046e646, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

cloudflare-ecosystem scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

async fetch(request: Request, env: Env): Promise<Response> {
cloudflare-tools/skills/cloudflare-ecosystem/SKILL.md · 247 lines

How it starts

The opening of the file, as written. The whole thing — 247 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Cloudflare Ecosystem

Overview

This skill provides access to current Cloudflare implementation patterns and API documentation. Use when conceptual knowledge exists but specific configuration, binding setup, or API syntax is needed.

Authoritative source: https://developers.cloudflare.com/llms.txt

Quick Reference: Core Services

Service Use Case Key Config
Workers Serverless compute at edge wrangler.toml main entry
D1 SQLite database at edge [[d1_databases]] binding
R2 S3-compatible object storage [[r2_buckets]] binding
KV Key-value store [[kv_namespaces]] binding
Durable Objects Stateful compute [[durable_objects.bindings]]
Sandbox SDK Isolated code execution [[containers]] + Durable Object
Hyperdrive Database connection pooling [[hyperdrive]] binding
AI Gateway Multi-provider AI with fallbacks API endpoint configuration
Queues Async task processing [[queues.producers]] and [[queues.consumers]]

Implementation Patterns

Accessing Official Documentation

When you need current API details or configuration:

  1. Reference llms.txt directly - Most comprehensive source
  2. Look for specific service docs at developers.cloudflare.com/{service}
  3. Check for recent updates - Beta features and new APIs change frequently

For this conversation: If implementation details are needed, fetch from https://developers.cloudflare.com/llms.txt or service-specific documentation.

Python Sandbox SDK (Common Gap)

Problem: Often suggest external services (AWS Lambda) instead of native solution.

Solution: Use Cloudflare Sandbox SDK for secure Python execution.

import { getSandbox } from "@cloudflare/sandbox";

export default {
  async fetch(request: Request, env: Env): Promise<Response> {
    const { code, input } = await request.json();

    const sandbox = getSandbox(env.Sandbox, `request-${Date.now()}`);

    // Write and execute Python code in isolated container
    await sandbox.writeFile('/tmp/script.py', code);
    const result = await sandbox.exec('python /tmp/script.py');

    return Response.json({
      success: result.exitCode === 0,
      output: result.stdout,
      error: result.stderr
    });
  }
};

Read the full file on GitHub · 247 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 247 lines · 107 tokens per session scan A cf7ee046e646

Subscribe to this mod's changes

cloudflare-ecosystem is a skill published in the GitHub repository iofold/ainative-claude-plugins (3 stars, last pushed 16d ago), licensed MIT. It adds 107 tokens to every session and 1,784 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

cloud-databases-onboarding

Guides users through discovering their database requirements, recommends a Google Cloud database based on a recommendation matrix, and assists in database creation. Use when a user asks 'What database service should I use?', 'Help me pick a database', or when a user wants to create a new database on Google Cloud.…

google/skills · 83 tokens

cloud-sql-basics

This file generates or explains Cloud SQL resources. Use this file when the user asks to create a Cloud SQL instance or database for MySQL, PostgreSQL, or SQL Server. Cloud SQL manages third-party MySQL, PostgreSQL, and SQL Server instances as resources in Cloud SQL. For example, when Cloud SQL creates an open-source…

google/skills · 108 tokens

azure-mgmt-mongodbatlas-dotnet

Manage MongoDB Atlas Organizations as Azure ARM resources using Azure.ResourceManager.MongoDBAtlas SDK. Use when creating, updating, listing, or deleting MongoDB Atlas organizations through Azure Marketplace integration. This SDK manages the Azure-side organization resource, not Atlas clusters/databases directly.

microsoft/skills · 64 tokens

azure-resource-manager-mysql-dotnet

Azure MySQL Flexible Server SDK for .NET. Database management for MySQL Flexible Server deployments. Use for creating servers, databases, firewall rules, configurations, backups, and high availability. Triggers: "MySQL", "MySqlFlexibleServer", "MySQL Flexible Server", "Azure Database for MySQL", "MySQL database…

microsoft/skills · 87 tokens

azure-resource-manager-redis-dotnet

Azure Resource Manager SDK for Redis in .NET. Use for MANAGEMENT PLANE operations: creating/managing Azure Cache for Redis instances, firewall rules, access keys, patch schedules, linked servers (geo-replication), and private endpoints via Azure Resource Manager. NOT for data plane operations (get/set keys, pub/sub) …

microsoft/skills · 114 tokens

azure-resource-manager-sql-dotnet

Azure Resource Manager SDK for Azure SQL in .NET. Use for MANAGEMENT PLANE operations: creating/managing SQL servers, databases, elastic pools, firewall rules, and failover groups via Azure Resource Manager. NOT for data plane operations (executing queries) - use Microsoft.Data.SqlClient for that. Triggers: "SQL…

microsoft/skills · 109 tokens