| name | cbt-pr |
| description | Create a pull request with automatic quality checks, a conventional commit, and the gh CLI. Use when the user wants to open a PR or push a branch for review. |
Create Pull Request
Open a PR with quality checks and conventional commits.
Usage
/cbt-pr
Steps
- Run
pnpm run preflight – all checks must pass
- Stage and commit with conventional commit message and DCO sign-off:
git commit -s -m "type(scope): description"
- Push branch and open PR with
gh pr create
- Include summary of changes and test plan in PR body
Commit types
feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert
Notes
- DCO sign-off (
-s) is required – CI checks for Signed-off-by: line
- See
CONTRIBUTING.md for full guidelines