ワンクリックで
pr
Create pull requests with comprehensive descriptions and test plans.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create pull requests with comprehensive descriptions and test plans.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Write a structured handoff at session end. Preserves context so the next agent can resume without human briefing. Invoke before ending any feature session longer than 30 minutes.
Multi-perspective code review against project standards with P1/P2/P3 severity classification. Works in Claude Code (Agent + optional GitHub MCP) and Cursor (Task subagents + gh/git). Use when the user invokes /review, asks for a PR or diff review, or wants a standards-aligned review with severity tags.
Multi-perspective code review (P1/P2/P3) for Cursor: inline checklists plus three parallel Task subagents (perf-auditor, security-reviewer, simplicity-reviewer with combined data-integrity prompt). Use when the user invokes /review, asks for a PR review, or wants repo-standard findings with severity.
Create well-formatted git commits following conventional commit standards.
Red→green→refactor discipline for new behavior — forces a failing test before implementation and a passing test before any claim of done.
Create or manage a git worktree for isolated parallel development — lets multiple agents work in the repo simultaneously without branch collisions.
| name | pr |
| description | Create pull requests with comprehensive descriptions and test plans. |
Create pull requests with comprehensive descriptions and test plans.
/pr [--draft] [--base <branch>] [--reviewers <users>]
| Flag | Description |
|---|---|
--draft | Create as draft PR |
--base <branch> | Target branch (default: main) |
--reviewers <users> | Comma-separated list of reviewers |
When this skill is invoked:
Autonomy:
Thoroughness:
Analyze branch state:
git status
git log main..HEAD --oneline
git diff main...HEAD --stat
Review all commits in the branch:
git log main..HEAD --pretty=format:"%h %s"
Check CI readiness:
Push branch if needed:
git push -u origin $(git branch --show-current)
Generate PR description following template:
## Summary
[2-4 bullet points describing the changes]
## Changes
[List of files/modules changed with brief descriptions]
## Test Plan
- [ ] Unit tests added/updated
- [ ] Integration tests (if applicable)
- [ ] Manual testing performed
- [ ] Edge cases considered
## Screenshots
[If UI changes, include before/after screenshots]
## Breaking Changes
[List any breaking changes, or "None"]
## Checklist
- [ ] Code follows project style guidelines
- [ ] Self-review completed
- [ ] Documentation updated (if needed)
- [ ] Tests pass locally
---
Generated with [Claude Code](https://claude.com/claude-code)
Create PR:
gh pr create \
--title "type(scope): description" \
--body "$(cat <<'EOF'
[Generated PR body]
EOF
)" \
--base main
Post-creation:
Follow the same conventional commit format:
feat(scope): add new featurefix(scope): resolve bug descriptionrefactor(scope): improve code structureFrom commits:
feat commits → feat PRfeat and fix → feat PR (features take precedence)fix commits → fix PRrefactor/chore → use that typeUse --draft when:
$ /pr --base main
Analyzing branch: feature/user-auth
Commits (3):
abc1234 feat(auth): add login endpoint
def5678 feat(auth): add session management
ghi9012 test(auth): add authentication tests
Files changed: 8
Lines: +450 / -12
Creating PR...
## Summary
- Add user authentication with JWT tokens
- Implement login/logout endpoints
- Add session management with Redis
- Include comprehensive test coverage
## Changes
- `src/api/auth.py` - New authentication endpoints
- `src/services/session.py` - Session management service
- `src/middleware/auth.py` - Authentication middleware
- `tests/unit/test_auth.py` - Unit tests
## Test Plan
- [x] Unit tests added (15 new tests)
- [x] Integration tests for auth flow
- [x] Manual testing with Postman
- [x] Edge cases: expired tokens, invalid credentials
## Breaking Changes
None
---
Generated with [Claude Code](https://claude.com/claude-code)
PR created: https://github.com/org/repo/pull/123
Next steps:
1. Review PR at the link above
2. Monitor CI: gh pr checks
3. Request reviewers: gh pr edit --add-reviewer @username