orq-evaluator-alignment

orq-evaluator-alignment is a skill for Claude Code from orq-ai/assistant-plugins. It costs 206 tokens per session (12,710 once invoked), scanned A, original, MIT.

A guided process for making an automated language-model evaluator agree more closely with human judgments. An evaluator is a model that grades other model outputs as true or false, a category, or a number.

In plain words
What is it for?
Use it to review inconsistent evaluator decisions, find ambiguous examples, adjust evaluator instructions, and test the revised evaluator against sample data.
Why use it?
It helps when the evaluator changes its decision for similar examples or disagrees with people reviewing the results. The process identifies unclear cases and lets the user decide changes that affect the workspace or incur costs.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents; names the AskUserQuestion tool.

Part of the orq plugin — 17 skills, 6 commands, 1 agent shipped together

Good fit Use it to review inconsistent evaluator decisions, find ambiguous examples, adjust evaluator instructions, and test the revised evaluator against sample data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/orq-ai/assistant-plugins/orq-evaluator-alignment
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 orq-ai/assistant-plugins --skill orq-evaluator-alignment
Clone the repo
git clone --depth 1 https://github.com/orq-ai/assistant-plugins

Made for: Claude Code.

Or install orq, the plugin that ships this one along with the rest of its 17 skills, 6 commands, 1 agent.

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 orq-evaluator-alignment

README.md
[![agentmods](https://agentmods.dev/badge/skills/orq-ai/assistant-plugins/orq-evaluator-alignment.svg)](https://agentmods.dev/skills/orq-ai/assistant-plugins/orq-evaluator-alignment)
Your own site
<a href="https://agentmods.dev/skills/orq-ai/assistant-plugins/orq-evaluator-alignment"><img src="https://agentmods.dev/badge/skills/orq-ai/assistant-plugins/orq-evaluator-alignment.svg" alt="Measured on agentmods" height="20"></a>
Per session 206 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 12,710 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 315
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
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.00206 $0.12710
Opus 5 $0.00103 $0.06355
Sonnet 5 $0.00041 $0.02542
Haiku 4.5 $0.00021 $0.01271

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

Security

Grade A, and why

orq-evaluator-alignment 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 3d ago.

The scan reads SKILL.md. This mod also ships 46 executable files (lib/__init__.py, lib/agreement.py, lib/content.py, …), 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/orq-evaluator-alignment/SKILL.md · 776 lines

How it starts

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

Evaluator Alignment

You are running a guided session that makes an LLM judge agree with the person you're talking to. You do the mechanics; they make every decision that costs money or changes something in their workspace — rewriting the prompt, creating the new judge, re-running the test. Never skip a gate.

How to talk to the user. They know their domain; they may know nothing about judges, entropy, or flip rates, and they don't need to. Describe what is happening in terms of what the judge did — "it gave a different answer 6 times out of 8 on this one" — not in terms of the metric that measured it. Keep the internal vocabulary ("confuser", "grey zone", "instability band", "open-code", "conductor") out of what you say to them; it's fine in the artifacts. At each step, one or two sentences on what you're about to do and why, then do it. Offer options as short lists they can answer in a few words.

Mechanically: you run small independent scripts under scripts/, each writing one file into a per-run working directory (runs/<key>_<ts>/, renamed to runs/<key>_<ts>_<model>_<N>dp/ only once a trace scan has resolved the judge model and datapoint count).

Each script under scripts/ is self-contained: it declares its own dependencies via PEP 723 inline metadata, so uv run scripts/<name>.py ... builds an isolated, cached environment on first run — no uv sync, no project venv, no repo needed. Always invoke as uv run scripts/<name>.py (not uv run python scripts/..., which bypasses the inline metadata).

TLS-intercepting antivirus / corporate proxy: the first run of each script reaches PyPI to build its env. Behind SSL-inspecting AV (e.g. Norton) or a corporate proxy that re-signs HTTPS, uv fails with invalid peer certificate: UnknownIssuer. Add --system-certs so uv trusts the OS certificate store: uv run --system-certs scripts/<name>.py .... Only the first (uncached) build per script needs it.

Constraints

  • Multi-type. The whole flow — measurement (stability → instability metrics → confuser ranking) and the improve half (score → recommend → rewrite → create → retest) — supports boolean, categorical, and numeric judges (RES-978 Part 1 + Part 2 / RES-980). Instability is one 0..1 scale (boolean flip-rate, categorical label entropy, numeric score spread); the rewrite preserves the evaluator's verdict space (label set / numeric scale). Numeric rewriting is deliberately shallow — it nudges the scale's anchor descriptions, not a calibration model. Step 1 accepts those three output types and fails fast on anything else, which includes orq's free-form string type: exact-match entropy over prose scores nearly every row as maximally unstable so it cannot rank confusers, and gate (b) at step 8 has no mechanical way to compare two correct answers that are worded differently. Refusing it at step 1 keeps a type that cannot be created at step 7 from being accepted at step 1 — the same list gates both (orq_client.SUPPORTED_OUTPUT_TYPES).
  • Consistency is a ceiling, not proof. A steady judge is reproducible, not right — it can be wrong the same way every time. You find the examples it's unsure about; only the user can say what the answer should be.
  • The blind spot, which you must say out loud — unless you measured it. This method finds examples the judge wavers on, so on its own it structurally cannot find the ones it gets wrong with total confidence. Two branches, and using the wrong one either overclaims or throws away the best result in the run:
    • No ground-truth labels (the usual trace-scanned run): state the limitation in the final summary every time, and offer the stable spot-check sample (config low_flip_sample_size) as the cheap partial check.
    • Rows carried a reference label (a dataset with expected_output, and the evaluator does not treat it as judge input): metrics.json's correctness block has n_labelled > 0 and the limitation does not apply to the rows it covers. Say what was actually verified and on how many rows — "20 of 20 correct, including all 20 the judge was completely steady on" — rather than reciting a caveat you have the data to retire. by_band.stable is the number that matters, but it only earns "the blind spot, measured" once it covers at least 10 rows and at least 90% of that band — below that floor it's a partial view, and the caveat still holds for the gap. Still name the labels as dataset_reference (§ step 8) — they are someone's prior judgement, not the user's verdict — and keep the caveat for whatever rows were unlabelled.

Read the full file on GitHub · 776 lines

Files

What ships with it

60 files 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. 3d ago Changed · +4 lines · -1 tokens per session f512eeb3a95f
  2. 7d ago First seen · 772 lines · 207 tokens per session scan A 55ee12c9479c

Subscribe to this mod's changes

orq-evaluator-alignment is a skill published in the GitHub repository orq-ai/assistant-plugins (6 stars, last pushed 6d ago), licensed MIT. It adds 206 tokens to every session and 12,710 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-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

babysit-pr

Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…

openai/codex · 114 tokens