Skip to main content
statuslinesSource-backed
GitHub logo

GitHub Search Review Queue Statusline

Claude Code statusline that uses GitHub pull request search qualifiers to show review-requested queue counts for maintainers.

by MkDev11·added 2026-06-04·
Language:bash
Review first review before installing

Open the source and read safety notes before installing.

Citation facts

Source-backed facts for citing this resource, derived directly from the registry — also available as plain text for AI assistants.

Source URLs
https://github.com/github/docs/blob/main/content/search-github/searching-on-github/searching-issues-and-pull-requests.md, https://github.com/github/docs
Brand
GitHub
Brand domain
github.com
Brand asset source
brandfetch
Safety notes
Queue counts help with triage but do not rank urgency, security impact, or release blockers., Draft PRs are excluded from the ready count, but repositories may use labels or checks for additional readiness rules., Keep the refresh interval moderate to avoid repeated GitHub search calls.
Privacy notes
The script prints aggregate counts only, not PR titles, authors, or branch names., Private review requests follow the local GitHub account and may reveal workload size in screenshots., Organization review-team rules may cause counts to differ from the GitHub web UI.
Author
MkDev11
Submitted by
MkDev11
Claim status
unclaimed
Last verified
2026-06-04

Decision playbook

Review trust signals before you adopt

Signals are present but mixed. Use the checklist below to confirm the source and operational safety for your environment.

Compare context
Selected

0

Current score

78

Baseline

Delta

No baseline selected

No major trust-signal divergence detected in the current selection.

Source and provenance checks

Complete

Confirm ownership and provenance before trusting install instructions.

  • Source link availableRequired

    Open the canonical repository and verify ownership.

    Done
  • Source provenance statusRequired

    Marked as source-backed.

    Done
  • Metadata reviewed

    Registry metadata indicates a reviewed listing.

    Done

Safety and privacy checks

Complete

Validate risk disclosures before installation or API wiring.

  • Safety notes presentRequired

    Review the listed safety guidance before running commands.

    Done
  • Privacy notes presentRequired

    Review data handling notes before connecting accounts or secrets.

    Done
  • Trust level risk gateRequired

    Trust level does not block evaluation.

    Done

Package and install checks

Needs review

Check package metadata and artifact integrity signals.

  • Install payload available

    Install or copy payload is available for review.

    Done
  • Package verification flag

    No package verification flag provided.

    Pending
  • Checksum metadata

    No checksum provided for downloaded artifact.

    Pending

Compare-driven decision checks

Needs review

Use compare context to validate trade-offs before adoption.

  • Compare tray has multiple entries

    Add at least one more entry to compare trust differences.

    Pending
  • Baseline comparison available

    No baseline peer selected yet.

    Pending
  • Diverging trust signals identified

    No major trust-signal divergence found.

    Pending

Setup at a glance

Config edit

Copy-ready — paste the snippet to get started.

Adoption plan

Balanced adoption plan

Current risk score 16/100. Use staged verification before broader rollout.

Risk 16

Pre-adoption checks

Validate source and review signals before any execution.

  • Confirm source provenanceRequired

    Source URL/provenance metadata is present.

    Done
  • Confirm metadata review state

    Listing has review metadata.

    Done
  • Verify install payload

    Install/config payload exists and can be inspected.

    Done

Security checks

Confirm safety, privacy, and package integrity signals.

  • Review safety notesRequired

    Safety notes are present.

    Done
  • Review privacy notesRequired

    Privacy notes are present.

    Done
  • Verify package integrity metadata

    No package verification/checksum metadata.

    Pending

Rollout

Adopt in controlled steps based on the selected plan.

  • Run in isolated sandbox firstRequired

    Use a constrained sandbox and observe behavior across multiple tasks.

    Pending
  • Roll out graduallyRequired

    Roll out to a small cohort before wider usage.

    Pending
  • Set monitoring and fallback

    Define rollback path and monitor errors after adoption.

    Pending

Evidence readiness

Evidence readiness matrix · balanced

