agentsclimarketplace

Inbox

Skill technicalpickles/pickled-claude-plugins/plugins/git/skills/inbox

Personal collection of Claude Code skills for development workflows

Install
npx -y skills add technicalpickles/pickled-claude-plugins --skill inbox

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 10 stars10 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when checking what PRs are waiting for your review, or when starting your day to see what needs attention

SKILL.md

2.0 KB, as published. Nobody here has run it

Git Inbox

Overview

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..."

When to Use

  • Starting your day - "what needs my attention?"
  • User asks about PRs to review
  • User says "inbox", "review queue", "what's waiting on me?"

Workflow

1. Fetch PRs Awaiting 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

2. Enrich with Review Status

For each PR, get review state:

gh pr view {number} --repo {owner}/{repo} --json reviews,reviewRequests

3. Present Inbox

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:

  • Always show full PR URL (clickable/copy-pasteable)
  • Sort by age (oldest first) or priority
  • Show review status (no reviews yet, changes requested, approved by others)

4. Offer Next Action

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.

Quick Reference

CommandPurpose
gh search prs --review-requested=@me --state=openPRs requesting your review
gh pr view {n} --repo {r} --json reviewsGet review status

Related

  • git:checkout - Check out a PR for local review
  • code-review - Guide the actual review process (separate skill)

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.