Guides pull request creation with templates and checklists, review automation triggers, merge strategies, and workflows using git and GitHub CLI. Use for PR lifecycle management on GitHub/GitLab.
npx claudepluginhub joshuarweaver/cascade-code-general-misc-3 --plugin asiaostrich-universal-dev-standardsThis skill is limited to using the following tools:
Streamline the pull request lifecycle from creation to merge.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Streamline the pull request lifecycle from creation to merge.
簡化從建立到合併的 Pull Request 生命週期。
| Item | Rule | 規則 |
|---|---|---|
| Title | <type>(<scope>): <summary> under 70 chars | 70 字元內,遵循 conventional commits |
| Description | Use structured template below | 使用下方結構化模板 |
| Labels | At least one category label | 至少一個分類標籤 |
| Reviewers | Assign based on CODEOWNERS or domain | 依 CODEOWNERS 或領域指派 |
| Branch | Up to date with base branch | 與基礎分支同步 |
## Summary | 摘要
<1-3 bullet points describing the change>
## Changes | 變更內容
- Added / Modified / Removed ...
## Test Plan | 測試計畫
- [ ] Unit tests pass
- [ ] Manual verification steps
## Screenshots | 截圖
(if UI changes)
| Strategy | When to Use | 使用時機 |
|---|---|---|
| Squash merge | Feature branches with messy commits | 功能分支,提交記錄零散 |
| Merge commit | Release branches, preserve history | 發布分支,保留完整歷史 |
| Rebase | Linear history, small changes | 線性歷史,小幅變更 |
| Trigger | Threshold | Action | 動作 |
|---|---|---|---|
| PR size | > 400 lines changed | Request split | 要求拆分 |
| No tests | 0 test files changed | Block merge | 阻止合併 |
| CI failure | Any check fails | Block merge | 阻止合併 |
| Stale PR | > 7 days no activity | Notify author | 通知作者 |
| Draft PR | Marked as draft | Skip reviewers | 跳過審查者指派 |
CREATE ──► REVIEW ──► APPROVE ──► MERGE ──► CLEANUP
/pr - Guide PR creation for current branch | 引導建立當前分支的 PR
/pr create - Create PR with template | 使用模板建立 PR
/pr --template - Show PR description template | 顯示 PR 描述模板
/pr review 123 - Review specific PR | 審查特定 PR
After /pr completes, the AI assistant should suggest:
PR 操作完成。建議下一步 / PR operation complete. Suggested next steps:
- 執行
/review進行詳細程式碼審查 ⭐ Recommended / 推薦 — Run detailed code review- 執行
/commit修正審查發現的問題 — Fix issues found in review- 執行
/changelog更新變更日誌 — Update changelog- 檢查 CI 狀態 →
gh pr checks— Check CI status
| Version | Date | Changes | 變更說明 |
|---|---|---|---|
| 1.0.0 | 2026-03-23 | Initial release | 初始版本 |
完整的 AI 行為定義請參閱對應的命令文件:
/prFor complete AI agent behavior definition, see the corresponding command file:
/pr
CC BY 4.0 — Documentation content