evalbench-review

A review workflow for changes to EvalBench, a software project with its own architecture and deployment setup. It checks whether the code works, fits the project rules, ships correctly, and makes a focused pull request.

In plain words
What is it for?
Use it to review a branch by running tests and style checks, inspecting project contracts and configuration, checking imports and isolation, and assessing build, deployment, and documentation changes.
Why use it?
It catches problems that passing tests alone may miss, such as incorrect registration, unsafe concurrency, broken container builds, or deployment failures.

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

Made for: Claude Code, Codex.

Per session 170 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,982 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.00170 $0.03982
Opus 5 $0.00085 $0.01991
Sonnet 5 $0.00034 $0.00796
Haiku 4.5 $0.00017 $0.00398

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

Security

Grade A, and why

evalbench-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 2d 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.

skills/evalbench-review/SKILL.md · 287 lines

How it starts

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

EvalBench code review

Review a change on four axes, in this order. Verification comes first — an architecturally beautiful change that doesn't run is still broken, and running the code surfaces real defects that reading alone will not.

  1. Does it work? Prove it by execution, not by reading.
  2. Does it follow EvalBench architecture? Registration wiring, base-class contracts, import style, isolation, concurrency, config-driven behavior, docs.
  3. Does it still ship? The image builds, and GKE / Cloud Run / Cloud Build still work. A green local suite says nothing about any of these.
  4. Is it a good PR? Reviewable size, single purpose, a description that answers what and why, and code that is clear, simple, concise, maintainable and idiomatic.

Do not skip phase 1 because a diff "looks obviously fine". Do not stop after phase 1 because the tests pass — a change can pass every test and still be wired into the wrong layer, break the container build, or be unreviewable.

Phase 0 — Scope the diff

Establish exactly what changed before reading anything else.

BASE=$(git merge-base HEAD origin/main)
git diff --stat $BASE...HEAD
git diff -M $BASE...HEAD                 # -M so renames don't read as rewrites
git status --short                       # uncommitted work counts as part of the change

For a PR under review: gh pr diff <n> and gh pr view <n>.

Size the change first — it sets how you review everything else

Defect detection degrades as diffs grow, so measure before you read:

git diff --shortstat $BASE...HEAD -- . \
  ':(exclude)uv.lock' ':(exclude)CHANGELOG.md' \
  ':(exclude)evalbench/evalproto/*_pb2*' ':(exclude)datasets/**/*.json'

Generated and vendored files are volume, not review surface — uv.lock alone is 5,000 lines. Judge against the hand-written count:

  • Under ~400 lines — review normally.
  • Over ~400 lines — report it as a pr-hygiene finding with a concrete split proposal, naming the seams.
  • Any size — pace at no more than ~500 lines per hour. If the change is larger than you can review at that rate, say which parts you read carefully and which you skimmed. Never imply uniform depth you didn't apply.

Read the full file on GitHub · 287 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 2d ago First seen · 287 lines · 170 tokens per session scan A 3ea17af0b31e

Subscribe to this mod's changes

evalbench-review is a skill published in the GitHub repository GoogleCloudPlatform/evalbench (55 stars, last pushed 4d ago), licensed Apache-2.0. It adds 170 tokens to every session and 3,982 once invoked, about $0.0009 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.

Related

Other skills, from other repositories

deepeval

DeepEval evaluation workflow for AI agents and LLM applications. TRIGGER when the user wants to evaluate or improve an AI agent, tool-using workflow, multi-turn chatbot, RAG pipeline, or LLM app; add evals; generate datasets or goldens; use deepeval generate; use deepeval test run; send results to Confident AI…

confident-ai/deepeval · 229 tokens

deepeval-otel

Export raw OpenTelemetry traces from an AI application to Confident AI's Observatory. TRIGGER when the user wants to send OpenTelemetry or OTLP traces/spans from an LLM app, agent, RAG pipeline, or chatbot to Confident AI; configure the Confident AI OTLP endpoint; set confident.span. or confident.trace. attributes…

confident-ai/deepeval · 226 tokens

deepeval-tracing

Instrument an AI application with DeepEval's native tracing so its behavior is visible in Confident AI. TRIGGER when the user wants to add DeepEval tracing or @observe to an LLM app, agent, RAG pipeline, or chatbot; wire a framework, model-provider, or vector-database integration (LangGraph, LangChain, OpenAI Agents…

confident-ai/deepeval · 208 tokens

digital-health-clinical-asr-eval

Stage 3 of Clinical ASR Flywheel. Score a NeMo manifest, produce the five-section KER leaderboard (by-ipasource diagnostic). Not for ASR auth (/riva-asr).

NVIDIA/skills · 51 tokens

comet-build

Comet Classic 阶段 3 —— 恢复或创建实施计划并执行其任务。.

rpamis/comet · 25 tokens

comet-classic

Comet Classic 工作流(OpenSpec + Superpowers)。当用户明确调用 /comet-classic、要求启动或恢复 Comet Classic,或 resume-probe 返回可无歧义恢复的 active Classic change 时使用。.

rpamis/comet · 53 tokens