review-respond
GitHub自动化处理PR待回复的评论,包括获取反馈、定位代码、验证库行为、应用修复并验证准确性。支持批量处理Copilot和人工评审意见。
Trigger Scenarios
Install
npx skills add dathere/qsv --skill review-respond -g -y
SKILL.md
Frontmatter
{
"name": "review-respond",
"description": "Respond to all pending review comments on the current PR — fetch comments, apply fixes, verify accuracy, test, commit, and reply. Use when addressing Copilot reviews, GitHub PR reviews, or any batch of review feedback.",
"argument-hint": "[PR number]"
}
Review Response Workflow
Batch-process all pending review comments on a PR in a single pass.
Step 1: Identify the PR
If a PR number was provided as an argument, use it. Otherwise, detect the current PR:
gh pr view --json number,url,headRefName --jq '.number'
Step 2: Fetch all pending review comments
gh api repos/{owner}/{repo}/pulls/{number}/comments --jq '.[] | select(.position != null) | {id, path, line: .original_line, body, user: .user.login}'
Also check for PR review threads with unresolved status:
gh api graphql -f query='{ repository(owner:"{owner}", name:"{repo}") { pullRequest(number:{number}) { reviewThreads(first:100) { nodes { isResolved comments(first:10) { nodes { body author { login } path line } } } } } } }'
Step 3: Route comments by reviewer type
- Copilot comments (author is
copilotorgithub-actions): Invoke/copilot-review {PR number}to handle these — it fetches, evaluates, applies, and replies automatically. - Human reviewer comments: Process each one individually in the steps below.
Step 4: Apply fixes for human reviewer comments
For each unresolved human review comment:
-
Locate the code with Serena, not bare Read:
mcp__serena__get_symbols_overviewon the referenced file to see what's there.mcp__serena__find_symbol(withinclude_body=trueonly when you need the body) to jump straight to the function/method/struct the comment is about. Usename_path_patternlikeArgs/cat_rowskeyrather than scanning the whole file.mcp__serena__find_referencing_symbolsbefore changing any signature, return type, or removing a symbol — confirms the blast radius across the codebase.- Only fall back to
Readwhen the comment is about plain text (docs, comments, USAGE strings) that has no symbolic structure, or when Serena returns empty.
-
Verify library/API claims with Context7 before agreeing or disagreeing:
- If the reviewer asserts behavior of a third-party crate/library/SDK (e.g., "the csv crate's
byte_headers()consumes the row", "tokio'sspawn_blockingreturnsJoinHandle"), callmcp__context7__resolve-library-idthenmcp__context7__query-docsto confirm before acting. Reviewer claims are not always correct; library behavior can change between versions. - Skip Context7 only when the comment is purely about local code (project-internal logic, naming, project conventions).
- If the reviewer asserts behavior of a third-party crate/library/SDK (e.g., "the csv crate's
-
Apply the fix using
Edit(preferred) ormcp__serena__replace_symbol_bodyfor whole-symbol rewrites.
Step 5: Verification gate
Before committing, verify accuracy of all changes:
- If any change touches documentation that references counts (tool counts, command counts, feature lists): explicitly list each item by name, then count the list. Never state a number without showing the enumeration.
- If any change references file paths, confirm they exist (
Bashwithls/test -f). - If any change references a symbol (function, struct, method, constant), use
mcp__serena__find_symbolto confirm it exists at the path you wrote — not Grep. A grep hit on the name is not proof the symbol resolves there. - If any change references CLI flags or options, verify they exist in the source or
--helpoutput. - If any change relies on third-party library behavior, the relevant Context7 query from Step 4 must already be in this conversation. If you're verifying after the fact, run it now — do not commit on unverified library assumptions.
Step 6: Run tests
Run the appropriate test suite based on what was changed:
- Rust source (
.rs):cargo test -F all_features - MCP server (
.ts):npm test(from.claude/skills/) - Specific command:
cargo t {command_name} -F all_features
Step 7: Commit
git add <changed files>
git commit -m "address review: <concise summary of fixes>"
Step 8: Reply to resolved comments
For each comment that was addressed, reply via the GitHub API:
gh api repos/{owner}/{repo}/pulls/{number}/comments/{comment_id}/replies -f body="Fixed: <what was changed>"
Step 9: Report summary
Output a summary table:
| Metric | Value |
|---|---|
| Comments addressed | N |
| Copilot (via /copilot-review) | N |
| Human reviewer | N |
| Tests | passed/failed/skipped |
| Commit | <hash> |
Version History
- 2f6b659 Current 2026-08-20 16:15


