safe-deploy
Installation
SKILL.md
Safe Deploy
Core Rule
NEVER deploy to production without first verifying the branch includes all commits from origin/main.
This prevents the critical bug where a feature branch deploys older code that overwrites recently merged PRs.
Before Every Deploy
Run these checks in order:
- Fetch latest main
git fetch origin main