github-pr-review
Resolve PR review comments with severity-based prioritization, fix application, and thread replies.
- Fetches inline comments and review bodies from GitHub, classifies by severity (CRITICAL > HIGH > MEDIUM > LOW), and displays a structured summary table before processing
- Parses CodeRabbit review sections (outside diff, duplicate, nitpick) and uses embedded "Prompt for AI Agents" context to understand issues and suggested fixes
- Applies fixes with user confirmation, commits functionally separate changes and batches cosmetic fixes, then replies to threads with standard templates
- Handles multi-issue comments by verifying all referenced locations are fixed, including "also applies to" ranges, and runs tests before pushing
- Submits formal PR review status and reminds about missing milestones at completion
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
GitHub PR review
Resolves Pull Request review comments with severity-based prioritization, fix application, and thread replies.
Current PR
!gh pr view --json number,title,state,milestone -q '"PR #\(.number): \(.title) (\(.state)) | Milestone: \(.milestone.title // "none")"' 2>/dev/null
Core workflow
1. Fetch, filter, and classify comments
REPO=$(gh repo view --json nameWithOwner -q '.nameWithOwner')
PR=$(gh pr view --json number -q '.number')
LAST_PUSH=$(git log -1 --format=%cI HEAD)
More from fvadicamo/dev-agent-skills
git-commit
Creates git commits following Conventional Commits format with type/scope/subject. Use when user wants to commit changes, create commit, save work, or stage and commit. Enforces project-specific conventions from CLAUDE.md.
186github-pr-merge
Merges GitHub Pull Requests after validating pre-merge checklist. Use when user wants to merge PR, close PR, finalize PR, complete merge, approve and merge, or execute merge. Runs pre-merge validation (tests, lint, CI, comments), confirms with user, merges with proper format, handles post-merge cleanup.
163github-pr-creation
Creates GitHub Pull Requests with automated validation and task tracking. Use when user wants to create PR, open pull request, submit for review, or check if ready for PR. Analyzes commits, validates task completion, generates Conventional Commits title and description, suggests labels. NOTE - for merging existing PRs, use github-pr-merge instead.
152creating-skills
Guide for creating Claude Code skills following Anthropic's official best practices. Use when user wants to create a new skill, build a skill, write SKILL.md, update an existing skill, or needs skill creation guidelines. Provides structure, frontmatter fields, naming conventions, and new features like dynamic context injection and subagent execution.
127