# Gh Pr List

> List open pull requests in a GitHub repository. Use when the user wants to see PRs, check open pull requests, or browse PRs. Use when this capability is needed.

- Skill: `tomevault-io/gh-pr-list` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/gh-pr-list`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/gh-pr-list/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/gh-pr-list

---


# gh-pr-list

GitHub リポジトリのオープンな Pull Request を一覧表示するスキル。PR の確認やブラウジングに使用する。

## Usage

```bash
python3 .claude/skills/gh-pr-list/scripts/list_prs.py \
  --owner <owner> \
  --repo <repo> \
  [--limit <number>]
```

## Arguments

| Argument | Required | Default | Description |
|----------|----------|---------|-------------|
| `--owner` | Yes | - | Repository owner (username or organization) |
| `--repo` | Yes | - | Repository name |
| `--limit` | No | 10 | Maximum number of PRs to return (1-100) |

## Examples

List open PRs with default limit:

```bash
python3 .claude/skills/gh-pr-list/scripts/list_prs.py \
  --owner myorg --repo myrepo
```

List up to 5 open PRs:

```bash
python3 .claude/skills/gh-pr-list/scripts/list_prs.py \
  --owner myorg --repo myrepo \
  --limit 5
```

List all open PRs (up to 100):

```bash
python3 .claude/skills/gh-pr-list/scripts/list_prs.py \
  --owner myorg --repo myrepo \
  --limit 100
```

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/y-hirakaw) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-14 -->

