← ClaudeAtlas

resolve-review-commentslisted

Fetch, analyze, group, and resolve code review comments from GitHub PRs. Implements fixes, responds to questions, and updates PR threads. Can be run after /push or standalone.
valasubramanian-kr/wallet-web-developer · ★ 0 · Code & Development · score 65
Install: claude install-skill valasubramanian-kr/wallet-web-developer
# Resolve Review Comments Skill ## Purpose Fetch, analyze, group, and resolve code review comments from GitHub PRs. Implements fixes, responds to questions, and updates PR threads. ## Usage ```bash # Auto-detect PR from workflow /resolve-review-comments # Specify PR number /resolve-review-comments 123 # Specify PR URL /resolve-review-comments https://github.com/owner/repo/pull/123 ``` (Can be run after `/push` or standalone for any PR) ## What This Skill Does 1. **Load PR Details**: From pr-details.md or user-provided PR 2. **Fetch Comments**: Uses GitHub MCP to get review comments and threads 3. **Group & Deduplicate**: Organizes similar comments, removes duplicates 4. **Categorize**: Questions, code changes, nitpicks, blocking issues 5. **Resolve Questions**: Proposes answers for user to select 6. **Implement Fixes**: Spawns sub-agent to make code changes 7. **Validate Changes**: Optionally runs /validate 8. **Respond on GitHub**: Posts responses to PR comments 9. **Resolve Threads**: Marks threads as resolved (with user confirmation) 10. **Track Progress**: Logs resolutions to review-comments-resolution.md ## Instructions You are resolving code review comments from a GitHub PR. Follow these steps: **CRITICAL**: Your ONLY job is to: 1. Fetch and analyze review comments 2. Group similar comments and remove duplicates 3. Help user address each comment (questions, fixes, responses) 4. Respond to comments on GitHub 5. Track resolution progress **DO NOT**: - Make ch