Agent skill · Code Review & Quality

gh-review-requests

Fetch unread GitHub notifications for open PRs where review is requested from a specified team or opened by a team member. Use when asked to "find PRs I need to review", "show my review requests", "what needs my review", "fetch GitHub review requests", or "check team review queue".

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorcan modify filesMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill gh-review-requests --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Allowed tools: Bash
Path: skills/gh-review-requests/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# GitHub Review Requests Fetch unread `review_requested` notifications for open (unmerged) PRs, filtered by a GitHub team. **Requires**: GitHub CLI (`gh`) authenticated. ## When to Use - You need to find unread GitHub PR review requests for a specific team. - You want to check which open PRs currently need your review or a teammate's review. - You need a filtered review queue instead of manually browsing GitHub notifications. ## Step 1: Identify the Team If the user has not specified a team, ask: > Which GitHub team should I filter by? (e.g. `streaming-platform`) Accept either a team slug (`streaming-platform`) or a display name ("Streaming Platform") — convert to lowercase-hyphenated slug before passing to the script. ## Step 2: Run the Script ```bash uv run ${CLAUDE_SKILL_ROOT}/scripts/fetch_review_requests.py --org getsentry --teams <team-slug> ``` To filter by multiple teams, pass a comma-separated list: ```bash uv run ${CLAUDE_SKILL_ROOT}/scripts/fetch_review_requests.py --org getsentry --teams <team slugs> ``` ### Script output ```json { "total": 3, "prs": [ { "notification_id": "12345", "title": "feat(kafka): add workflow to restart a broker", "url": "https://github.com/gets

What's inside
Steps it walks through
  1. When to Use
  2. Step 1: Identify the Team
  3. Step 2: Run the Script
  4. Script output
  5. Step 3: Present Results
  6. Fallback
  7. Limitations
Commands it runs
uv run ${CLAUDE_SKILL_ROOT}/scripts/fetch_review_requests.py --org getsentry --teams <team-slug>
uv run ${CLAUDE_SKILL_ROOT}/scripts/fetch_review_requests.py --org getsentry --teams <team slugs>
gh api notifications --paginate
More from agentic-awesome-skills
All skills →
About this skill
What does the gh-review-requests skill do?

Fetch unread GitHub notifications for open PRs where review is requested from a specified team or opened by a team member. Use when asked to "find PRs I need to review", "show my review requests", "what needs my review", "fetch GitHub review requests", or "check team review queue".

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill gh-review-requests --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going