By netlify
Manage full Netlify workflows from Claude: deploy sites, configure CDN caching and image optimization, write serverless and edge functions, set up authentication, manage Postgres databases with Drizzle, and route AI model calls through Netlify's proxy.
Reference for Netlify AI Gateway — the managed proxy that routes calls to OpenAI, Anthropic, and Google Gemini SDKs without provider API keys. Use this skill any time the user wants to add AI on a Netlify site (chat, completion, reasoning, image generation, image-to-image edit/stylize), choose or change a model, wire up the OpenAI / Anthropic / @google/genai SDK, decide which provider to use for an image-gen feature (it's Gemini-only on the gateway), or debug "model not found" / "API key missing" against the gateway. Required reading before pinning a model — the gateway exposes a curated subset, not every provider model.
Guide for using Netlify Blobs for file and asset storage — images, documents, uploads, exports, cached binary artifacts. Covers getStore(), CRUD operations, metadata, listing, deploy-scoped vs site-scoped stores, and local development. Do NOT use Blobs as a dynamic data store — use Netlify Database for that.
Guide for controlling caching on Netlify's CDN. Use when configuring cache headers, setting up stale-while-revalidate, implementing on-demand cache purge, or understanding Netlify's CDN caching behavior. Covers Cache-Control, Netlify-CDN-Cache-Control, cache tags, durable cache, and framework-specific caching patterns.
Guide for using the Netlify CLI and deploying sites. Use when installing the CLI, linking sites, deploying (Git-based or manual), managing environment variables, or running local development. Covers netlify dev, netlify deploy, Git vs non-Git workflows, and environment variable management.
Reference for netlify.toml configuration. Use when configuring build settings, redirects, rewrites, headers, deploy contexts, environment variables, or any site-level configuration. Covers the complete netlify.toml syntax including redirects with splats/conditions, headers, deploy contexts, functions config, and edge functions config.
External network access
Connects to servers outside your machine
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Public Netlify skills for AI coding agents. Each skill is a focused, factual reference for a Netlify platform primitive — designed to help agents build correctly on Netlify without needing to search docs.
| Skill | What it covers |
|---|---|
| netlify-functions | Serverless functions — modern syntax, routing, background/scheduled/streaming |
| netlify-edge-functions | Edge compute — Deno runtime, middleware, geolocation |
| netlify-blobs | Object storage — key-value and binary data |
| netlify-database | Managed Postgres (Neon) with Drizzle ORM and migrations |
| netlify-image-cdn | Image transformation and optimization via CDN |
| netlify-forms | HTML form handling, AJAX submissions, spam filtering |
| netlify-config | netlify.toml — redirects, headers, build settings, deploy contexts |
| netlify-cli-and-deploy | CLI commands, Git vs manual deploys, environment variables |
| netlify-frameworks | Framework adapters for Vite, Astro, TanStack, and Next.js |
| netlify-caching | CDN cache control, cache tags, purge, stale-while-revalidate |
| netlify-ai-gateway | AI Gateway proxy for OpenAI, Anthropic, and Google SDKs |
| netlify-identity | User authentication — signups, logins, OAuth, role-based access control |
| netlify-deploy | Deployment workflow — auth, site linking, preview/production deploys |
Some skills include references/ subdirectories with deeper content:
Install the Netlify plugin from the Codex plugin directory in the Codex desktop app.
The plugin lets Codex deploy to Netlify without leaving your coding workflow. You can create projects, generate preview URLs, deploy to production, validate build configuration, and inspect deploy status and logs. For full details, refer to Deploy from Codex with the Netlify Plugin.
Copy the pre-built codex/ directory into your project root:
git clone --depth 1 https://github.com/netlify/context-and-tools.git /tmp/netlify-skills && \
cp -r /tmp/netlify-skills/codex . && \
rm -rf /tmp/netlify-skills
This gives you codex/AGENTS.md (the skill router) and codex/skills/ with all Netlify skills. Codex discovers AGENTS.md automatically and activates skills by name using $skill-name syntax.
Copy the pre-built codex/ directory into your project root, then point Copilot CLI at it:
git clone --depth 1 https://github.com/netlify/context-and-tools.git /tmp/netlify-skills && \
cp -r /tmp/netlify-skills/codex . && \
rm -rf /tmp/netlify-skills
export COPILOT_CUSTOM_INSTRUCTIONS_DIRS="$PWD/codex"
Copilot CLI reads AGENTS.md from any directory listed in COPILOT_CUSTOM_INSTRUCTIONS_DIRS and uses it as a router into the skill files under codex/skills/. Add the export to your shell profile to persist across sessions.
Add the marketplace and install the plugin:
/plugin marketplace add netlify/context-and-tools
/plugin install netlify-skills@netlify-context-and-tools
This installs all Netlify skills into Claude Code. The included skills/CLAUDE.md acts as a router — it tells the agent which skill to read based on what you're building.
Install from the Cursor plugin marketplace:
Cmd+, / Ctrl+,)Or install via the command palette: Cmd+Shift+P → Plugins: Install Plugin → search netlify-skills.
npx claudepluginhub netlify/context-and-tools --plugin netlify-skillsDeploy web projects to Netlify using the Netlify CLI (`npx netlify`). Use when the user asks to deploy, host, publish, or link a site/repo on Netlify, including preview and production deploys. Originally from OpenAI's curated skills catalog.
Claude Code skill pack for Webflow (24 skills)
Visual CMS for Nuxt Content with Cloudflare deployment. Use when setting up Nuxt Studio, configuring OAuth authentication, deploying to Cloudflare Pages/Workers with subdomain routing, or troubleshooting Studio integration.
Build and deploy web apps and agents
Scaffold Cloudflare Workers, Hono APIs, D1/Drizzle schemas, D1 migration workflows, full-stack Vite+Workers apps, and TanStack Start SSR dashboards.
Official Cloudflare developer platform skill for Workers, Durable Objects, R2, D1, KV, AI, and 50+ services.