mach12:gh-pr-read

mach12:gh-pr-read is a command for Claude Code from LeanAndMean/scramjet. It costs 25 tokens per session (756 once invoked), scanned A, original, Apache-2.0.

A command that retrieves a GitHub pull request’s title, description, dates, and top-level conversation comments. A pull request is a proposed code change awaiting review and merging.

In plain words
What is it for?
Use it to inspect a pull request before reviewing, assessing, or merging it, including finding a marked comment.
Why use it?
It gives you the discussion and requirements around a proposed change without manually opening the pull request and reading everything.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to inspect a pull request before reviewing, assessing, or merging it, including finding a marked comment.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/leanandmean/scramjet/mach12-gh-pr-read
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.

Clone the repo
git clone --depth 1 https://github.com/LeanAndMean/scramjet

Made for: Claude Code.

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 mach12:gh-pr-read

README.md
[![agentmods](https://agentmods.dev/badge/commands/leanandmean/scramjet/mach12-gh-pr-read/github.svg)](https://agentmods.dev/commands/leanandmean/scramjet/mach12-gh-pr-read)
Your own site
<a href="https://agentmods.dev/commands/leanandmean/scramjet/mach12-gh-pr-read"><img src="https://agentmods.dev/badge/commands/leanandmean/scramjet/mach12-gh-pr-read/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 mach12:gh-pr-read

Your own site · 80×15
<a href="https://agentmods.dev/commands/leanandmean/scramjet/mach12-gh-pr-read"><img src="https://agentmods.dev/badge/commands/leanandmean/scramjet/mach12-gh-pr-read.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 756 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.
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.00025 $0.00756
Opus 5 $0.00013 $0.00378
Sonnet 5 $0.00005 $0.00151
Haiku 4.5 $0.00003 $0.00076

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

Security

Grade A, and why

mach12:gh-pr-read 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 4d 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.

packages/scramjet/mach12/commands/mach12:gh-pr-read.md · 59 lines

How it starts

The opening of the file, as written. The whole thing — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Read GitHub Pull Request

Goals

  • Return the caller an authoritative pull-request snapshot containing the parent metadata and complete chronological top-level conversation.
  • When requested, identify the most recent matching marker comment and its numeric ID without weakening completeness checks.
  • Make incomplete or malformed history explicit rather than presenting partial evidence as authoritative.

This subroutine is gh-specific. A future forge-agnostic command set would substitute an equivalent glab-pr-read (or similar); the marker-hunt logic stays the same.

Step 1: Parse input

Extract:

  • The PR number (required, first token).
  • An optional --marker <html-marker> flag naming an HTML comment marker to locate (e.g., --marker mach12-review, --marker mach12-assessment).

If no PR number is present, return an error to the caller and stop.

Step 2: Read the PR and all top-level PR conversation comments

Resolve the canonical owner/name with gh repo view --json nameWithOwner. Query the PR through gh api graphql --paginate with explicit variables for owner, name, PR number, and $endCursor. Request parent title, body, createdAt, updatedAt, and:

comments(first: 100, after: $endCursor) {
  totalCount
  nodes { databaseId body author { login } authorAssociation createdAt url }
  pageInfo { hasNextPage endCursor }
}

The query must declare $endCursor: String and pass pageInfo.hasNextPage plus pageInfo.endCursor so --paginate follows every page. Accumulate comment nodes in chronological page order. Verify the accumulated node count exactly equals totalCount; reject duplicate database IDs. If pagination stops early, a page is malformed, the count differs, or any command fails, surface the full error and report that authoritative history is incomplete; do not return a partial array as complete.

Step 3: Locate the marker comment (if requested)

If --marker <html-marker> was provided, parse the comments array and scan from the end (most recent first) for the first comment whose body contains the literal HTML marker <!-- <html-marker> -->. If multiple comments contain the marker, use the most recent one.

Read the full file on GitHub · 59 lines

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. 4d ago Changed · +4 lines 5ef5bc42fba6
  2. 9d ago First seen · 55 lines · 25 tokens per session scan A bea07eb7f04e

Subscribe to this mod's changes

mach12:gh-pr-read is a command published in the GitHub repository LeanAndMean/scramjet (6 stars, last pushed today), licensed Apache-2.0. It adds 25 tokens to every session and 756 once invoked, about $0.0001 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-31.