---
name: PR List
slug: pr-list
category: Quality
description: PR List displays open pull requests in the current repository and ranks them by priority based on type, draft status, and labels. Use it when you need to see which PRs need attention first.
github: "https://github.com/wasabeef/claude-code-cookbook/tree/main/plugins/en/skills/pr-list"
language: Shell
stars: 1131
forks: 111
install: "npx degit https://github.com/wasabeef/claude-code-cookbook/tree/main/plugins/en/skills/pr-list ~/.claude/skills/pr-list"
installs_to: ~/.claude/skills/pr-list
source_path: plugins/en/skills/pr-list/SKILL.md
collection_size: 25
category_size: 1354
collection_url: "https://dirskills.com/collections/wasabeef/claude-code-cookbook"
added: 2026-08-20T07:56:20.965Z
last_synced: 2026-08-20T07:56:20.965Z
canonical_url: "https://dirskills.com/skills/pr-list"
---

# PR List

PR List displays open pull requests in the current repository and ranks them by priority based on type, draft status, and labels. Use it when you need to see which PRs need attention first.

**Install:**

```bash
npx degit https://github.com/wasabeef/claude-code-cookbook/tree/main/plugins/en/skills/pr-list ~/.claude/skills/pr-list
```

## README

# Display open PRs with priority ranking

Displays a prioritized list of open PRs in the current repository.

## Usage

```bash
# Request from Claude
"Show a prioritized list of open PRs"
```

## Basic Examples

```bash
# Get repository information
gh repo view --json nameWithOwner | jq -r '.nameWithOwner'

# Get open PR information and request from Claude
gh pr list --state open --draft=false --json number,title,author,createdAt,additions,deletions,reviews --limit 30

"Organize the above PRs by priority, including a 2-line summary for each PR. Generate URLs using the repository name obtained above"
```

## Display Format

```text
Open PRs List (by Priority)

### High Priority
#number Title [Draft/DNM] | Author | Time since opened | Approved count | +additions/-deletions
      ├─ Summary line 1
      └─ Summary line 2
      https://github.com/owner/repo/pull/number

### Medium Priority
(Similar format)

### Low Priority
(Similar format)
```

## Priority Assessment Criteria

**High Priority**

- `fix:` Bug fixes
- `release:` Release work

**Medium Priority**

- `feat:` New features
- `update:` Feature improvements
- Other regular PRs

**Low Priority**

- PRs containing DO NOT MERGE
- Draft PRs with `test:`, `build:`, `perf:`

## Notes

- Requires GitHub CLI (`gh`)
- Only displays PRs in open state (Drafts are excluded)
- Shows maximum 30 PRs
- Elapsed time is from when the PR was opened
- PR URLs are automatically generated from the actual repository name
