Deploy sites, configure serverless and edge functions, and verify builds on Netlify. Use when the user mentions: 'deploy preview', 'configure netlify.toml', or 'debug a failed deploy'. Trigger terms: build error, Netlify Functions, deploy logs, deploy preview
75
94%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Project deployment architecture, env vars, and key files: deployment-config.md. Docs: https://docs.netlify.com
main → production (auto). feature/*, fix/* → deploy preview at a unique URL (auto).
netlify/functions/): default timeout 10s, extendable to 26s on Pro. Anything longer must be a background function — up to 15 min.netlify/edge-functions/) run on Deno, not Node — no Node built-ins, no npm-only packages. Use for personalization, A/B tests, geo-routing (context.geo).Request/Response. TypeScript works with no build step.config = { path: '/geo' } from a function replaces the default /.netlify/functions/<name> route. Without it, the default path is the only one that works.config: Config = { schedule: "0 0 * * *" } — the schedule is UTC, and the request body carries next_run.main deploys), Deploy previews (all PR/branch builds), Branch deploy (one named branch), Local (netlify dev). A var set only on Production is undefined in previews.NODE_VERSION (set it under [build.environment] in netlify.toml), a stale lockfile, or a publish dir that does not match the actual build output.netlify build --debug # reproduce the CI build locally, verbose — do this before pushing
netlify env:list # confirm vars exist in the scope you expect
netlify status # linked site + deploy statePost-deploy, verify each critical route returns 200:
curl -fsS -o /dev/null -w '%{http_code}' https://<DEPLOY_URL>/Any non-200 → read the deploy log in the Netlify UI, fix, redeploy.
fa0c341
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.