
Prs Reviewed
- 6 installs
- 3.5k repo stars
- Updated August 5, 2026
- brave/brave-core
prs-reviewed is a Claude Code skill that queries GitHub for the pull requests a user reviewed on brave/brave-core within a given time window.
About
Queries GitHub for the pull requests a user has reviewed on brave/brave-core within a time window. It searches by reviewer, verifies each review timestamp falls in range, and presents a table of PR number, title, author, state, and review date. A developer or lead uses it for standups and review-workload analysis.
- Lists PRs a user reviewed on brave-core over N days
- Verifies each PR's latest review falls inside the window
- Outputs a sorted table with a per-user review count
Prs Reviewed by the numbers
- 6 all-time installs (skills.sh)
- Ranked #466 of 733 Git & Pull Requests skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
prs-reviewed capabilities & compatibility
Free; requires an authenticated gh CLI.
- Capabilities
- code review
- Works with
- github
- Use cases
- code review · project management
- Runs
- Runs locally
- Pricing
- Free
What prs-reviewed says it does
Query GitHub for pull requests a user has reviewed on `brave/brave-core` within a given time window.
Only include PRs where the user's most recent review falls within the requested time window.
npx skills add https://github.com/brave/brave-core --skill prs-reviewedAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 6 |
|---|---|
| repo stars | ★ 3.5k |
| Last updated | August 5, 2026 |
| Repository | brave/brave-core ↗ |
What it does
Report the pull requests a given user reviewed on brave-core within a chosen number of days.
Who is it for?
Leads or developers summarizing a team member's PR review activity for standups.
When should I use this skill?
You need a list of PRs a user reviewed on brave-core over the last N days.
What you get
A verified, sorted table of the user's reviewed PRs with a summary count.
By the numbers
- 4-step job (parse, query, present, edge cases)
Files
PRs Reviewed
Query GitHub for pull requests a user has reviewed on brave/brave-core within a given time window.
---
When to Use
- Checking review activity for a team member
- Weekly/daily standups — summarizing what someone reviewed
- Workload analysis — understanding review distribution
---
The Job
Step 1: Parse Arguments
The skill receives arguments in the format: <username> <num>d
<username>— GitHub username (e.g.,netzenbot)<num>d— Number of days to look back from now (e.g.,3dmeans last 3 days)
Both arguments are required. If missing, ask the user for them.
Step 2: Query GitHub
Calculate the start date by subtracting <num> days from today's date, then use the GitHub CLI to search for reviewed PRs:
gh api --paginate "search/issues?q=type:pr+repo:brave/brave-core+reviewed-by:<username>+updated:>%3D<YYYY-MM-DD>&per_page=100" --jq '.items[] | {number, title, user: .user.login, state, pull_request: .pull_request.html_url, updated_at}'Where <YYYY-MM-DD> is the computed start date.
Important: The updated:>= filter is a rough filter. After fetching results, you must verify each PR was actually reviewed by the user within the requested window by checking review timestamps:
gh api "repos/brave/brave-core/pulls/<number>/reviews" --jq '[.[] | select(.user.login == "<username>")] | sort_by(.submitted_at) | last | .submitted_at'Only include PRs where the user's most recent review falls within the requested time window.
Step 3: Present Results
Display results in a markdown table:
| PR | Title | Author | State | Reviewed |
|---|---|---|---|---|
| #1234 | Fix crash in ... | author | merged | 2026-02-25 |
- PR: Link to the PR using
[#number](html_url)format - Title: PR title (truncate to ~60 chars if very long)
- Author: PR author's GitHub username
- State: open, closed, or merged (check
pull_request.merged_atto
distinguish merged from closed)
- Reviewed: Date of the user's most recent review on that PR
Sort by review date, most recent first.
After the table, show a summary: "N PRs reviewed by @username in the last Md"
Step 4: Handle Edge Cases
- If no PRs found, report: "No PRs reviewed by @username in the last Nd on
brave/brave-core"
- If
ghis not authenticated, inform the user to rungh auth login - If rate-limited, inform the user and suggest a shorter time window