pr-description-en

pr-description-en is a command for Claude Code from yuji0809/cc-recommender. It costs 16 tokens per session (881 once invoked), scanned A, original, MIT.

A command that writes an English pull request description from the commits and file changes on the current branch. A pull request is a proposed code change submitted for review.

In plain words
What is it for?
Use it to inspect commits, changed files, and change statistics, then prepare a review description against the repository’s base branch.
Why use it?
It removes the need to assemble the change summary manually and helps organize the request by change type, such as a bug fix or new feature.

Command for Claude Code

Written for Claude Code: installed under .claude/.

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.

agentmods
npx agentmods add commands/yuji0809/cc-recommender/pr-description-en
Clone the repo
git clone --depth 1 https://github.com/yuji0809/cc-recommender

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 pr-description-en

README.md
[![agentmods](https://agentmods.dev/badge/commands/yuji0809/cc-recommender/pr-description-en.svg)](https://agentmods.dev/commands/yuji0809/cc-recommender/pr-description-en)
Your own site
<a href="https://agentmods.dev/commands/yuji0809/cc-recommender/pr-description-en"><img src="https://agentmods.dev/badge/commands/yuji0809/cc-recommender/pr-description-en.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 881 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00016 $0.00881
Opus 5 $0.00008 $0.00441
Sonnet 5 $0.00003 $0.00176
Haiku 4.5 $0.00002 $0.00088

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

Security

Grade A, and why

pr-description-en 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 5d 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.

.claude/commands/pr-description-en.md · 120 lines

How it starts

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

Instructions

You are tasked with generating a comprehensive Pull Request description in English for the current branch.

Steps to Execute

1. Determine Base Branch

Run these commands to detect the base branch:

BASE_BRANCH=$(gh repo view --json defaultBranchRef --jq .defaultBranchRef.name 2>/dev/null || echo "main")
echo "Base branch: ${BASE_BRANCH}"

2. Analyze Changes

Gather commit history and file changes:

# Get commit messages
git log ${BASE_BRANCH}..HEAD --pretty=format:"%s"

# Get changed files with status
git diff ${BASE_BRANCH}...HEAD --name-status

# Get file statistics
git diff ${BASE_BRANCH}...HEAD --stat

3. Determine Change Types

Analyze commits and files to determine the type of changes:

  • 🐛 Bug fix: Commits starting with fix:
  • ✨ New feature: Commits starting with feat: or new files in src/
  • 💥 Breaking change: Commits with BREAKING CHANGE or feat!:, fix!:
  • 📝 Documentation update: Commits starting with docs: or only *.md changes
  • 🎨 Code style update: Commits starting with style:
  • ♻️ Refactoring: Commits starting with refactor:
  • ⚡ Performance improvement: Commits starting with perf:
  • ✅ Test update: Commits starting with test: or only *.test.ts changes

4. Check for Existing PR

gh pr view --json url,title,state 2>/dev/null

If a PR exists, ask the user if they want to update it or just view the generated description.

5. Generate PR Description

Create a comprehensive PR description in English following the template at .github/PULL_REQUEST_TEMPLATE.md:

Structure:

  • Description: Summarize all changes from commit messages
  • Changed Files: List new and modified files with brief explanations
  • Motivation and Context: Explain why these changes are needed
  • Type of Change: Check all applicable boxes based on analysis
  • How Has This Been Tested: Indicate test commands run
  • Checklist: Mark completed items
  • Additional Notes: Include implementation approach, future enhancements, breaking changes (if any)

Read the full file on GitHub · 120 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. 5d ago First seen · 120 lines · 16 tokens per session scan A 5cf28ee830b8

Subscribe to this mod's changes

pr-description-en is a command published in the GitHub repository yuji0809/cc-recommender (10 stars, last pushed 3mo ago), licensed MIT. It adds 16 tokens to every session and 881 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.