From superpowers
Deploys AI-generated websites to production using Netlify. Use when the user wants to host a website, deploy to a live URL, or publish an Anti-Gravity project online.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers:skills-design-and-media-ui-ux-design-skills-ai-website-deploymentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Deploy Anti-Gravity generated websites to Netlify for free hosting.
Deploy Anti-Gravity generated websites to Netlify for free hosting.
Best for one-time deployments or demos.
Best for ongoing projects with version control.
npm run buildout folder (or dist/.next)out foldernpm run build
Note: For static export to work, ensure
next.config.jshas:output: 'export'
The output folder is typically:
out/ or .next/dist/build/random-name.netlify.app)After deployment:
npm run buildoutEnsure static export is configured:
// next.config.js
module.exports = {
output: 'export',
images: {
unoptimized: true
}
}
For static export, ensure images are in /public/ folder and referenced with absolute paths.
| Platform | Free Tier | Best For |
|---|---|---|
| Netlify | Yes | Static sites |
| Vercel | Yes | Next.js apps |
| GitHub Pages | Yes | Simple HTML |
| Cloudflare Pages | Yes | Edge performance |
- [ ] Build succeeds locally
- [ ] `out/` folder exists
- [ ] Images load correctly
- [ ] No console errors
- [ ] Mobile responsive
- [ ] Drag to Netlify
- [ ] Test live URL
npx claudepluginhub lunartech-x/superpowers --plugin superpowersDeploys AI-generated websites to production using Vercel, Netlify, Cloudflare Pages, or GitHub Pages. Covers CLI setup, project config, environment variables, and custom domains.
Deploys web projects to Netlify using Netlify CLI. Handles authentication, site linking or creation via Git remote, and production/preview deployments.
Guides step-by-step deployment of static sites, React/Vue/Next.js/Nuxt frontends, Python (Flask/FastAPI/Django) or Node.js (Express/Nest) backends to Vercel, Netlify, Cloudflare Pages, Railway, Render. Prepares build configs, env vars, gitignore.