Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

quick

Show “quick win” PRs — small, non-draft PRs you can review in 5 minutes.

Find low-effort reviews that make a big impact.

When to Use

  • Short break: “Got 5 minutes, review something”
  • Review streak: “Keep momentum going”

Synopsis

prctrl quick [OPTIONS]

Options

FlagDescriptionDefault
-l, --max-lines <NUM>Maximum total lines for a “quick” PR200
-n, --limit <NUM>Maximum number of results10
-P, --priorityShow priority scores (1-5 stars based on age and size)false
--repo <PATTERN>Filter by repository name (partial match, case-insensitive)
--author <PATTERN>Filter by author username (partial match, case-insensitive)
-s, --since-days <NUM>Only show PRs created since this many days ago
--jsonOutput as JSON for scriptingfalse

Examples

# Show quick wins (default: ≤200 lines, non-draft)
prctrl quick

# Show tiny PRs only (≤100 lines)
prctrl quick --max-lines 100

# Show quick wins from a specific repo
prctrl quick --repo myservice

# Show quick wins with priority scores
prctrl quick --priority

# Only show recent quick wins (last 7 days)
prctrl quick --since-days 7

# Combine filters
prctrl quick --repo api --author johndoe --priority --since-days 14