npx skills add ...
npx skills add brave/brave-core --skill prs-reviewed
npx skills add brave/brave-core --skill prs-reviewed
'Get PRs a user reviewed on brave/brave-core. Shows PR number, title, author, state, and links. Triggers on: prs reviewed, reviewed prs, review activity, what did I review, review history.'
Query GitHub for pull requests a user has reviewed on brave/brave-core within
a given time window.
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., 3d means last 3 days)Both arguments are required. If missing, ask the user for them.
Calculate the start date by subtracting <num> days from today's date, then use
the GitHub CLI to search for reviewed PRs:
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:
Only include PRs where the user's most recent review falls within the requested time window.
Display results in a markdown table:
| PR | Title | Author | State | Reviewed |
|---|---|---|---|---|
| #1234 | Fix crash in ... | author | merged | 2026-02-25 |
[#number](html_url) formatpull_request.merged_at to
distinguish merged from closed)Sort by review date, most recent first.
After the table, show a summary: "N PRs reviewed by @username in the last Md"
gh is not authenticated, inform the user to run gh auth login