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.
npx agentmods add skills/iofold/ainative-claude-plugins/cloudflare-ecosystemnpx skills add iofold/ainative-claude-plugins --skill cloudflare-ecosystemgit clone --depth 1 https://github.com/iofold/ainative-claude-pluginsWrote 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.
[](https://agentmods.dev/skills/iofold/ainative-claude-plugins/cloudflare-ecosystem)<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>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.
| Model | Per session | Once 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 |
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> { 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:
- Reference llms.txt directly - Most comprehensive source
- Look for specific service docs at developers.cloudflare.com/{service}
- 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
});
}
};
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.
- 4d ago First seen · 247 lines · 107 tokens per session scan A cf7ee046e646
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.
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.…
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…
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.
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…
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) …
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…