deployment

Deploy applications to Vercel, Netlify, GitHub Pages, and S3 with pre-deployment checks and rollback guidance.

3|Updated Jun 29, 2026
One-click install
npx skills add https://github.com/ruskicoder/system-prompts --skill deployment-ruskicoder
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: deployment
Source: https://github.com/ruskicoder/system-prompts/tree/main/prompt-orchestrator/.opencode/skills/deployment
Command: npx skills add https://github.com/ruskicoder/system-prompts --skill deployment-ruskicoder

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Deploying applications involves many error-prone steps: verifying builds, configuring environment variables, choosing the right hosting platform, and confirming the release actually works. This Skill provides a structured deployment workflow that prevents common mistakes like deploying broken builds or pushing to production without confirmation. ## Core Features & Use Cases - Multi-Platform Deployment: Deploy to GitHub Pages, Netlify, Vercel, or static hosts via rsync/scp/S3 with platform-specific setup guidance. - Pre-Deployment Checklist: Verify build success, required files, environment variables, and service credentials before any deploy. - Release Safety: Enforces user confirmation before production deploys, documents rollback procedures, and supports PR/MR-based release workflows. - Use Case: You finished a static site and want it live. The Skill checks your build, walks you through vercel or gh-pages setup, deploys, verifies status, and hands you the access URL. ## Quick Start Deploy my project to Vercel and verify the deployment is healthy.

Frequently Asked Questions about deployment

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

FAQPage Schema
How do I deploy a static site to GitHub Pages?▼

Deploy to GitHub Pages using the gh-pages package or GitHub Actions by pushing your build output to the gh-pages branch. Verify the build succeeds locally first, then check deployment status and share the access URL.

What should I check before deploying to production?▼

Run a pre-deployment checklist: read the deployment config, verify all source files exist, confirm the build succeeds locally, configure environment variables, and ensure required service accounts and API keys are available.

Vercel vs Netlify vs GitHub Pages for static hosting?▼

Vercel uses its CLI with `vercel` for project setup, Netlify connects a repo with build configuration via CLI or manual setup, and GitHub Pages publishes from a gh-pages branch. Choose based on your existing git workflow and platform integrations.

How do I roll back a failed deployment?▼

For git-based deploys, revert the commit and redeploy. For platform deploys like Vercel or Netlify, use the platform's built-in rollback feature. Always keep previous deployment artifacts available for recovery.

Should environment variables be committed to the repository?▼

No, never commit real secrets to version control. Use environment variables for configuration, provide a .env.example file with placeholder values, and document all required variables for the deployment target.