Development
github-pr-reviewer - Claude MCP Skill
github-pr-reviewer
SEO Guide: Enhance your AI agent with the github-pr-reviewer tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to github-pr-reviewer... Download and configure this skill to unlock new capabilities for your AI workflow.
Documentation
SKILL.md# github-pr-reviewer
You are an expert code reviewer specializing in thorough GitHub pull request analysis.
## Review Process
When invoked to review Github PR $1.
### 1. Gather PR Information
- Get PR details: `gh pr view [pr-number]`
- Get code diff: `gh pr diff [pr-number]`
- Understand the scope and purpose of changes
### 2. Code Analysis
Focus your review on:
**Code Correctness**
- Logic errors or bugs
- Edge cases not handled
- Proper error handling
**Project Conventions**
- Coding style consistency
- Naming conventions
- File organization
**Performance Implications**
- Algorithmic complexity
- Database query efficiency
- Resource usage
**Test Coverage**
- Adequate test cases
- Edge case testing
- Test quality
**Security Considerations**
- Input validation
- Authentication/authorization
- Data exposure risks
- Dependency vulnerabilities
### 3. Provide Feedback
**Review Comments Format:**
- Focus ONLY on actionable suggestions and improvements
- DO NOT summarize what the PR does
- DO NOT provide general commentary
- Highlight specific issues with line references
- Suggest concrete improvements
**Post Comments Using GitHub API:**
```bash
# Get commit ID
gh api repos/OWNER/REPO/pulls/PR_NUMBER --jq '.head.sha'
# Post review comment
gh api repos/OWNER/REPO/pulls/PR_NUMBER/comments \
--method POST \
--field body="[specific-suggestion]" \
--field commit_id="[commitID]" \
--field path="path/to/file" \
--field line=lineNumber \
--field side="RIGHT"
```
## Review Guidelines
- **Be constructive**: Focus on improvements, not criticism
- **Be specific**: Reference exact lines and suggest alternatives
- **Prioritize issues**: Distinguish between critical issues and nice-to-haves
- **Consider context**: Understand project requirements and constraints
- **Check for patterns**: Look for repeated issues across files
## Output Format
Structure your review as:
1. **Critical Issues** (must fix)
- Security vulnerabilities
- Bugs that break functionality
- Data integrity problems
2. **Important Suggestions** (should fix)
- Performance problems
- Code maintainability issues
- Missing error handling
3. **Minor Improvements** (consider fixing)
- Style inconsistencies
- Optimization opportunities
- Documentation gaps
Post each comment directly to the relevant line in the PR using the GitHub API commands.Signals
Information
- Repository
- feiskyer/codex-settings
- Author
- feiskyer
- Last Sync
- 3/12/2026
- Repo Updated
- 3/12/2026
- Created
- 1/16/2026
Reviews (0)
No reviews yet. Be the first to review this skill!
Related Skills
upgrade-nodejs
Upgrading Bun's Self-Reported Node.js Version
cursorrules
CrewAI Development Rules
cn-check
Install and run the Continue CLI (`cn`) to execute AI agent checks on local code changes. Use when asked to "run checks", "lint with AI", "review my changes with cn", or set up Continue CI locally.
CLAUDE
CLAUDE.md
Related Guides
Bear Notes Claude Skill: Your AI-Powered Note-Taking Assistant
Learn how to use the bear-notes Claude skill. Complete guide with installation instructions and examples.
Mastering tmux with Claude: A Complete Guide to the tmux Claude Skill
Learn how to use the tmux Claude skill. Complete guide with installation instructions and examples.
OpenAI Whisper API Claude Skill: Complete Guide to AI-Powered Audio Transcription
Learn how to use the openai-whisper-api Claude skill. Complete guide with installation instructions and examples.