From vibedgames
Deploys static HTML/JS browser games to vibedgames.com subdomains via vibedgames CLI. Targets Vite, Phaser, Three.js, or plain HTML projects after npm run build to dist/.
npx claudepluginhub kyh/vibedgamesThis skill uses the workspace's default tool permissions.
Deploy static browser games to `{slug}.vibedgames.com` using the vibedgames CLI.
Deploys browser games to here.now (default instant static hosting), GitHub Pages via gh CLI, or other platforms after npm run build. Use for public publishing and hosting setup.
Deploys web projects to Vercel without authentication, auto-detecting frameworks like Next.js, React, Vue, Svelte from package.json. Returns preview URL and claim link. Use for 'deploy my app' or 'push live' requests.
Deploys web projects to Vercel without authentication by packaging into tarball, auto-detecting frameworks like Next.js, React, Vue, Svelte, Astro from package.json; returns preview URL and claim link.
Share bugs, ideas, or general feedback.
Deploy static browser games to {slug}.vibedgames.com using the vibedgames CLI.
The game directory must contain an index.html at the root. Typically this is the dist/ output from a build tool (Vite, webpack, etc.).
If the project has a build step, run it first:
npm run build
# or: pnpm build, vite build, etc.
The build output directory (usually dist/) is what gets deployed.
npx vibedgames deploy ./dist --slug my-game
./dist — the directory containing index.html and all assets--slug my-game — the subdomain name (lowercase, hyphens allowed). The game will be live at https://my-game.vibedgames.comIf the user hasn't logged in yet:
npx vibedgames login
This opens a browser for authentication, then saves the token locally.
After deploy, the CLI prints the live URL. Open it to verify.
dist/, build/, out/)space-invaders, my-cool-game)vibedgames.json exists in the deploy directory, the slug is read from there automaticallyCreate vibedgames.json in the project root to skip the --slug flag:
{
"slug": "my-game",
"name": "My Cool Game"
}
Then just: npx vibedgames deploy ./dist
npx vibedgames login first