pr
Create a pull request for the current branch using the project's PR template
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a pull request for the current branch using the project's PR template
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
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