/deploy
High confidenceUpdated 25 Apr 2026 by David Olsson
/deploy
Deploys projects to Vercel or Netlify. Detects project type, configures the platform, verifies the build locally, and produces a live URL.
Trigger: deploy, deploy to vercel, deploy to netlify, ship it, put this live
Output: Live URL
Type: Standalone command with 2 sub-skills
Sub-Skills
| Skill | Platform |
|---|---|
vercel-deployer | Vercel |
netlify-deployer | Netlify |
Workflow
- Detect project type (static HTML, Next.js, React SPA, Vue, Astro, Node.js)
- Set build command, output directory, framework preset automatically
- Identify environment variables from
.env.exampleor.env.local - Run build locally to verify before deploying
- Deploy to chosen platform
- Return live URL
Supported Project Types
| Type | Build Command | Output |
|---|---|---|
| Static HTML | (none) | . or public/ |
| Next.js | next build | .next |
| React SPA | react-scripts build or vite build | build/ or dist/ |
| Vue | vite build | dist/ |
| Astro | astro build | dist/ |
| Generic Node.js | npm run build | varies |