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.
npx agentmods add instructions/googlecloudplatform/evalbench/agents-mdgit clone --depth 1 https://github.com/GoogleCloudPlatform/evalbenchWhat 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 | $0.02556 | $0.02556 |
| Opus 5 | $0.01278 | $0.01278 |
| Sonnet 5 | $0.00511 | $0.00511 |
| Haiku 4.5 | $0.00256 | $0.00256 |
Grade C, and why
evalbench AGENTS.md scanned grade C with 1 finding 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 yesterday.
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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf .venv/fake_home How it starts
The opening of the file, as written. The whole thing — 288 lines — stays where its author put it; the contents beside it link to each section on GitHub.
EvalBench: Agentic Onboarding & Development Guide
Welcome to EvalBench! This guide is specifically designed for AI coding assistants and new developers to help you understand the repository's architecture, evaluation modes, codebase structure, and contribution flows.
Table of Contents
- Overview & Objectives
- Project Architecture
- Module Directory Layout
- Tool Paradigms & Generators
- Core Workflows & Lifecycle
- Configuration Schemas
- Local Development & Execution
- Troubleshooting & Tips
Overview & Objectives
EvalBench is a highly flexible testing and evaluation framework designed to measure the quality of Generative AI (GenAI) workflows, specifically focusing on:
- Database specific tasks: Generating valid DDL, DML, and DQL across multiple database types (AlloyDB, BigQuery, Spanner, Postgres, SQLite, etc.).
- Agent Multi-turn journeys: Simulating complex user interactions where an LLM-based simulated user responds to the agent's questions or drives the conversation via a predetermined plan.
- Extensible Scoring: Evaluating outputs with a plug-and-play suite of deterministic and LLM-based scorers.
[!NOTE] The core design principle of EvalBench is isolation. Each multi-turn execution runs in a sandboxed home directory (
.venv/fake_home/or.venv/fake_home_claude/) to prevent local machine environment contamination.
Project Architecture
EvalBench separates evaluation into distinct orchestrators, evaluators, generators, and scorers.
graph TD
Config[Run Config YAML] -->|Loads| Orch[Orchestrator]
Dataset[Dataset JSON] -->|Parsed| Orch
Orch -->|Splits scenarios by Dialect/DB| Eval[Evaluator]
subgraph Per Scenario Evaluation Loop
Eval -->|Turn 1 Prompt| Gen[Agent / Model Generator]
Gen -->|Tool Calls / Text| StepLogic{Is Multi-turn?}
StepLogic -->|Yes| VUser[Simulated User LLM]
VUser -->|Turn N Next Response| Gen
StepLogic -->|Done / Final output| Exec[SQL Execution / Scorer Work]
end
Exec -->|Store Results| Report[Reporting: CSV / BigQuery]
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.
- yesterday First seen · 288 lines · 2,556 tokens per session scan C eedfa31e48cb
evalbench AGENTS.md is an instructions file published in the GitHub repository GoogleCloudPlatform/evalbench (55 stars, last pushed 3d ago), licensed Apache-2.0. It adds 2,556 tokens to every session, about $0.0128 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
comet AGENTS.md
Instructions for rpamis/comet, covering 回复语言, 测试, 提交前检查, commit 规范 and 项目结构规范.
comet CLAUDE.md
Instructions for rpamis/comet, covering 回复语言, 测试, 提交前检查, commit 规范 and 项目结构规范.
hoop CLAUDE.md
Instructions for hoophq/hoop, covering claude.md, project overview, toolchain & prerequisites, architecture and module breakdown.
powercontext AGENTS.md
Instructions for oceanbase/powercontext, covering repository guidelines, project structure & module organization, build, test, and development commands, agent skills and coding style & naming conventions.
Eval CLAUDE.md
Instructions for ai-twinkle/Eval, covering twinkle eval — 專案規範手冊(claude.md), 目錄, 1. 專案定位與設計理念, 1.1 誕生背景 and 1.2 核心設計哲學.
helix-db AGENTS.md
Instructions for HelixDB/helix-db, covering approach, slice access, clippy and formatting and database key/value construction, parsing, and use.