Help us improve
Share bugs, ideas, or general feedback.
From git
Fetches and lists GitHub PRs awaiting your review or assignment using gh CLI, sorted by age with author/status/URL; offers checkout prompts.
npx claudepluginhub technicalpickles/pickled-claude-plugins --plugin gitHow this skill is triggered — by the user, by Claude, or both
Slash command
/git:inboxThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Show PRs awaiting your review across repositories. Surfaces what needs your attention with context to prioritize.
Batch-opens up to 10 recent GitHub PRs with pending review requests for you in pair-review, auto-triggering AI analysis via ?analyze=true.
Fetches unread GitHub PR review requests filtered by team. Use to find PRs needing review, check team queue, or show your review requests.
Fetches unread GitHub review request notifications for open PRs filtered by team. Useful for checking team review queues or finding PRs needing review.
Share bugs, ideas, or general feedback.
Show PRs awaiting your review across repositories. Surfaces what needs your attention with context to prioritize.
Announce: "Using git:inbox to check PRs awaiting your review..."
# PRs where you're requested reviewer
gh search prs --review-requested=@me --state=open --json repository,number,title,author,createdAt,url
# PRs where you're assigned
gh search prs --assignee=@me --state=open --json repository,number,title,author,createdAt,url
For each PR, get review state:
gh pr view {number} --repo {owner}/{repo} --json reviews,reviewRequests
Format as actionable list:
## PRs Awaiting Your Review
### {repo} #{number}: {title}
- **Author:** @{author}
- **Age:** {days} days
- **URL:** {full_url}
- **Status:** {review_status}
---
{N} PRs need your attention. Check out a PR for local review?
Important:
Use AskUserQuestion:
Which PR would you like to check out for review?
(A) #{number} - {title}
(B) #{number} - {title}
(C) #{number} - {title}
(D) None right now
If user picks one → invoke git:checkout with the PR.
| Command | Purpose |
|---|---|
gh search prs --review-requested=@me --state=open | PRs requesting your review |
gh pr view {n} --repo {r} --json reviews | Get review status |
git:checkout - Check out a PR for local reviewcode-review - Guide the actual review process (separate skill)