What problem does it solve? Creating pull requests manually often leads to inconsistent descriptions, ignored templates, accidental commits to main, and failed CI checks. This Skill enforces a disciplined workflow so every PR follows the repository's established standards. ## Core Features & Use Cases - Branch Safety Enforcement: Verifies you are not on the main branch before committing or pushing, and creates a new branch when needed. - Template Compliance: Locates and reads the repository's pull request template (e.g., .github/pull_request_template.md) and drafts a description that follows its structure, headings, and checklists. - Preflight Validation: Runs the workspace preflight script (npm run preflight) to confirm build, lint, and test checks pass before creating the PR. - Use Case: After finishing a bug fix, ask the assistant to create a PR. It commits your changes on a feature branch, fills out the template with linked issues, runs preflight checks, pushes the branch, and opens the PR via the gh CLI with a Conventional Commits title. ## Quick Start Ask the assistant to create a pull request for your current changes using the repository's PR template.