blind-eval

blind-eval is a skill for Claude Code from leonardoeverling-spec/governed-context. It costs 92 tokens per session (1,459 once invoked), scanned A, original, MIT.

A procedure for comparing two or more alternatives by hiding their identities from the people judging them. It records the comparison rules beforehand and records judgments before revealing which alternative was which.

In plain words
What is it for?
Use it to compare prompts, AI models, context setups, designs, or drafts using a predefined evaluation process.
Why use it?
It helps reduce expectation and creator bias when deciding whether one output is better than another.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the governed-context plugin — 1 skill, 1 MCP server shipped together

Good fit Use it to compare prompts, AI models, context setups, designs, or drafts using a predefined evaluation process.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/leonardoeverling-spec/governed-context/blind-eval
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.

Any agent
npx skills add leonardoeverling-spec/governed-context --skill blind-eval
Clone the repo
git clone --depth 1 https://github.com/leonardoeverling-spec/governed-context

Made for: Claude Code.

Or install governed-context, the plugin that ships this one along with the rest of its 1 skill, 1 MCP server.

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 blind-eval

README.md
[![agentmods](https://agentmods.dev/badge/skills/leonardoeverling-spec/governed-context/blind-eval.svg)](https://agentmods.dev/skills/leonardoeverling-spec/governed-context/blind-eval)
Your own site
<a href="https://agentmods.dev/skills/leonardoeverling-spec/governed-context/blind-eval"><img src="https://agentmods.dev/badge/skills/leonardoeverling-spec/governed-context/blind-eval.svg" alt="Measured on agentmods" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,459 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.00092 $0.01459
Opus 5 $0.00046 $0.00730
Sonnet 5 $0.00018 $0.00292
Haiku 4.5 $0.00009 $0.00146

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

Security

Grade A, and why

blind-eval 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 6d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/record-judgment.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/blind-eval/SKILL.md · 116 lines

How it starts

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

Blind evaluation protocol

Roles.

  • OPERATOR (usually the agent): prepares material, runs arms, records judgments as scribe.
  • JUDGE: a human, or a clean model instance with no access to preparation material. Whoever prepared or operated does not judge.
  • PRINCIPAL: the human the result is for. Present at unblinding; never unblind alone.

Who judged is study data: human/model, creator/external, and the bias they declared before seeing anything.

Study layout

Create one directory per study and keep everything in it:

study-<name>/
  preregistration.md          frozen after Phase 1
  index.md                    every collection, with status
  collections/<id>/           the material judges see (clean, no badges)
  mapping/<id>.private.json   label -> arm; nobody opens until Phase 4
  judgments/                  append-only records written by the recorder
  analysis.md                 written in Phase 4 only

Phase 1 — Pre-registration (before any material exists)

Write preregistration.md, then it freezes: corrections are new files that reference the old one, never edits.

  • The question, in conditional form that accepts any outcome ("under which conditions does X improve, worsen or not change Y") — never "prove X is better".
  • Arms and exactly what each receives; parity of model, budget and conditions.
  • Observed metadata (effective model id, versions) — a requested alias is never proof.
  • Judgment dimensions + a closed flag list you write for this study. The list from the founding study — invented facts, unsupported grandiosity, irrelevant personalization, leakage, ignored constraints — is an example, not a standard.
  • Proportional reading grid: what EACH possible outcome licenses you to conclude — including defeat and instability ("variance across replicas is the main finding" is a legitimate result).
  • ALL post-unblinding analyses, fixed now. A stopping rule. After this the protocol is frozen: new analysis ideas become proposals for the NEXT study, never amendments to this one.

Read the full file on GitHub · 116 lines

Files

What ships with it

1 file 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. 6d ago First seen · 116 lines · 92 tokens per session scan A 1664befd6b2e

Subscribe to this mod's changes

blind-eval is a skill published in the GitHub repository leonardoeverling-spec/governed-context (0 stars, last pushed 1mo ago), licensed MIT. It adds 92 tokens to every session and 1,459 once invoked, about $0.0005 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 skills, from other repositories

testing-llm

LLM and AI testing patterns — mock responses, evaluation with DeepEval/RAGAS, structured output validation, and agentic test patterns (generator, healer, planner). Use when testing AI features, validating LLM outputs, or building evaluation pipelines.

yonatangross/orchestkit · 55 tokens

golden-dataset

Golden dataset lifecycle patterns for curation, versioning, quality validation, and CI integration. Use when building evaluation datasets, managing dataset versions, validating quality scores, or integrating golden tests into pipelines.

yonatangross/orchestkit · 44 tokens

omega-memory

Persistent memory for AI coding agents. Teaches agents how to use OMEGA's MCP tools for storing decisions, querying context, coordinating multi-agent workflows, and resuming tasks across sessions.

omega-memory/omega-memory · 41 tokens

omega-memory

Persistent memory for AI coding agents. Semantic search, auto-capture, checkpoint/resume across sessions.

omega-memory/omega-memory · 23 tokens

core

This skill should be used when the user says "capture memory", "save to memory", "remember this", or trigger phrases like: "I've decided", "let's use", "we're going with", "I learned", "turns out", "TIL", "discovered", "I'm stuck", "blocked by", "always use", "never do", "convention is". Also triggers on recall…

modeled-information-format/mnemonic · 109 tokens

baton

A project handoff system for letting different AI coding tools continue the same work while sharing tasks, decisions, verification results, and project memory through Git.

kakadeka/Baton · 136 tokens