Required evidence gates are covered (5/6 signals complete).

Risk 15

Source provenance

Present

Source repository/provenance is listed.

Required in this preset

Metadata review

Present

Review metadata is present.

Required in this preset

Safety notes

Present

Safety notes are present.

Required in this preset

Privacy notes

Present

Privacy notes are present.

Optional in this preset

Package integrity

Missing

Package integrity metadata is missing.

Optional in this preset

Install payload

Present

Install payload is available.

Required in this preset

Required evidence gates are covered for this preset.

Decision timeline

Decision timeline · balanced

5/6 steps complete with no blocking gaps for this preset.

Risk 14

triage

Confirm source provenanceRequired

Source/provenance metadata is available.

Done

triage

Check metadata review statusRequired

Review metadata is available.

Done

verify

Review safety notesRequired

Safety notes are available.

Done

verify

Review privacy notes

Privacy notes are available.

Done

verify

Validate package integrity metadata

Package integrity metadata is missing.

Pending

rollout

Verify install payload and commandsRequired

Install payload is available.

Done

No required blockers for this timeline preset.

Prerequisite readiness

Prerequisite readiness

3 prerequisites to line up before setup. Have accounts and credentials ready first.

0/3 ready
Account & credentials2General1

Safety & privacy surface

Safety & privacy surface

3 safety and 3 privacy notes across 3 risk areas. Review closely: network access.

3 areas
  • SafetyGeneralQueue counts help with triage but do not rank urgency, security impact, or release blockers.
  • SafetyGeneralDraft PRs are excluded from the ready count, but repositories may use labels or checks for additional readiness rules.
  • SafetyGeneralKeep the refresh interval moderate to avoid repeated GitHub search calls.
  • PrivacyExecution & processesThe script prints aggregate counts only, not PR titles, authors, or branch names.
  • PrivacyNetwork accessPrivate review requests follow the local GitHub account and may reveal workload size in screenshots.
  • PrivacyGeneralOrganization review-team rules may cause counts to differ from the GitHub web UI.

Safety notes

  • Queue counts help with triage but do not rank urgency, security impact, or release blockers.
  • Draft PRs are excluded from the ready count, but repositories may use labels or checks for additional readiness rules.
  • Keep the refresh interval moderate to avoid repeated GitHub search calls.

Privacy notes

  • The script prints aggregate counts only, not PR titles, authors, or branch names.
  • Private review requests follow the local GitHub account and may reveal workload size in screenshots.
  • Organization review-team rules may cause counts to differ from the GitHub web UI.

Prerequisites

  • GitHub CLI installed and logged in as the maintainer account whose review queue should be shown.
  • jq available for counting pull request fields.
  • Repository access that lets GitHub search return pull requests requesting the current account's review.

Schema details

Install type
config
Troubleshooting
No
Source repository stats
Scope
Source repo
Runtime and command metadata
Script language
bash
Script body
#!/usr/bin/env bash
set -u

main() {
if ! command -v gh >/dev/null 2>&1; then
  echo "reviews: gh missing"
  exit 0
fi
if ! command -v jq >/dev/null 2>&1; then
  echo "reviews: jq missing"
  exit 0
fi

prs=$(gh search prs --review-requested=@me --state=open --limit 100 --json number,isDraft 2>/dev/null || true)
if [ -z "$prs" ]; then
  echo "reviews: unavailable"
  exit 0
fi

requested=$(printf '%s' "$prs" | jq 'length')
drafts=$(printf '%s' "$prs" | jq '[.[] | select(.isDraft == true)] | length')
ready=$((requested - drafts))

printf 'reviews: requested %s | ready %s | drafts %s\n' "$requested" "$ready" "$drafts"
}

case $- in
  *n*) ;;
  *) main "$@" ;;
esac
Full copyable content
{
  "statusLine": {
    "type": "command",
    "command": "$CLAUDE_PROJECT_DIR/.claude/statuslines/github-search-review-queue-statusline.sh"
  }
}

About this resource

