# List Review Threads

> List unresolved review threads for the pull request recorded in workflow state. Use only when explicitly invoked as the list-review-threads skill.

- Skill: `ntcoding/list-review-threads` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add ntcoding/list-review-threads`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ntcoding/list-review-threads/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: NTCoding (https://skillmd.com/u/ntcoding)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/ntcoding/list-review-threads

---


# List Review Threads

1. Detect the current harness before reading review threads:
   - If `CODEX_THREAD_ID` is present, run workflow operations with `pnpm --dir tools/dev-workflow-v2 run codex-workflow <operation> [args]`.
   - Otherwise, if `PI_CODING_AGENT=true` is present, run workflow operations with the `workflow` tool.
   - Otherwise, run workflow operations with `/dev-workflow-v2:workflow <operation> [args]`.
1. Run the selected harness's `get-state` workflow operation and extract `prNumber`.
1. Stop if `prNumber` is missing. Do not infer a PR from the current branch.
1. Fetch the PR URL, `reviewDecision`, reviews, and `reviewThreads` through GitHub GraphQL. Paginate the reviews, review threads, and every thread's comments connection until `pageInfo.hasNextPage` is false.
1. Keep unresolved review threads only and group them by file path. Use `no file` when a thread has no path.
1. For every unresolved thread, report its thread ID, file path, line when present, comment authors in chronological order, and the latest comment body selected by greatest `createdAt`.
1. Return exactly this report shape:

```text
PR: #<number> <url>
Unresolved threads: <count>

## <file path or "no file">
- Thread: <id>
  Line: <line or —>
  Authors: <author1>, <author2>
  Latest comment: <summary>
```

This skill is read-only. Do not reply to or resolve threads, and do not record workflow state.

