What problem does it solve?
Prevents risky, untested code from reaching production by enforcing a deterministic feature-branch workflow with local and CI validation and staging verification so teams don't ship broken releases or bypass tests.
Core Features & Use Cases
- Structured Feature Branch Workflow: guidance for creating focused branches, conventional commits, and selective staging of changes.
- Mandatory Test & Staging Gates: requires running all unit, integration, linting, and E2E suites locally and in CI, plus Playwright verification against preview or staging URLs before merging.
- PR, Merge, and Rollback Playbook: templates for PR bodies, CI gating rules, post-deploy smoke checks, and a safe emergency rollback procedure.
- Use Case: shipping a bug fix to payments by running full test suites locally, pushing a feature branch, validating CI and staging E2E, opening a detailed PR, and merging only after all checks pass.
Quick Start
Deploy the current feature branch to production by running all local tests, pushing the branch, verifying CI and staging E2E, creating a PR with a clear test plan, and merging only when all checks are green.