一键导入
create-pr
Create a pull request from the current branch with an auto-generated summary. Use when user asks to create a PR, make a pull request, or submit changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a pull request from the current branch with an auto-generated summary. Use when user asks to create a PR, make a pull request, or submit changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Review a pull request for Playwright test automation using project standards. Use when user asks to review a PR, check a pull request, or mentions a PR number.
Open and analyze Playwright HTML test reports. Use when user asks to see test results, check test report, view test output, or analyze test failures.
Run Playwright tests with various options (specific file, all UI tests, debug mode, headed browser, tagged tests). Use when user asks to run tests, execute tests, test something, or debug tests.
| name | create-pr |
| description | Create a pull request from the current branch with an auto-generated summary. Use when user asks to create a PR, make a pull request, or submit changes. |
| allowed-tools | Bash(git:*), Bash(gh:*), Read, Grep |
Verify current branch state
git status
git log origin/main..HEAD --oneline
git diff origin/main...HEAD
Analyze all commits since divergence from main
Generate PR title and body
## Summary
- Bullet points covering ALL changes in the branch
## Test plan
- [ ] Checklist of verification steps
- [ ] Manual testing performed
- [ ] Automated tests added/updated
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Push and create PR
# Push if needed
git push -u origin HEAD
# Create PR
gh pr create --title "Title" --body "$(cat <<'EOF'
[PR body here]
EOF
)"
Return PR URL to the user