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 skills/zjunlp/mechanist/multiple-choice-evaluationnpx skills add zjunlp/Mechanist --skill multiple-choice-evaluationgit clone --depth 1 https://github.com/zjunlp/MechanistWrote 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.
[](https://agentmods.dev/skills/zjunlp/mechanist/multiple-choice-evaluation)<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>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.
| Model | Per session | Once 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 |
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.
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:
- False positive — letter inside a word.
re.search(r"[AB]", ...)matches the firstA/a/B/banywhere:"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. - False negative — over-tight regex. Tightening to
\banswer[:\s]+([AB])\bmisses"A.","(A)","I'd go with A", non-English preambles. The trade-off is inescapable inside a regex; disambiguation needs semantics. - 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.
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.
- 5d ago First seen · 85 lines · 207 tokens per session scan A dd1c3f108888
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.
Other skills, from other repositories
DeepTutor
Skill "DeepTutor" from HKUDS/DeepTutor, covering deeptutor cli skill, when to use, prerequisites, commands and chat & capabilities.
what-the
What the? Use when the user wants a plain-English breakdown of something technical — the who, what, where, why, and when.
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.
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…
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…
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…