Deploy, publish, and link web projects to Netlify using the CLI.
This appears to be an open-source, widely trusted prompt-only deployment skill with overall low risk. The main considerations are its intended workflow of running local Netlify/NPM/Git commands and sending site content to Netlify, which are normal behaviors for a deployment-oriented skill.
Although the metadata says no keys/env vars are required, the README explicitly requires an existing Netlify login session and optionally supports NETLIFY_AUTH_TOKEN. There is no indication that the skill itself collects, hardcodes, or exfiltrates credentials; the main credential exposure is the normal use of local CLI/OAuth or environment-variable-based authentication.
The skill is explicitly for deploying to Netlify; the README describes netlify status/login/link/init/deploy workflows, so site metadata and deployment artifacts are expected to be sent to Netlify. No unknown third-party endpoints or unrelated exfiltration are described, but outbound transfer of website content is inherent to its deployment function.
The README instructs use of local commands such as npx netlify, git, and npm install for detection, dependency installation, and deployment, which is normal local process execution for developer tooling. There is no sign of unrelated privileged system access, but if executed, standard command-execution and dependency-installation risks still apply.
The material indicates it inspects the current project directory, reads Git remotes, checks dependencies, and deploys site files, which is broadly consistent with the stated function of deploying the current web project. There is no indication of reading unrelated directories, system-sensitive files, or obviously excessive access.
The source is the GitHub repository openai/skills, with system flags for open-source and strong community trust (22k+), providing good auditability and reputation signals. Although the license is unspecified, maintenance status is unknown, and runtime use of npx introduces ordinary dependency risk, the available source evidence does not support a high-risk rating.
Copy the install command and let the AI configure it · recommended for beginners
Please install the "netlify-deploy" skill from askskill: 1. Download https://raw.githubusercontent.com/openai/skills/main/skills/.curated/netlify-deploy/SKILL.md 2. Save it as ~/.claude/skills/netlify-deploy/SKILL.md 3. Reload skills and tell me it's ready
Deploy web projects to Netlify using the Netlify CLI with intelligent detection of project configuration and deployment context.
This skill automates Netlify deployments by:
sandbox_permissions=require_escalated.The skill uses the pre-authenticated Netlify CLI approach:
npx netlify statusnpx netlify loginAuthentication uses either:
netlify login opens browser for authenticationNETLIFY_AUTH_TOKEN environment variableCheck if the user is logged into Netlify:
npx netlify status
Expected output patterns:
If not authenticated, guide the user:
npx netlify login
This opens a browser window for OAuth authentication. Wait for user to complete login, then verify with netlify status again.
Alternative: API Key authentication
If browser authentication isn't available, users can set:
export NETLIFY_AUTH_TOKEN=your_token_here
Tokens can be generated at: https://app.netlify.com/user/applications#personal-access-tokens
From netlify status output, determine:
If already linked → Skip to step 4
If not linked, attempt to link by Git remote:
# Check if project is Git-based
git remote show origin
# If Git-based, extract remote URL
# Format: https://github.com/username/repo or [email protected]:username/repo.git
# Try to link by Git remote
npx netlify link --git-remote-url <REMOTE_URL>
If link fails (site doesn't exist on Netlify):
# Create new site interactively
npx netlify init
This guides user through:
Before deploying, ensure project dependencies are installed:
# For npm projects
npm install
# For other package managers, detect and use appropriate command
# yarn install, pnpm install, etc.
Choose deployment type based on context:
Preview/Draft Deploy (default for existing sites):
npx netlify deploy
This creates a deploy preview with a unique URL for testing.
Production Deploy (for new sites or explicit production deployments):
npx netlify deploy --prod
This deploys to the live production URL.
Deployment process:
After deployment, report to user:
netlify open to view site or dashboard…
Turn Notion specs into implementation plans, tasks, and progress tracking.
Read, create, and review PDFs with layout-aware rendering and extraction tools.
Transcribe audio or video to text with optional speaker labeling.
Read, create, and update Linear issues, projects, and team workflows.
Deploy apps or websites to Vercel and generate live or preview links.
Create or update skills that extend Codex with knowledge, workflows, and tools.
Deploy, publish, and host apps and infrastructure on Cloudflare services.
Analyze codebases and generate Render configs to deploy apps to the cloud.
Build and deploy an existing Power Pages code site to a target environment.
Turn app ideas from chat into live full-stack web applications instantly.
Build and deploy a Power Apps code app to Power Platform.
Deploy full-stack apps to Cloudflare with databases, auth, and storage using natural language.