netlify-deploy

Automate Netlify deployments with authentication, site linking, and build configuration.

Updated Mar 28, 2026
One-click install
npx skills add https://github.com/idontcarl/landing-page --skill netlify-deploy-idontcarl
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: netlify-deploy
Source: https://github.com/idontcarl/landing-page/tree/main/skills/openai-skills/skills/.curated/netlify-deploy
Command: npx skills add https://github.com/idontcarl/landing-page --skill netlify-deploy-idontcarl

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Netlify deployments can be fiddly because authentication, site linking, and build configuration must be managed consistently across environments.

Core Features & Use Cases

  • Verify Netlify CLI authentication and handle login flows.
  • Detect project configuration and framework, link to an existing Netlify site or create a new one, and prepare for deployment.
  • Deploy to production or a preview environment, with automatic handling of netlify.toml and build settings.
  • Use cases include new project deployment, linking existing repos, and automated previews for pull requests.

Quick Start

Ask me to deploy this project to Netlify and I will verify authentication, link or create a site, install dependencies, and run the deployment.

Frequently Asked Questions about netlify-deploy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy a local web project to Netlify from the command line?

To deploy a local web project to Netlify, the workflow verifies CLI authentication, links or creates a site, detects the framework, installs dependencies, and runs a preview or production deploy.

Can I link an existing Netlify site instead of creating a new one during deployment?

Yes, you can link an existing Netlify site during deployment. The workflow handles both linking to an existing site and creating a new one, then reads netlify.toml or package.json for build settings.

What's the best way to handle Netlify CLI authentication for automated deployments?

Handling Netlify CLI authentication for automated deployments is managed via browser login or token. The workflow verifies authentication first and handles login flows before proceeding with site configuration.

How does Netlify deployment handle project framework detection and build settings?

Netlify deployment detects the project framework and reads build settings from netlify.toml or package.json. It applies these configurations deterministically before installing dependencies and performing the deploy.

Do I need a netlify.toml file to run a preview deploy?

You do not strictly need a netlify.toml file to run a preview deploy. If absent, the workflow reads configuration from package.json to determine framework and build settings before deploying.

Why does my Netlify deployment fail when dependencies are missing?

A Netlify deployment fails when dependencies are missing because the workflow requires them to build the project. It handles errors gracefully, installing dependencies automatically before performing preview or production deploys.