pr-list

pr-list is a skill for Claude Code, Codex from sfc-gh-eraigosa/dotfiles. It costs 56 tokens per session (544 once invoked), scanned A, original, Apache-2.0.

A command for listing GitHub pull requests, which are proposed code changes for review, in a format suited to Discord, Slack, or a terminal.

In plain words
What is it for?
List a repository’s open pull requests, filter for your own requests or review requests, and show whether each is a draft, approved, blocked, or still being checked.
Why use it?
It makes pull-request status easier to scan and share, including authors, links, review decisions, and automated check results.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit List a repository’s open pull requests, filter for your own requests or review requests, and show whether each is a draft, approved, blocked, or still being checked.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sfc-gh-eraigosa/dotfiles/pr-list
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add sfc-gh-eraigosa/dotfiles --skill pr-list
Clone the repo
git clone --depth 1 https://github.com/sfc-gh-eraigosa/dotfiles

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pr-list

README.md
[![agentmods](https://agentmods.dev/badge/skills/sfc-gh-eraigosa/dotfiles/pr-list/github.svg)](https://agentmods.dev/skills/sfc-gh-eraigosa/dotfiles/pr-list)
Your own site
<a href="https://agentmods.dev/skills/sfc-gh-eraigosa/dotfiles/pr-list"><img src="https://agentmods.dev/badge/skills/sfc-gh-eraigosa/dotfiles/pr-list/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for pr-list

Your own site · 80×15
<a href="https://agentmods.dev/skills/sfc-gh-eraigosa/dotfiles/pr-list"><img src="https://agentmods.dev/badge/skills/sfc-gh-eraigosa/dotfiles/pr-list.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 544 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00056 $0.00544
Opus 5 $0.00028 $0.00272
Sonnet 5 $0.00011 $0.00109
Haiku 4.5 $0.00006 $0.00054

Measured 9d ago against content hash 98e6411abe37, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

pr-list scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

ai/skills/pr-list/SKILL.md · 58 lines

What it actually says

PR List (Discord-friendly)

List pull requests for a repository and present them in a compact, chat-ready format. Works in Discord, Slack, and terminal markdown alike.

Fetching the data

Use the GitHub CLI (gh). Default to the repository of the current working directory; if the user names a repo (owner/name), pass it with -R.

gh pr list --json number,title,url,author,isDraft,reviewDecision,statusCheckRollup,updatedAt --limit 20

For "my PRs" add --author @me; for review requests add --search "review-requested:@me".

Output format

One entry per PR, newest first. Each entry is a blockquote with a status icon, a direct link, the author, and age:

📋 **Pull Requests — <owner/repo>** (<N> open)

> 🟢 [#88 fix(clawdad): self-sufficient install](https://github.com/owner/repo/pull/88)
> ✍️ wenlock · updated 2h ago · ✅ checks passing

> 📝 [#87 draft: new dashboard layout](https://github.com/owner/repo/pull/87)
> ✍️ alice · updated 3d ago · ⏳ checks running

Status icons

Icon Meaning
🟢 ready for review / approved (reviewDecision: APPROVED)
🔴 changes requested (reviewDecision: CHANGES_REQUESTED)
📝 draft (isDraft: true)
checks passing (statusCheckRollup all SUCCESS)
checks failing
checks pending/running

Rules

  • Always link the PR number directly to its URL — never a bare #123.
  • Keep each entry to two lines (title line + meta line) so mobile Discord stays readable.
  • If there are more than ~10 PRs, summarize the overflow: …and 12 more: <link to PR list>.
  • No PRs open → say so in one line with the repo link, don't render an empty list.

Requirements

  • gh CLI authenticated (gh auth status).
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 58 lines · 56 tokens per session scan A 98e6411abe37

Subscribe to this mod's changes

pr-list is a skill published in the GitHub repository sfc-gh-eraigosa/dotfiles (46 stars, last pushed yesterday), licensed Apache-2.0. It adds 56 tokens to every session and 544 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

review-pr

Review and merge GitHub pull requests for Spatie packages. Use when asked to review a PR, review a pull request, merge a PR, or when given a GitHub PR URL to review. Also triggers on 'review this PR,' 'check this pull request,' 'merge this,' or '/review-pr'. Uses gh CLI for all GitHub operations.

freekmurze/dotfiles · 75 tokens

git-commit

This skill should be used BEFORE running any git commit command. Triggers when about to run git commit. Ensures commit messages follow Conventional Commits specification and prompts for the Jira ticket number.

fredrikaverpil/dotfiles · 43 tokens

gh-cli

../../../.claude/skills/gh-cli/SKILL.md.

fredrikaverpil/dotfiles · 0 tokens

gh-pr

../../../.claude/skills/gh-pr/SKILL.md.

fredrikaverpil/dotfiles · 0 tokens

churn-prevention

When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause…

freekmurze/dotfiles · 140 tokens

marketing-psychology

When the user wants to apply psychological principles, mental models, or behavioral science to marketing. Also use when the user mentions 'psychology,' 'mental models,' 'cognitive bias,' 'persuasion,' 'behavioral science,' 'why people buy,' 'decision-making,' or 'consumer behavior.' This skill provides 70+ mental…

freekmurze/dotfiles · 79 tokens