deployment_helper

Deploy static websites and framework apps to Vercel or GitHub Pages.

Updated Jan 16, 2026
One-click install
npx skills add https://github.com/dudqks0319-cpu/antigravity-skills --skill deployment-helper-dudqks0319-cpu
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: deployment_helper
Source: https://github.com/dudqks0319-cpu/antigravity-skills/tree/main/deployment_helper
Command: npx skills add https://github.com/dudqks0319-cpu/antigravity-skills --skill deployment-helper-dudqks0319-cpu

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Non-developers often struggle to publish their web projects online, facing confusing CLI tools, build errors, and hosting configuration. This Skill guides the deployment of static sites and framework apps to Vercel or GitHub Pages with simple, step-by-step instructions. ## Core Features & Use Cases - Project Type Detection: Identifies whether the project is plain static HTML or a Node.js/framework app (via package.json, vite.config.js) to choose the right deployment path. - Vercel Deployment: Checks Vercel CLI login status (vercel whoami), guides login if needed, and runs vercel deploy --prod with correct build settings. - GitHub Pages Deployment: Walks the user through pushing code to GitHub and enabling Pages from repository settings. - Use Case: A user finishes a Vite-based landing page and says "put this online". The Skill verifies the local build succeeds with npm run build, fixes any errors, then deploys to Vercel production. ## Quick Start Deploy my website to Vercel and walk me through each step in plain language.

Frequently Asked Questions about deployment_helper

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

FAQPage Schema
How do I deploy a static website to Vercel?▼

Deploy a static site to Vercel by first checking login status with `vercel whoami`, running `vercel login` if needed, then executing `vercel deploy --prod`. Plain HTML, CSS, and JavaScript sites usually need no extra configuration.

How to publish a site on GitHub Pages?▼

Publish on GitHub Pages by pushing your code to a GitHub repository, then going to Repo Settings, selecting Pages, choosing the 'main' branch as the source, and saving. The site goes live at your GitHub Pages URL.

Vercel vs GitHub Pages for hosting a static site?▼

Vercel is recommended for ease of use since it deploys directly from the CLI with one command and handles framework builds automatically. GitHub Pages works well if your code is already in a GitHub repository and you prefer settings-based publishing.

Does Vercel deployment need configuration for Vite projects?▼

Vite projects need the build command set to `npm run build` and the output directory set to `dist`, either in `vercel.json` or project settings. Always run the build locally first to catch errors before deploying.

Why does my deployment fail with build errors?▼

Deployment fails when the framework app has unresolved build errors. Run `npm run build` locally first, fix any reported errors, and only attempt deployment after the local build succeeds.