npx claudepluginhub netlify/context-and-toolsNetlify platform skills for Claude Code
Share bugs, ideas, or general feedback.
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-db | 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:
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.
This installs 21 .mdc rule files covering all Netlify platform primitives. A router rule (netlify-skills-router.mdc) is always active and directs the agent to the right skill for the task.
Copy pre-built rule files directly into your project:
git clone --depth 1 https://github.com/netlify/context-and-tools.git /tmp/netlify-skills && \
mkdir -p .cursor/rules && \
cp /tmp/netlify-skills/cursor/rules/*.mdc .cursor/rules/ && \
rm -rf /tmp/netlify-skills
This copies .mdc rule files into .cursor/rules/, where Cursor automatically discovers them.
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.
Each SKILL.md file is a self-contained reference with YAML frontmatter (name and description) and markdown body. Feed them into any agent's context as needed.