pr
Create a pull request for the current branch using the project's PR template
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create a pull request for the current branch using the project's PR template
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Process issues sequentially: /dev per issue in isolated sub-agent → CI wait → merge → next
E2E development: investigate → dig → decompose → implement → test → review → PR
Break a task into ordered subtasks with dependencies
Investigate codebase for an issue in a forked context (context isolation)
Clarify ambiguities in plans with structured questions and auto-decide rules
Audit codebase for tech debt, code quality, and architecture issues — then create GitHub Issues
| name | pr |
| description | Create a pull request for the current branch using the project's PR template |
| user-invocable | true |
| disable-model-invocation | true |
| allowed-tools | ["Read","Grep","Glob","Bash(git status)","Bash(git diff:*)","Bash(git log:*)","Bash(git push:*)","Bash(gh pr create:*)","Bash(gh issue view:*)"] |
Create a pull request for the current branch.
git status and git diff to understand all changes-u if neededgit log and git diff <base>...HEAD to understand ALL commits.github/pull_request_template.md if it existsgh pr create, include changelog entry in bodyFrom step 3 commits, generate a changelog entry categorized by type:
### Changelog
- **Added**: {new features}
- **Changed**: {modifications to existing features}
- **Fixed**: {bug fixes}
- **Removed**: {removed features}
Include this in the PR body after the description. If a CHANGELOG.md exists in the project root, prepend the entry under the ## [Unreleased] section.
#{Issue} {concise description} (under 70 chars)Closes #XX in body if applicable