deploy-prod-auto-skip-ci

Automate commit, push, and deploy production changes to main via Git and GitHub CLI.

4|2|Updated Feb 4, 2026
One-click install
npx skills add https://github.com/gparker97/beanies-family --skill deploy-prod-auto-skip-ci
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deploy-prod-auto-skip-ci
Source: https://github.com/gparker97/beanies-family/tree/main/.claude/skills/deploy-prod-auto-skip-ci
Command: npx skills add https://github.com/gparker97/beanies-family --skill deploy-prod-auto-skip-ci

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Releases small, verified changes to production quickly by automating commit, push, and deploy steps while bypassing the CI/Security gate for the Vue workflow to eliminate wait time for non-critical fixes.

Core Features & Use Cases

  • Auto-commit and push: Stage, commit, and push pending changes to main while enforcing pre-push tests and repository rules.
  • Selective deploy determination: Compare changes against the last successful workflow SHAs to decide whether the Vue PWA or Astro site (or both) need deployment.
  • Parallel workflow triggering and monitoring: Trigger deploy-web.yml for Astro and deploy.yml for Vue (with skip_gate) in parallel, watch run status, and report deployed SHAs, durations, and production URLs.
  • Use Case: Ship a hotfix, copy update, or small configuration tweak that has been tested locally and must reach production immediately without waiting for the full CI/Security gate.

Quick Start

Use this skill to commit pending changes, push to main, and trigger the appropriate deploy workflows while skipping the CI gate for the Vue deploy.

Frequently Asked Questions about deploy-prod-auto-skip-ci

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

FAQPage Schema
How do I skip the CI gate when deploying a hotfix to production?

To skip the CI gate for production hotfixes, this Skill triggers the Vue deploy.yml workflow with a skip_gate flag. It commits and pushes pending changes to main, then runs the deployment while bypassing security checks to save time on pre-verified updates.

How do I automate deploying small changes to both Vue PWA and Astro sites?

Automating Vue PWA and Astro site deployments involves comparing pending changes against the last successful workflow SHAs. This Skill determines which site needs updating and triggers deploy.yml or deploy-web.yml in parallel, monitoring run status and reporting final URLs.

Can I push local configuration tweaks to production without waiting for full CI checks?

Yes, you can push local configuration tweaks to production without full CI checks. By triggering the Vue deploy workflow with skip_gate, pre-verified small configuration updates bypass the security gate and reach production immediately.

Does this automated deployment workflow run tests before pushing to the main branch?

Yes, the automated deployment workflow runs pre-push tests before pushing to the main branch. It stages and commits pending changes, executes tests to verify integrity, and enforces repository rules prior to triggering the production deploy workflows.

When should I avoid skipping the CI security gate for production deployments?

You should avoid skipping the CI security gate for production deployments when changes are not pre-verified or lack local testing. This automated bypass approach is strictly intended for small, verified hotfixes or copy updates that require immediate shipping.