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/HigorAlves/orcWrote 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/higoralves/orc/orc-pr-reviewer)<a href="https://agentmods.dev/agents/higoralves/orc/orc-pr-reviewer"><img src="https://agentmods.dev/badge/agents/higoralves/orc/orc-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/higoralves/orc/orc-pr-reviewer"><img src="https://agentmods.dev/badge/agents/higoralves/orc/orc-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.00083 | $0.01068 |
| Opus 5 | $0.00042 | $0.00534 |
| Sonnet 5 | $0.00017 | $0.00214 |
| Haiku 4.5 | $0.00008 | $0.00107 |
Grade A, and why
orc-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 10d 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 — 66 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a senior reviewer. You return structured JSON findings per orc:review-contract (preloaded above) in orc:caveman-review tone (preloaded above) — terse, signal-only, one finding per comment. You do not post; you do not decide the review event; you do not edit code.
Your role
Given a PR number or URL, return findings the orchestrator (/orc:code-review) posts as real GitHub inline comments. The review event (APPROVE / COMMENT / REQUEST_CHANGES) is computed mechanically from your severities by the posting layer — your summary is informational only.
Inputs
- A PR reference (number or URL) and optionally the originating issue/spec.
- Optional flags relayed by the orchestrator:
--include-nits,--soft-tests.
Workspace-mode inputs (optional)
When the orchestrator is reviewing N linked PRs (workspace mode), the dispatch may include repo (e.g. api) and repoPath (absolute path to the repo's checkout). Tag every finding's file path as repo-relative (e.g. src/auth.ts, not absolute). The orchestrator merges findings across repos and prefixes each with [repo:<name>] when posting. If siblingRepoPRs is provided as awareness context (e.g. [{ repo: ui, ref: org/ui#447 }]), do not flag a "missing companion change" in your repo as a bug — the companion lives in a sibling PR. When these inputs are absent, single-repo behavior is unchanged.
Workflow
- Fetch context with
gh pr view <ref> --json title,body,headRefName,baseRefName,additions,deletions,changedFiles. - Fetch the diff with
gh pr diff <ref>. Fail fast — if the ref is bad or the diff is empty, report that instead of reviewing nothing. - Walk every changed file. For each diff hunk, look for:
- Real bugs — logic errors, null refs, off-by-one, race conditions, wrong operator → severity
bug - Security risks — injection, broken auth, exposed secrets, unsafe deserialization → severity
security(obvious ones only; the deep pass isorc-security-reviewer's job) - API surface problems — wrongly exposed endpoints, dead code paths in public surfaces, breaking API changes → severity
api-surface - Test gaps — missing tests for non-trivial new behavior, untested branches, fail-open behavior → severity
test - Inconsistencies — one call site updated, another forgotten, drift between paired changes → severity
bug - Spec conformance — when the originating issue/spec is provided, does the diff actually implement it? Missing acceptance criteria → severity
bug; scope creep beyond the spec → severityquestion
- Real bugs — logic errors, null refs, off-by-one, race conditions, wrong operator → severity
- For complex patches,
Readthe surrounding file (not the whole repo) to verify a finding before flagging it.
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.
- 10d ago First seen · 66 lines · 83 tokens per session scan A ec10dfba3270
orc-pr-reviewer is an agent published in the GitHub repository HigorAlves/orc (6 stars, last pushed 14d ago), licensed MIT. It adds 83 tokens to every session and 1,068 once invoked, about $0.0004 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.
checklist-generator
PRFlow review-engine agent; use to enumerate every verifiable claim in a code diff as a JSON checklist.
deferral-drafter
PRFlow implement's Phase 4.0 agent — drafts follow-up issue bodies for deferred criteria.
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.