check-pr-commentslisted
Install: claude install-skill lklimek/claudius
# Check PR Comments Workflow
Workflow for checking/triaging/verifying existing PR review comments.
## 1. Fetch All Comments
**ALWAYS fetch fresh comments from GitHub on every invocation** — never assume none are new.
**Bare coordinators:** A bare coordinator session typically lacks `mcp__plugin_claudius_github__*` tools. Go directly to the [gh CLI fallback](references/gh-cli-fallback.md); spawned agents whose frontmatter lists the tools still prefer MCP.
Fetch all comment types via GitHub MCP `pull_request_read`:
- **Review threads** (inline, with resolution status): `method: "get_review_comments"` — threads with `isResolved`, `isOutdated`, `isCollapsed` metadata and grouped comments. Carry `isResolved` forward per thread — step 3 uses it to skip re-verification of already-resolved threads.
- **Review summaries**: `method: "get_reviews"` — review state, body, author.
- **PR-level comments** (non-diff): `method: "get_comments"` — general PR discussion.
Paginate to fetch all results: `perPage` + `page` (get_reviews/get_comments) or `perPage` + `after` cursor (get_review_comments).
If GitHub MCP is unavailable, see [gh-cli-fallback.md](references/gh-cli-fallback.md) for `gh` CLI equivalents.
## 2. Checkout and Pull the PR Branch
```bash
gh pr checkout <number>
git pull
```
## 3. Verify Each Comment Against Current Code
**Trust GitHub's resolved status �� do not re-verify already-resolved threads.** Classify any thread fetched with `isResolved: true` as **Resolved** a