Auth0's official agent skill: a router that detects your framework and intent, then loads the right Auth0 guidance for login, MFA, Organizations, tenant audits, debugging or provider migration.
Netlify Deploy
Summary
Netlify's official agent skill for shipping a project with the Netlify CLI — auth, site linking, preview and production deploys, and reading live function logs when a deploy misbehaves.
Features
- Handles CLI install, auth, site linking and deploy in one flow
- Reads build config from netlify.toml or package.json
- Covers Git-based continuous deployment and manual CLI deploys
- Draft/preview deploys as well as production
- Tails function and edge-function logs via netlify logs
- Part of Netlify's full official skill set in netlify/context-and-tools
Install This Skill
Add this skill to your favorite AI agent in a few steps.
Skill Content
Usage Instructions
Learn how to use this skill with different AI agents.
Example Usage
Link this repo to my Netlify site, ship a draft deploy, then tail the edge function logs and tell me why the redirect is 500ing.
Description
Deploying to Netlify by hand is a short sequence that is easy to get subtly wrong: install the CLI, authenticate, link the local directory to the right site, work out the build command and publish directory, then decide whether this is a draft deploy or a production one. netlify-deploy is Netlify's official agent skill for running that sequence correctly the first time.
It reads build configuration from netlify.toml or package.json rather than asking you to restate it, so static sites and framework projects (Next.js, Astro, Nuxt, SvelteKit and the rest) are handled without the agent guessing at a publish directory. Both deploy paths are covered: Git-based continuous deployment, which Netlify treats as the primary route, and manual CLI uploads for prototypes and CI pipelines.
The part that earns the skill a place in a workflow is what happens after the deploy. It knows netlify logs, so an agent can tail serverless-function and edge-function output from a live site — recent errors, recent invocations, streaming output — which turns "the deploy went out and something is wrong" into a debuggable loop without leaving the terminal.
Scope is deliberately narrow. Environment-variable management belongs to the companion netlify-config skill and local development to netlify-frameworks; this one does deploys and deploy diagnostics. It sits in netlify/context-and-tools alongside roughly a dozen other official Netlify skills covering Functions, Edge Functions, Blobs, Netlify DB (Postgres on Neon), the Image CDN, Forms, caching and the AI Gateway.
Requirements: Node.js 18.14.0 or newer. The CLI can be installed globally, added as a dev dependency for CI, or invoked through npx netlify.
Install: npx skills add https://github.com/netlify/context-and-tools --skill netlify-deploy, or add every Netlify skill at once with npx skills add netlify/context-and-tools --skill '*' --yes. MIT licensed.
Related Skills
Redis' own guidance for FT.CREATE schema design, FT.SEARCH / FT.AGGREGATE / FT.HYBRID, HNSW vector similarity and RAG retrieval pipelines.
Supabase's official skill covering Database, Auth, Edge Functions, Realtime, Storage, Vectors, Cron and Queues — with a hard rule to verify against the live changelog before writing code.
GreenSock's official ScrollTrigger skill — scroll-linked animation, pinning, scrub and trigger positioning, with the exact start/end syntax agents get wrong.