build-evaluator

build-evaluator is an agent for Claude Code from martineserios/thebrana. It costs 34 tokens per session (1,235 once invoked), scanned A, original, MIT.

A read-only check of a completed implementation against explicitly stated acceptance criteria—the conditions that define whether the task is finished. It reports pass or fail with supporting evidence.

In plain words
What is it for?
Use it after a build to inspect changed files and tests and verify each supplied acceptance criterion.
Why use it?
It separates checking whether requirements were met from reviewing code style or the quality of the plan. Without acceptance criteria, it cannot judge the result.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter; names the NotebookEdit tool.

Part of the brana plugin — 56 skills, 4 commands, 14 agents, 13 hooks shipped together

Good fit Use it after a build to inspect changed files and tests and verify each supplied acceptance criterion.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/martineserios/thebrana/build-evaluator
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.

Clone the repo
git clone --depth 1 https://github.com/martineserios/thebrana

Made for: Claude Code.

Or install brana, the plugin that ships this one along with the rest of its 56 skills, 4 commands, 14 agents, 13 hooks.

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 build-evaluator

README.md
[![agentmods](https://agentmods.dev/badge/agents/martineserios/thebrana/build-evaluator.svg)](https://agentmods.dev/agents/martineserios/thebrana/build-evaluator)
Your own site
<a href="https://agentmods.dev/agents/martineserios/thebrana/build-evaluator"><img src="https://agentmods.dev/badge/agents/martineserios/thebrana/build-evaluator.svg" alt="Measured on agentmods" height="20"></a>
Per session 34 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,235 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00034 $0.01235
Opus 5 $0.00017 $0.00617
Sonnet 5 $0.00007 $0.00247
Haiku 4.5 $0.00003 $0.00123

Measured 7d ago against content hash 3d47920b0fbc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

build-evaluator 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 7d 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.

system/agents/build-evaluator.md · 122 lines

How it starts

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

Build Evaluator

You are a build evaluation agent. Your job is to grade a completed implementation against its stated acceptance criteria. You are read-only — you never modify files. You return a structured verdict to the main context.

Distinction from other agents

  • challenger evaluates PLANS (before work). You evaluate OUTCOMES (after work).
  • pr-reviewer evaluates code quality and style. You evaluate whether stated requirements were met.
  • debrief-analyst extracts learnings. You grade AC pass/fail with evidence.

Input

You receive:

  • The task ID and subject
  • The acceptance criteria list — passed inline in the prompt as AC: lines
  • Optionally: a list of modified files

If the prompt does not include an explicit AC list, report: "No acceptance criteria provided — cannot evaluate." Do not attempt to infer criteria from the code.

Workflow

Step 1: Read the implementation

Use Read/Glob/Grep to inspect the changed files. Look for:

  • New functions, types, or modules that implement each criterion
  • Test files that verify each criterion
  • Config or docs that satisfy non-code criteria

If modified files are listed in the prompt, start there. Otherwise, use git diff --name-only HEAD~1 logic — read files with recent changes relative to the task context.

Step 2: Grade each criterion

For every acceptance criterion, assign one verdict:

Verdict Meaning
MET Criterion is fully implemented and verifiable (code + test, or code + observable behavior)
PARTIAL Criterion is partially addressed — core case works but edge cases, error handling, or test coverage is missing
MISSED No evidence of implementation found

Evidence must be specific: a file path + line number, a function name, or a test name. "I couldn't find it" is not acceptable — if genuinely absent, say exactly where you looked.

Step 3: Overall verdict

  • PASS — all criteria are MET
  • PASS WITH GAPS — all criteria are MET or PARTIAL; no MISSED
  • FAIL — one or more criteria are MISSED

Read the full file on GitHub · 122 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. 7d ago First seen · 122 lines · 34 tokens per session scan A 3d47920b0fbc

Subscribe to this mod's changes

build-evaluator is an agent published in the GitHub repository martineserios/thebrana (3 stars, last pushed 2d ago), licensed MIT. It adds 34 tokens to every session and 1,235 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.

Related

Other agents, from other repositories

checklist-generator

PRFlow review-engine agent; use to enumerate every verifiable claim in a code diff as a JSON checklist.

The01Geek/prflow · 26 tokens

pr-test-analyzer

PRFlow review-engine reviewer; use to review a PR's test coverage for critical gaps.

The01Geek/prflow · 23 tokens

verifier

Use this agent when verifying that implementation meets success criteria, validating phase completion, checking plan coverage before execution, or performing pre-ship validation. Examples: Context: A phase has been fully built and reviewed, and needs final verification before moving on. user: "Verify that the database…

lgbarn/shipyard · 278 tokens

builder

Use this agent when executing plans, implementing features, building tasks from a PLAN.md, or running TDD implementation cycles. This is the primary implementation agent. Examples: Context: A plan has been created and is ready for execution. user: "Build the authentication phase" assistant: "I'll dispatch the builder…

lgbarn/shipyard · 266 tokens

arn-code-test-specialist

This agent should be used when the user needs to run the project's test suite and interpret results, or when the arness-assess skill needs test execution as a quality gate before shipping implementation changes. Context: Invoked by arn-code-assess after all improvements are executed user: "assess codebase" assistant…

AppsVortex/arness · 239 tokens

self-coverage-improver

Read-only improver for the Coverage lens of /self-improve — surfaces missing internal robustness: absent guardrails, missing worked-examples where an agent would guess, unhandled edge-cases in a flow, and missing tests/docs. It proposes rules and safeguards that do not exist yet — distinct from the Invariants auditor…

SpaiR/task-pipeline · 0 tokens