cloudflare-opennext

Instalação
CLI
npx skills add https://github.com/null-shot/cloudflare-skills --skill cloudflare-opennext

Instale esta skill com a CLI e comece a usar o fluxo de trabalho SKILL.md em seu espaço de trabalho.

Última atualização em 4/29/2026

Cloudflare Skills

A collection of Agent Skills for building on Cloudflare, Workers, the Agents SDK, and the wider Cloudflare Developer Platform.

Installing Skills

These skills work with any agent that supports the Agent Skills standard, including Claude Code, OpenCode, OpenAI Codex, and Pi.

Copy the skill directories you need to the appropriate location for your agent:

Agent Skill Directory Docs
Claude Code ~/.claude/skills/ docs
OpenCode ~/.config/opencode/skill/ docs
OpenAI Codex ~/.codex/skills/ docs
Pi ~/.pi/agent/skills/ docs

Skills

Core Platform

Skill Useful for Directory
workers Core Workers fundamentals including handlers, configuration, and Service Bindings workers/
wrangler Deploying and managing Workers, KV, R2, D1, Vectorize, Queues, Workflows wrangler/
web-perf Auditing Core Web Vitals (FCP, LCP, TBT, CLS), render-blocking resources, network chains web-perf/
static-assets Serve static files and single-page applications from Workers static-assets/

Storage & Databases

Skill Useful for Directory
d1-database Serverless SQLite database for structured data at the edge d1-database/
durable-objects Stateful coordination (chat rooms, games, booking), RPC, SQLite, alarms, WebSockets durable-objects/
kv Eventually-consistent key-value storage distributed globally kv/
r2-storage S3-compatible object storage for files, images, and large data r2-storage/
vectorize Vector database for embeddings and semantic search at the edge vectorize/
hyperdrive Connection pooling and caching for PostgreSQL and MySQL databases hyperdrive/

AI & Agents

Skill Useful for Directory
agents-sdk Building stateful AI agents with state, scheduling, RPC, MCP servers, email, and streaming chat agents-sdk/
workers-ai Run AI inference at the edge with OpenAI SDK and Workers AI workers-ai/
building-ai-agent-on-cloudflare Building AI agents with state, WebSockets, and tool integration building-ai-agent-on-cloudflare/
building-mcp-server-on-cloudflare Building remote MCP servers with tools, OAuth, and deployment building-mcp-server-on-cloudflare/

Background Processing

Skill Useful for Directory
queues Asynchronous message queues for reliable background processing queues/
workflows Durable, long-running workflows with automatic retries and state persistence workflows/
analytics-engine Write and query high-cardinality event data at scale with SQL analytics-engine/

Frameworks & Tools

Skill Useful for Directory
cloudflare-opennext Deploy Next.js to Cloudflare Workers with full App Router, Pages Router, ISR, and SSG support cloudflare-opennext/
browser-rendering Headless Chrome automation for web scraping, screenshots, PDFs, and testing at the edge browser-rendering/

Usage

When a request matches a skill's triggers, the agent loads and applies the relevant skill to provide accurate, up-to-date guidance.

Validating Skills

To ensure skills follow the Agent Skills standard and have valid frontmatter, use the skills-ref validation tool:

# Validate a single skill
npx skills-ref validate ./agents-sdk

# Validate all skills
npx skills-ref validate ./*/

This checks that each SKILL.md frontmatter is valid and follows all naming conventions.

Resources