Skip to content

/elite-deploy

New
Skill 08

Production CI/CD pipelines, deployment strategies, migration rollouts, and AI-powered CI automation.

What It Covers

  • CI pipeline design with fail-fast gate ordering
  • Type generation and documentation drift detection
  • Multiple deployment strategies with decision tree
  • Zero-downtime database migration patterns
  • Preview environments per pull request
  • AI-powered auto-fix for lint, format, and type errors
  • Flaky test detection, quarantine, and triage
  • Secret management and rotation workflows

Install This Skill

npx skills add jackmcpickle/eliteskills --skill elite-deploy

Or install all skills: npx skills add jackmcpickle/eliteskills

Install

Terminal
$ npx skills add jackmcpickle/eliteskills --skill deploy

Skill Structure

tree
.claude/skills/deploy/
├── SKILL.md
├── ci-pipeline.md
├── deployment-strategies.md
├── migrations.md
└── ai-ci.md

Example Prompts

CI pipeline
> /elite-deploy Design a CI pipeline for this monorepo with lint, test, type check, and deploy stages
Deployment strategy
> /elite-deploy Recommend a deployment strategy for this app based on our infrastructure and team size
Migration plan
> /elite-deploy Plan a zero-downtime migration to rename this column using expand-contract
AI auto-fix
> /elite-deploy Set up AI-powered auto-fix for lint and format errors in our CI pipeline
Preview environments
> /elite-deploy Add preview environment deploys for every PR with auto-cleanup

Best Practices

  • Put cheapest checks first in the pipeline — fail fast on lint before running tests
  • Use the deployment strategy decision tree to match your infrastructure
  • Never combine expand and contract phases in the same deploy
  • Set up type generation checks to catch stale codegen in PRs
  • Feature flags complement any deployment strategy for gradual rollouts

Compatible Tools