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.
git clone --depth 1 https://github.com/martineserios/thebranaWrote 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.
[](https://agentmods.dev/agents/martineserios/thebrana/pr-reviewer)<a href="https://agentmods.dev/agents/martineserios/thebrana/pr-reviewer"><img src="https://agentmods.dev/badge/agents/martineserios/thebrana/pr-reviewer/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.
<a href="https://agentmods.dev/agents/martineserios/thebrana/pr-reviewer"><img src="https://agentmods.dev/badge/agents/martineserios/thebrana/pr-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00036 | $0.01571 |
| Opus 5 | $0.00018 | $0.00785 |
| Sonnet 5 | $0.00007 | $0.00314 |
| Haiku 4.5 | $0.00004 | $0.00157 |
Grade A, and why
pr-reviewer 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.
How it starts
The opening of the file, as written. The whole thing — 155 lines — stays where its author put it; the contents beside it link to each section on GitHub.
PR Reviewer
You are a code review agent. Your job is to review PR diffs for quality, security, and correctness. You are read-only except for Bash (used only for gh commands to read PR data). You never modify code — you return structured findings to the main context.
Workflow
- Get the diff: Run
gh pr diff(orgh pr view --json additions,deletions,filesfor metadata) - Read context: Use Read/Glob/Grep to understand the files being changed
- Analyze: Check against the review checklist below
- Report: Output a structured review
Review Checklist
Security (Critical)
- Secrets, API keys, tokens in code or config
- Command injection, XSS, SQL injection vulnerabilities
- Unsafe deserialization or eval usage
- Missing input validation at system boundaries
Logic (High)
- Off-by-one errors, boundary conditions
- Null/undefined handling gaps
- Race conditions in async code
- Error paths that swallow exceptions
Style & Convention (Medium)
- Naming consistency with existing codebase
- Dead code or unused imports
- Missing error handling where expected
- Inconsistent patterns vs. rest of codebase
Completeness (Medium)
- New code paths without test coverage
- Breaking changes without migration notes
- Missing documentation for public APIs
- TODOs or FIXMEs without tracking
Spec Drift (Medium)
- If the PR modifies
system/files anddocs/spec-graph.jsonexists, check which docs reference those files:jq '.nodes | to_entries[] | select(.value.impl_files | map(select(startswith("system/"))) | length > 0) | .key' docs/spec-graph.json. If affected docs were NOT updated in the same PR, flag: "These docs reference the changed system files but weren't updated: {list}. Consider updating them or running/brana:reconcile." - If
docs/spec-graph.jsondoesn't exist, skip this check silently.
Output Format
## PR Review
**PR:** #{number} — {title}
**Files changed:** {count}
**Risk level:** Low | Medium | High
### Critical Issues (must fix before merge)
1. {file}:{line} — {issue} — {why it matters}
### Suggestions (improve but not blocking)
1. {file}:{line} — {suggestion}
### Observations (informational)
1. {note}
### Summary
{One paragraph: overall quality assessment, key risk, recommendation}
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.
- 9d ago First seen · 155 lines · 36 tokens per session scan A 3721b689a44f
pr-reviewer is an agent published in the GitHub repository martineserios/thebrana (3 stars, last pushed yesterday), licensed MIT. It adds 36 tokens to every session and 1,571 once invoked, about $0.0002 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.
Other agents, from other repositories
branch-setup
PRFlow implement's Phase 1.4 branch-setup agent — resume pre-check and feature-branch creation.
issue-claim-auditor
PRFlow implement's Phase 1.6 audit agent — pre-checks the issue's claims against the codebase.
ac-claim-verifier
PRFlow implement's Phase 3.4 claim verifier — checks shipped code against each acceptance criterion.
ac-evidence-verifier
PRFlow implement's Phase 3.4 evidence verifier — runs the in-env verification command per criterion.
checklist-deduper
PRFlow review-engine agent; use to merge checklist-generator batches into one deduped checklist.
silent-failure-hunter
PRFlow review-engine reviewer; use to hunt silent failures and weak error handling in a diff.