/deploy
#reference#skill#standalone
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 | Reference |
|---|---|---|
vercel-deployer | Vercel | references/vercel-guide.md |
netlify-deployer | Netlify | references/netlify-guide.md |
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 |
Skill Structure
deploy/
โโโ SKILL.md
โโโ references/
โ โโโ vercel-guide.md
โ โโโ netlify-guide.md
โโโ skills/
โโโ vercel-deployer/SKILL.md
โโโ netlify-deployer/SKILL.md
Use Cases
Share