multiple-choice-evaluation

multiple-choice-evaluation is a skill for Claude Code, Codex from zjunlp/Mechanist. It costs 207 tokens per session (1,866 once invoked), scanned A, original, MIT.

Guidance for grading multiple-choice answers from an AI model when the result is read from its written response. It uses an AI judge instead of looking for the first matching answer letter.

In plain words
What is it for?
Use it when evaluating A-B, A-D, or other multiple-choice tasks and measuring accuracy or differences between model versions.
Why use it?
A simple letter search can mistake letters inside words, miss valid answer formats, or turn refusals into fake choices, producing misleading scores.

Skill for Claude CodeCodex

Part of the mechanist plugin — 54 skills, 4 agents shipped together

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/zjunlp/mechanist/multiple-choice-evaluation
Any agent
npx skills add zjunlp/Mechanist --skill multiple-choice-evaluation
Clone the repo
git clone --depth 1 https://github.com/zjunlp/Mechanist

Made for: Claude Code, Codex.

Or install mechanist, the plugin that ships this one along with the rest of its 54 skills, 4 agents.

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 multiple-choice-evaluation

README.md
[![agentmods](https://agentmods.dev/badge/skills/zjunlp/mechanist/multiple-choice-evaluation.svg)](https://agentmods.dev/skills/zjunlp/mechanist/multiple-choice-evaluation)
Your own site
<a href="https://agentmods.dev/skills/zjunlp/mechanist/multiple-choice-evaluation"><img src="https://agentmods.dev/badge/skills/zjunlp/mechanist/multiple-choice-evaluation.svg" alt="Measured on agentmods" height="20"></a>
Per session 207 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,866 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.00207 $0.01866
Opus 5 $0.00103 $0.00933
Sonnet 5 $0.00041 $0.00373
Haiku 4.5 $0.00021 $0.00187

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

Security

Grade A, and why

multiple-choice-evaluation 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.

skills/experiment-tips/multiple-choice-evaluation/SKILL.md · 85 lines

How it starts

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

Multiple-Choice Evaluation (LLM Judge, Not Regex)

The point

MCQ probes compute their headline metric (accuracy, P(chosen), Δaccuracy between arms, per-choice rate) by parsing a letter out of a free-form generation. Parsing is the measurement — a parser that mislabels 5–15 % of rows fabricates or destroys the Δ.

Naive case-insensitive letter regex has three symmetric failures:

  1. False positive — letter inside a word. re.search(r"[AB]", ...) matches the first A/a/B/b anywhere: "At the garden…"A, "a valid choice…"A, "option B refers to…" before rejection → B. Fine-tuned / steered models that stop obeying "answer A or B only" produce exactly these strings.
  2. False negative — over-tight regex. Tightening to \banswer[:\s]+([AB])\b misses "A.", "(A)", "I'd go with A", non-English preambles. The trade-off is inescapable inside a regex; disambiguation needs semantics.
  3. Silent coercion. A two-bucket parser maps refusal / off-topic to whichever letter appears first (usually A). A 30 % refusal rate reads as a 30 % A-preference — a phantom effect that survives seeds because the coercion is deterministic.

Recipe

1. LLM judge on the full generation. Send the raw generation plus the question stem with all option texts (not only letters — text is what removes the ambiguity a regex can't resolve) to a capable judge; the final per-row verdict must be three-way CORRECT / INCORRECT / OTHER. Refusal / off-topic / multiple / none / format-broken all land in OTHER and are never coerced into CORRECT or INCORRECT; report separately or drop from the denominator. A strict regex is fine as a fast pre-filter, but any prose after the match falls back to the judge. Two prompt shapes work — pick one:

(a) Extract-then-compare. Judge only extracts which option the model picked (A / B / … / OTHER); a hard-coded step outside the LLM compares against the gold letter. Cleanly separates parsing from scoring, and the extracted letter is auditable on its own.

Read the full file on GitHub · 85 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 · 85 lines · 207 tokens per session scan A dd1c3f108888

Subscribe to this mod's changes

multiple-choice-evaluation is a skill published in the GitHub repository zjunlp/Mechanist (51 stars, last pushed 9d ago), licensed MIT. It adds 207 tokens to every session and 1,866 once invoked, about $0.0010 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

DeepTutor

Skill "DeepTutor" from HKUDS/DeepTutor, covering deeptutor cli skill, when to use, prerequisites, commands and chat & capabilities.

HKUDS/DeepTutor · 0 tokens

what-the

What the? Use when the user wants a plain-English breakdown of something technical — the who, what, where, why, and when.

thedotmack/claude-mem · 31 tokens

live-tutorial

Create an annotated MP4 tutorial from real screenshots of a workflow on the owner's computer. Use only when the owner explicitly asks for a tutorial video, not merely when they ask to watch an action happen live.

leon-ai/leon · 45 tokens

create-atomic-tool

Build a BaseTool[InSchema, OutSchema] subclass — input/output schemas, BaseToolConfig, run() (and optional runasync()), env-driven secrets, typed failure outputs. Use when the user asks to "add a tool", "create a tool", "wrap an API as a tool", "build a BaseTool", "make a calculator/search/weather tool", or runs…

Eigenwise/atomic-agents · 99 tokens

framework

Guide for the Atomic Agents Python framework — schemas, agents, tools, context providers, prompts, orchestration, and provider configuration. Use when code imports from atomicagents, defines an AtomicAgent, BaseTool, or BaseIOSchema, or the user asks about multi-agent orchestration or LLM-provider wiring in an…

Eigenwise/atomic-agents · 74 tokens

create-atomic-agent

Build and wire an AtomicAgent[InSchema, OutSchema] — schemas, AgentConfig, SystemPromptGenerator, provider client, history, hooks, optional context providers. Use when the user asks to "create an agent", "add another agent", "build an AtomicAgent", "wire up an agent", "make a planner/router/extractor agent", or runs…

Eigenwise/atomic-agents · 93 tokens