Documentation
README
Triage PR Review Comments
Fetch all review comments on the current PR, verify each finding against real code, fix valid issues, and push.
Phase 1: Gather Comments
-
Determine the PR number:
- Use
$ARGUMENTSif provided - Otherwise:
gh pr view --json number --jq .number
- Use
-
Fetch ALL comments (reviewers post in multiple places):
gh api --paginate repos/{owner}/{repo}/pulls/{pr}/reviews gh api --paginate repos/{owner}/{repo}/pulls/{pr}/comments gh api --paginate repos/{owner}/{repo}/issues/{pr}/comments -
Extract unique findings — deduplicate across Copilot, Greptile, and human reviewers. Group by file and line.
Phase 2: Verify Each Finding
For EVERY finding, verify against real code before accepting or rejecting:
This is the opening of the README. Read the full README on GitHub.