deployment-gates

Every deploy job should define a rollback command or procedure reference.

Content Preview
# Deployment Gates

## Minimum Gate Policy

- `lint` must pass before `test`.
- `test` must pass before `build`.
- `build` artifact required for deploy jobs.
- Production deploy requires manual approval and protected branch.

## Environment Pattern

- `develop` -> auto deploy to staging
- `main` -> manual promote to production

## Rollback Requirement

Every deploy job should define a rollback command or procedure reference.
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/deployment-gates.md \
  https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/ci-cd-pipeline-builder/references/deployment-gates.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/alirezarezvani/claude-skills

Then reference at engineering/ci-cd-pipeline-builder/references/deployment-gates.md

Related Skills