🔍 Filtering
Narrow review threads by file, author, date, state, and sort order.
You can pre-filter threads when launching the tool, then refine further inside the fzf picker.
📄 By file
The UI list starts with the file path for quick scanning. Filter by file with
-f, which can be repeated:
gh pr-comments -f src/app.pyValues are treated as regex by jq's test(...), so you can use patterns:
gh pr-comments -f '^src/.*\.py$'👤 By author
gh pr-comments -a @alice--author accepts either user or @user, and can be repeated. copilot is
normalized to copilot-pull-request-reviewer.
📅 By date
Filter by an inclusive, UTC-based range on each thread's createdAt:
gh pr-comments --since 2024-01-01 --until 2024-01-31🧩 Combine filters
Filters stack together:
gh pr-comments -f src -a @alice --since 2024-01-01 --include-outdated🔀 Sorting and state
- Sort:
--sort datesorts by newest first;--sort authorgroups by author. The default isfile. - Resolved:
--resolvedbrowses resolved threads as a follow-up queue instead of unresolved ones.
🎨 Color
Disable colors with --no-color, or set NO_COLOR=1. Piping output? Prefer
--no-color.