pr
Installation
SKILL.md
PR
Turn the current branch's work into a draft pull request.
Workflow
- Inspect
git statusand the full diff against the base branch. If there is nothing to propose, stop. - Commit intended changes using the
commitskill conventions. Never stage secrets. - Push the branch to the remote.
- Open a draft PR against the default branch (e.g.
gh pr create --draft). - Write the body: what changed and why, the linked ticket (
Closes <ticket-ID>when one exists), tests and checks run with results, and known limitations or anything not verified. - Report the PR URL.
Rules
- Draft by default. Never merge, and never mark ready-for-review unless asked.
- The PR body must reflect what was actually run, not what should pass.
- One concern per PR. If the diff mixes unrelated changes, say so instead of shipping it.
- If the push or PR creation fails for permissions, report it and stop; do not work around access controls.