What needs you, right now.
prq shows you what needs your attention — PRs, issues, tickets — categorized by why, not just that they exist. One command. Zero noise.
PRs and issues in one queue, categorized by action needed: needs response, requested, stale, waiting on others, mentioned. Mark items as in progress. Nudge stale work without double-pinging. Filter by type. Run prq, see your queue, act on it, move on.
npm install -g prq-cliRequires GitHub CLI (gh) to be authenticated.
# See what needs your attention (interactive by default)
prq
# Non-interactive / plain text
prq --no-interactive
# Act on a PR or issue
prq open 482
prq nudge 482Shows what needs your attention — PRs and issues in shared categories. Interactive mode is the default when running in a terminal.
prq # interactive mode (default)
prq status --repos org/repo1 org/repo2 # specific repos
prq status --json # machine-readable
prq --no-interactive # plain text outputNavigate your queue with keyboard shortcuts:
- ↑↓ navigate ←→ page up/down / search o open n nudge s start/stop c copy url t filter a actions q quit
Press / to search — type a number, title, or author and the cursor jumps to the first match. Enter confirms, Esc cancels.
Press t to filter by type — a all, p PRs only, i issues only.
Press a to open the actions menu — all actions (built-in and custom) are listed and accessible by number.
Act on PRs or issues by number, org/repo#number, or full URL:
prq open 482 # open in browser
prq open org/repo#482 # open specific repo item
prq nudge 482 # post a comment (warns if already nudged)
prq nudge 482 --yes --message "Update?" # skip confirmationRun custom actions defined in your config.
Creates a .prqrc.json config file.
Actions are configurable shell command templates. Inline commands or scripts — everything is a string:
{
"repos": ["org/repo"],
"actions": {
"review": "claude '/review {url}'",
"checkout": "gh pr checkout {number} --repo {owner}/{repo}",
"deep-review": "./scripts/review.sh {number} {url}"
}
}Actions run with full terminal control — interactive tools like Claude Code take over the screen, and prq resumes when they exit.
Variables: {url}, {number}, {owner}, {repo}, {fullRepo}, {title}, {author}, {days}, {category}, {target}
Install the /prq skill so Claude Code can use prq commands inside any session:
prq skill --global # install globally
prq skill # install in current project onlyThen Claude can check your queue, open PRs and issues, nudge, and run actions on your behalf.
prq/
├── apps/
│ ├── cli/ # CLI tool (published to npm as prq-cli)
│ └── web/ # Landing page
└── brand.md # Brand strategy
bun install # install all workspace deps
bun run dev:cli # run the CLI
bun run dev:web # run the landing page on :3005
bun test # run tests
bun run lint # lint + formatting
bun run typecheck # type check all appsMIT