finishing-a-development-branch
Installation
SKILL.md
Finishing a Development Branch
Complete all final steps before merging a feature branch.
Announce at start: "I'm using the finishing-a-development-branch skill."
Checklist (Complete in Order)
1. Verify Tests Pass
npm test # or pytest, go test, cargo test
npm run test:coverage
- All tests must pass (no skips, no TODOs in critical paths)
- Coverage must be ≥ 80%
- If tests fail → stop and fix before continuing