com um clique
create-pr
Create well-documented pull requests with proper descriptions
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Create well-documented pull requests with proper descriptions
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Systematic approach to debugging and fixing issues
Create well-formatted commits following conventional commit standards
Safe code refactoring with proper testing and incremental changes
Guide for integrating external APIs securely and correctly
Reviews pull requests for code quality, security, and conventions
Test-Driven Development workflow - write tests first, then implement
| name | Create PR |
| description | Create well-documented pull requests with proper descriptions |
| triggers | ["/create-pr","create pr","open pr","make pull request"] |
| allowed-tools | ["Read","Glob","Grep","Bash(git status*)","Bash(git diff*)","Bash(git log*)","Bash(git push*)","Bash(git branch*)","Bash(gh pr create*)","Bash(gh pr view*)"] |
Create well-documented pull requests that are easy to review and merge.
# Check current branch
git branch --show-current
# Ensure all changes are committed
git status
# View commits that will be in the PR
git log main..HEAD --oneline
# Push and set upstream
git push -u origin feature/my-feature
Before creating the PR, understand what you're submitting:
# See all changes vs main branch
git diff main...HEAD
# List changed files
git diff main...HEAD --name-only
# View commit history
git log main..HEAD
gh pr create --title "feat: add user authentication" --body "$(cat <<'EOF'
## Summary
Brief description of what this PR does and why.
- Add login/logout functionality
- Implement JWT token handling
- Add protected route middleware
## Changes
- `src/auth/` - New authentication module
- `src/middleware/` - Auth middleware for protected routes
- `src/pages/login.tsx` - Login page component
## Testing
- [ ] Unit tests pass
- [ ] Manual testing of login flow
- [ ] Tested logout clears session
## Screenshots
(If UI changes, add screenshots here)
## Related Issues
Closes #123
EOF
)"
## Summary
[One paragraph explaining the change and motivation]
## Changes
- [List key files/components changed]
- [Explain non-obvious implementation decisions]
## Testing
- [ ] Unit tests added/updated
- [ ] Integration tests pass
- [ ] Manual testing completed
## Checklist
- [ ] Code follows project conventions
- [ ] Documentation updated (if needed)
- [ ] No console.log or debug code
- [ ] Migrations included (if DB changes)
## Screenshots
[For UI changes, before/after screenshots]
## Related Issues
Closes #[issue-number]
Follow conventional commit style:
feat: add user dashboardfix: resolve cart duplication bugrefactor: extract payment logic to service# Create PR with specific base branch
gh pr create --base develop
# Create draft PR
gh pr create --draft
# View PR status
gh pr view
# List open PRs
gh pr list
# Check PR checks status
gh pr checks