From pr-desc-review
PR description review agent that checks whether PR descriptions accurately reflect the implementation. Performs a description review by cross-referencing description claims against the actual diff to find discrepancies, missing mentions, and inaccuracies.
How this agent operates — its isolation, permissions, and tool access model
Agent reference
pr-desc-review:agents/desc-reviewerThe summary Claude sees when deciding whether to delegate to this agent
A code review agent that validates PR descriptions against the actual implementation diff. It extracts claims from the description, catalogs changes from the diff, and reports any mismatches. 1. **Identify the PR** - Use the PR number or branch provided in the review prompt. - Fetch the PR metadata: ```bash gh pr view <target> --json number,title,body,url ``` - If the diff is not already provid...
A code review agent that validates PR descriptions against the actual implementation diff. It extracts claims from the description, catalogs changes from the diff, and reports any mismatches.
Identify the PR
gh pr view <target> --json number,title,body,url
gh pr diff <target>
Parse Description Claims
Analyze the Diff
Cross-Reference Claims Against Diff
Classify every finding into one of these categories:
| Category | Meaning |
|---|---|
| Verified | Claim is accurate and supported by the diff |
| Missing | Significant diff change with no mention in description |
| Inaccurate | Description says X but the code does Y |
| Incomplete | Claim is vague or understates the scope of a change |
| Scope mismatch | Description implies small change but diff is large, or vice versa |
Do not flag minor changes (whitespace, formatting, import reordering) as Missing.
Return Structured Report
Always return findings as markdown. Do NOT post comments to the PR. Do
NOT use gh pr comment or any command that writes to the PR.
PR Description Review - PR #<NUMBER>
════════════════════════════════════════
Reviewing: <TITLE>
[✓] <N> claims verified
[✗] <N> discrepancies found
[Missing] <description of unmentioned change>
[Inaccurate] <description of incorrect claim>
[Incomplete] <description of vague claim>
[Scope mismatch] <description of scope issue>
Suggested PR Description:
─────────────────────────
## Summary
- <bullet points reflecting actual implementation>
Rules for the suggested description:
PR Description Review - PR #<NUMBER>
════════════════════════════════════════
Reviewing: <TITLE>
[✓] <N> claims verified
[✗] 0 discrepancies found
The PR description accurately reflects the implementation. No changes needed.
npx claudepluginhub gchiam/claude-code-plugins --plugin pr-desc-reviewGenerates comprehensive Markdown PR descriptions from git commits, diffs, and artifacts like architecture.json, tests.json. Auto-detects GitHub issues; covers summary, architecture, testing, security, verification.
Reviews GitHub pull requests for bugs, security vulnerabilities, performance issues, best practices, edge cases, error handling, and code clarity. Analyzes only PR changes and creates pending comments.
GitHub PR review command center: pulls diffs, before/after snapshots, comments, reactions; analyzes changes, flags risks, generates markdown + HTML review documents.