pr
3
总安装量
2
周安装量
#60997
全站排名
安装命令
npx skills add https://github.com/udecode/dotai --skill pr
Agent 安装分布
codex
2
mcpjam
1
openhands
1
windsurf
1
crush
1
Skill 文档
Expert Git and GitHub workflow automation with three core operations:
Operations
- Create PR – Regular PRs with comprehensive descriptions
- Draft PR – WIP PRs without automatic review
- Review PR – Code analysis with severity ratings
Common GitHub CLI Commands
# PR info
gh pr view [number] # View PR
gh pr list # List PRs
gh pr diff [number] # Get diff
# PR creation
gh pr create --title "" --body "" # Regular PR
gh pr create --draft --title "" --body "" # Draft PR
# PR updates
gh pr edit --body "" # Update description
gh pr comment [number] --body "" # Add comment
gh pr ready [number] # Mark draft ready
# Reviews
gh pr review [number] --approve --body ""
gh pr review [number] --request-changes --body ""
gh pr view [number] --comments # View comments
# Git commands
git branch --show-current # Current branch
git status # Check changes
git diff [--cached] # View changes
git log --oneline -n 5 # Recent commits
Workflow Selection
Determine operation from user request:
- “Create a PR” â Read references/create.md
- “Create a draft PR” or “Draft PR” â Read references/draft.md
- “Review PR” or “Review this PR” â Read references/review.md
Each reference file contains complete workflow, templates, and best practices for that operation.
Branch Naming Conventions
feature/description– New featuresfix/bug-description– Bug fixesrefactor/component-name– Code refactoringdocs/update-readme– Documentationtest/add-unit-tests– Test additions
Commit Message Conventions
feat:– New featuresfix:– Bug fixesrefactor:– Code refactoringdocs:– Documentationtest:– Testschore:– Maintenancestyle:– Formatting