You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Only shows PRs waiting on YOU - preserving your focus time and sanity
3
+
> Only shows PRs waiting on YOU
4
4
5
-
A blazingly fast CLI tool that filters out all the noise to show only the PRs that need your action. No more context switching through dozens of PRs that don't need you right now.
5
+
A fast CLI that filters GitHub PRs to show only what needs your attention. No more digging through dozens of PRs to find the ones that actually need you.
6
6
7
7
## Quick Start
8
8
9
9
```bash
10
10
go install github.com/ready-to-review/prs@latest
11
+
prs
11
12
```
12
13
13
-
**Prerequisites:** Go 1.23+ and GitHub CLI (`gh`) authenticated
14
+
**Requirements:** Go 1.23+ and GitHub CLI (`gh`) authenticated
14
15
15
16
## Usage
16
17
17
18
```bash
18
-
#The default - shows ONLY PRs waiting on your input
19
+
#Show PRs you're involved with (filters out stale PRs)
19
20
prs
20
21
21
-
# See everything you're involved with (if you really want to)
22
-
prs --all
22
+
# Only PRs waiting for your review
23
+
prs --blocked
24
+
25
+
# Include old/stale PRs
26
+
prs --include-stale
23
27
24
-
#Stay focused - auto-refresh what needs your attention (every 10 min)
28
+
#Auto-refresh view
25
29
prs --watch
26
30
27
-
# Get alerted to newly blocking PRs (notifications currently unavailable)
31
+
# Get notified when PRs need attention
28
32
prs --notify
29
33
```
30
34
31
35
## What You'll See
32
36
33
-
```
34
-
🔥 2 PRs awaiting your review
35
-
36
-
⬇️ Incoming PRs
37
+
### Default View (`prs`)
38
+

37
39
38
-
● 🚧 Fix authentication bug ⚡
39
-
3h • https://github.com/org/repo/pull/123
40
+
### Focus Mode (`prs --blocked`)
41
+

40
42
41
-
● ✅ Add user preferences
42
-
1d • https://github.com/org/repo/pull/456
43
-
44
-
⬆️ Your PRs
43
+
## Options
45
44
46
-
● 📝 Update documentation
47
-
2h • https://github.com/org/repo/pull/789
48
-
```
45
+
-`--blocked` - Only PRs blocking on you
46
+
-`--include-stale` - Include old PRs (hidden by default)
47
+
-`--watch` - Live updates
48
+
-`--notify` - Desktop notifications
49
+
-`--org` - Filter to specific organization
50
+
-`--debug` - Show debug info
49
51
50
-
## Options
52
+
## Status Icons
51
53
52
-
-`--all` - Show all your PRs, not just review requests
53
-
-`--watch` - Keep watching for updates (10 min intervals)
-`--notify` - New PR alerts (⚠️ currently disabled)
56
-
-`--verbose` - Debug mode for the curious
54
+
- 🚧 Draft PR
55
+
- ✅ Ready to merge
56
+
- 👍 Has approval
57
+
- 💥 Merge conflict
58
+
- ⏰ Stale PR
59
+
- ❌ Failing tests
60
+
- 📝 Regular PR
57
61
58
-
## Why This Exists
62
+
## Why This Tool?
59
63
60
-
**Focus is precious.** This tool shows ONLY the PRs blocked on your input - nothing else. No PRs waiting on CI, no PRs waiting on other reviewers, no PRs you've already reviewed. Just the ones that need you, right now.
64
+
Stop context switching through GitHub tabs. This tool uses smart filtering to show only PRs that actually need your input - not PRs waiting on CI, other reviewers, or ones you've already reviewed.
61
65
62
-
Built with Go for speed, because waiting for your tools is another focus killer.
66
+
Built fast in Go because your development tools shouldn't slow you down.
0 commit comments