beava-pr-review

beava-pr-review is a skill for Claude Code, Codex from beava-dev/beava. It costs 119 tokens per session (2,275 once invoked), scanned A, original, Apache-2.0.

A pull-request reviewer tailored to the beava codebase. A pull request is a proposed set of code changes submitted for review before it is merged.

In plain words
What is it for?
Reviewing beava pull-request diffs, running fast formatting, lint, type, and test checks, and reporting BLOCK, WARN, and NIT findings with file-and-line references.
Why use it?
It combines automated checks with judgment about real bugs, project-specific design rules, and low-quality AI-generated code. It limits review to changed lines and reports findings by severity and file location.

Skill for Claude CodeCodex

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 skills/beava-dev/beava/beava-pr-review
Any agent
npx skills add beava-dev/beava --skill beava-pr-review
Clone the repo
git clone --depth 1 https://github.com/beava-dev/beava

Made for: Claude Code, Codex.

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 beava-pr-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/beava-dev/beava/beava-pr-review.svg)](https://agentmods.dev/skills/beava-dev/beava/beava-pr-review)
Your own site
<a href="https://agentmods.dev/skills/beava-dev/beava/beava-pr-review"><img src="https://agentmods.dev/badge/skills/beava-dev/beava/beava-pr-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 119 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,275 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 $0.00119 $0.02275
Opus 5 $0.00060 $0.01137
Sonnet 5 $0.00024 $0.00455
Haiku 4.5 $0.00012 $0.00228

Measured 5d ago against content hash 625502a4710e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

beava-pr-review 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/skills/beava-pr-review/SKILL.md · 201 lines

How it starts

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

beava-pr-review

Diff-aware code reviewer tuned for the beava codebase. Checks three layers in order; surface findings sorted by severity (BLOCK > WARN > NIT) with file:line anchors.

When to invoke

  • User says "review this PR" / "PR review" / "audit this diff" / "check for slop" against a feature branch or a PR URL on beava-dev/beava.
  • After a substantial code change but before requesting ok-to-test approval — the local check.sh covers fmt/lint/test, this skill covers the human-judgment layer.

How to run

  1. Bound the diff. git diff main...HEAD --stat (or gh pr diff <N> -R beava-dev/beava for a remote PR). Read only the changed lines + ~30 lines of context per hunk. Do NOT review unchanged code.
  2. Run automated gates first. Before LLM review, surface anything the existing tools catch:
    • bash .github/scripts/check.sh --fast — fmt, clippy, ruff, mypy (advisory). If any FAIL, the PR is incomplete; tell the user to fix before requesting human review.
  3. Apply the three review layers below, in order. Skip a layer only if the diff doesn't touch its scope (e.g. skip "AI slop" for a pure .gitignore change).
  4. Emit the report in the format under "Output format" at the end.

Layer 1 — Real bugs

The most common categories worth checking against the diff:

  • Off-by-one — index math, slice bounds, half-open vs closed ranges. Especially in crates/beava-core/src/agg_op.rs, crates/beava-runtime-core/src/router.rs, anywhere computing window_secs / bucket_secs.
  • Null / Option / ? propagation.unwrap() in non-test code is WARN unless the PR shows the panic is provably unreachable. expect() with a useful message is fine.
  • Resource leaks — file descriptors, mio tokens, dropped futures (we hand-rolled the runtime; mio leaks don't auto-close like tokio).
  • Concurrency — single-threaded apply is locked architecture (project_no_sharded_apply); any new thread / parallel iterator inside dispatch_*_sync is BLOCK.
  • Schema / wire compatibility — changes to crates/beava-runtime-core/src/router.rs routes, agg_op.rs AggKind variants, or python/beava/_app.py::_descriptor_to_node wire shape break clients. WARN unless the PR body calls it out and ships a migration note.
  • TDD discipline (Phase 3+ only) — every plan task must produce a test(...) commit before its feat(...) commit. Commits that show feat: without a preceding test: for the same scope are WARN (per CLAUDE.md §Conventions → TDD Discipline).

Read the full file on GitHub · 201 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 · 201 lines · 119 tokens per session scan A 625502a4710e

Subscribe to this mod's changes

beava-pr-review is a skill published in the GitHub repository beava-dev/beava (138 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 119 tokens to every session and 2,275 once invoked, about $0.0006 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-30.