Source notes

  • GitHub's search documentation covers issue and pull request search qualifiers, including review-requested workflows.
  • This entry focuses on the maintainer search queue rather than the GitHub CLI gh pr list manual page that overlaps the accepted repository-health statusline source domain.

Duplicate check

Checked existing statuslines, live HeyClaude statuslines, open pull requests, and repository content for github-search-review-queue-statusline, review queue, maintainer reviews, review-requested, GitHub search statuslines, and gh-maintainer-review-queue-statusline. The earlier cli.github.com submission was self-closed after #960 showed that source domain overlaps the accepted repository-health statusline; this replacement uses GitHub search documentation and a search-queue-focused scope.

Disclosure

Editorial statusline recipe. No paid placement or affiliate link is used.

Source citations

Add this badge to your README

Show that GitHub Search Review Queue Statusline is listed on HeyClaude. Paste this Markdown into your README — it renders the badge and links back to this page.

Listed on HeyClaude
[![Listed on HeyClaude](https://heyclau.de/badge/statuslines/github-search-review-queue-statusline.svg)](https://heyclau.de/entry/statuslines/github-search-review-queue-statusline)

How it compares

GitHub Search Review Queue Statusline side by side with its closest alternative on trust, install, platform support, and disclosed safety notes — all from reviewed registry metadata.

Field

Claude Code statusline that uses GitHub pull request search qualifiers to show review-requested queue counts for maintainers.

Open dossier

Claude Code statusline that reads GitHub REST check runs for the active pull request head commit and summarizes failed, pending, and passing checks.

Open dossier
Next steps
Trust
Review statusReviewedMaintainer reviewedReviewedMaintainer reviewed
Package trustPackage not verifiedPackage not verified
Source provenanceSource-backedSource-backed
SubmitterMkDev11MkDev11
Install riskReview firstReview first
Notes Safety ✓ Privacy ✓ Safety ✓ Privacy ✓
BrandGitHub logoGitHubGitHub logoGitHub
Categorystatuslinesstatuslines
SourceSource-backedSource-backed
AuthorMkDev11MkDev11
Added2026-06-042026-06-04
Platforms
Harness
Source repo
Safety notesQueue counts help with triage but do not rank urgency, security impact, or release blockers. Draft PRs are excluded from the ready count, but repositories may use labels or checks for additional readiness rules. Keep the refresh interval moderate to avoid repeated GitHub search calls.Check-run counts are a review prompt, not proof that every required branch protection rule is satisfied. Repositories with more than 100 check runs may need pagination or a slower dedicated dashboard. Keep the refresh interval moderate so the statusline does not repeatedly query GitHub APIs.
Privacy notesThe script prints aggregate counts only, not PR titles, authors, or branch names. Private review requests follow the local GitHub account and may reveal workload size in screenshots. Organization review-team rules may cause counts to differ from the GitHub web UI.The script prints aggregate check-run counts and the pull request number. Private repository metadata follows the local GitHub CLI account and may appear in terminal recordings. The statusline does not print check names, workflow names, branch names, or commit messages.
Prerequisites
  • GitHub CLI installed and logged in as the maintainer account whose review queue should be shown.
  • jq available for counting pull request fields.
  • Repository access that lets GitHub search return pull requests requesting the current account's review.
  • GitHub CLI installed and logged in for the repository.
  • jq available for counting GitHub REST check-run states.
  • The current branch has an associated pull request and the account can read check runs for its head commit.
Install
Config
{
  "statusLine": {
    "type": "command",
    "command": "$CLAUDE_PROJECT_DIR/.claude/statuslines/github-search-review-queue-statusline.sh"
  }
}
{
  "statusLine": {
    "type": "command",
    "command": "$CLAUDE_PROJECT_DIR/.claude/statuslines/github-check-runs-statusline.sh"
  }
}
Citations
ClaimUnclaimedUnclaimed
Open in the interactive comparison tool

Related guides

Signals

Loading live community signals…

More like this, weekly

A short, calm digest of reviewed Claude resources. Unsubscribe any time.