Stop drowning in PR notifications. Let AI triage your reviews.
PRCtrl is your terminal-native PR companion. It watches your GitHub PRs, notifies you when action is needed, and helps you review smarter with AI-powered triage.
┌─────────────────────────────────────────────────────────────┐
│ 🔔 PR #4821: feat: add CSV export │
│ PRCtrl │
│ 👤 alice • +120 lines • opened 2 days ago │
│ │
│ ✅ Chrome opens automatically → PR ready for review │
└─────────────────────────────────────────────────────────────┘
# 1. Configure your GitHub credentials
prctrl config init
# 2. See what needs your attention
prctrl list
# 3. Let AI triage the important ones
prctrl delegate
# 4. Monitor in background (get notified of new PRs)
prctrl monitor &
# See all PRs waiting for you
prctrl list
# Output:
# 🔍 3 pending review(s)
# [1] feat: add CSV export #4821 (frontend) 👤 alice +120 - 2 days
# [2] fix: flaky CI #312 (backend) 👤 bob +45 - 4 days
# [3] chore: update deps #891 (deps) 👤 carol +890 - 1 day
# Want to focus on important stuff only?
prctrl quick --max-lines 200
# Search for a specific PR?
prctrl search "security"
# Let Claude decide what's important?
prctrl delegate
# Start monitoring (you'll be notified of new PRs)
prctrl monitor --interval 300 &
# When you get a notification...
prctrl review --pr 4821 # Read the diff without leaving terminal
prctrl diff --pr 4821 # See stats
# Approve directly from CLI
prctrl approve --pr 4821 -m "LGTM! Good tests."