From gh-pr-tasks
Lists pull requests needing attention — your PRs with unresolved review feedback and PRs awaiting your review. Use when the user asks to list PRs, check PR status, see what needs work, or find PRs to review.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gh-pr-tasks:pr-listThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Lists pull requests that need the user's attention in the current repository.
Lists pull requests that need the user's attention in the current repository.
First, invoke the pr-check-deps skill to validate the environment. If it reports a failure, stop and show the remediation instructions to the user.
Determine the repository. If the user provided -R owner/repo, use that. Otherwise detect from git context:
gh repo view --json nameWithOwner -q .nameWithOwner
If this fails, ask the user to specify the repository.
Fetch open PRs authored by the current user:
gh pr list --author @me --state open --json number,title,url,updatedAt,reviewDecision -R <owner/repo>
For each PR returned, check for unresolved review threads:
gh pr-review threads list -R <owner/repo> <PR_NUMBER> --unresolved
Count the items in the returned JSON array to get the unresolved thread count.
Fetch PRs where the current user is a requested reviewer:
gh pr list --search "review-requested:@me" --state open --json number,title,url,author,updatedAt -R <owner/repo>
Display two tables:
Your PRs with feedback:
| PR | Title | Unresolved Threads | Updated |
|---|---|---|---|
| #123 | Add user auth | 3 | 2h ago |
If no PRs have unresolved threads, say "No PRs with unresolved feedback."
PRs awaiting your review:
| PR | Title | Author | Updated |
|---|---|---|---|
| #456 | Fix login bug | @teammate | 1d ago |
If no PRs are waiting, say "No PRs awaiting your review."
After displaying results, suggest:
pr-fix to address feedback on one of your PRs"pr-review to review a PR"--state open to filter to open PRs onlygh pr-review threads list --unresolved call may be slow for repos with many PRs; only check PRs that have reviewDecision of CHANGES_REQUESTED or REVIEW_REQUIRED to minimize API callsnpx claudepluginhub jeremygiberson/gh-pr-tasks-plugin --plugin gh-pr-tasksFetches and lists GitHub PRs awaiting your review or assignment using gh CLI, sorted by age with author/status/URL; offers checkout prompts.
Fetches, organizes, and presents GitHub PR comments—issue-level, review bodies, inline—grouped by human/bot with extracted must-fix/optional actionable items.
Fetches unresolved GitHub PR review comments via script, analyzes against current code by file, categorizes as 'should address' or 'can ignore', and summarizes fixes.