write-judge-prompt
Design LLM-as-Judge evaluators for subjective criteria that code-based checks cannot handle. Use when a failure mode requires interpretation (tone, faithfulness, relevance, completeness). Do NOT use when the failure mode can be checked with code (regex, schema validation, execution tests). Do NOT us
By hamelsmu · 686 installs
npx skills add hamelsmu/evals-skills --skill write-judge-prompt
Source repository · Upstream listing
Write LLM as Judge Prompt
Design a binary Pass/Fail LLM as Judge evaluator for one specific failure mode. Each judge checks exactly one thing.
Prerequisites
Error analysis is complete. The failure mode is identified.
You have human labeled traces for this failure mode (at least 20 Pass and 20 Fail examples).
A code based evaluator cannot check this failure mode. Exhaust code based options before reaching for a judge — many failure modes that seem subjective reduce to keyword checks, regex, or API calls when you understand the domain. Example: detecting whether an AI interviewing coach suggests "general" questions (asking about typical behavior instead of a specific past event) seems to require semantic understanding, but in practice a keyword check for words like "usually," "typical," and "normally" could work quite well.
The Four Components
Every judge prompt requires exactly four components:
1. Task and Evaluation Criterion
State what the judge evaluates. One failure mode per judge.
Not: "Evaluate whether the email is good" or "Rate the email quality from 1 5."
2. Pass/Fail Definitions
Outcomes are strictly binary: Pass or Fail. No Likert scales, no letter grades, no partial credit. Define exactly what constitutes Pass and Fail. These definitions come from your error analysis failure mode descriptions.
3. Few Shot Examples
Include labeled Pass and Fail examples from your human labeled data.
Rules for selecting examples:
Include at least one clear Pass, one clear Fail, and one borderline case. Borderline examples are the most valuable — they teach nuance.
Draw examples from the training split (10 20% of labeled data set aside for this purpose).
Any example used in the judge prompt must be excluded from dev and test sets. Using dev/test examples is data leakage.
2 4 examples is typical. Performance plateaus after 4 8.
4. Structured Output Format
Enforce structured output using your LLM provider's schema enforcement (e.g., response format in OpenAI, tool definitions in Anthropic) or a library like Instructor or Outlines. If the provider doesn't support schema enforcement, specify the JSON schema in the prompt.
The output must include a critique before the verdict. Placing the critique first forces the judge to articulate its assessment before committing to a decision.
Critiques must be detailed, not terse. A good critique explains what specifically was correct or incorrect and references concrete evidence from the output. The critiques in your few shot examples set the bar for the level of detail the judge will produce.
Choosing What to Pass to the Judge
Feed only what the judge needs for an accurate decision:
Failure Mode What the Judge Needs
Tone mismatch Client persona + generated email
Answer faithfulness Retrieved context + generated answer
SQL correctness User query + generated SQL + schema
Instruction following System prompt rules + generated response
Tool call justification Conversation history + tool call + tool result
For long documents, feed only the relevant snippet, not the entire document.
Model Selection
Start with the most capable model available. The same model used for the main task works as judge (the judge performs a different, narrower task). Optimize for cost later once alignment is confirmed.
Anti Patterns
Vague criteria like "is this helpful?" Target a specific, observable failure mode from error analysis.
Holistic judge for the entire trace. A single judge covering multiple dimensions produces unactionable verdicts.
No few shot examples. Without examples, the model won't know what counts as a failure in your application.
Dev/test examples used as few shot. This is data leakage. Use only the training split.
Likert scales (1 5, letter grades, etc.). Binary pass/fail only. Likert scales produce scores that sound precise but can't be calibrated: annotators disagree on the difference between a 3 and a 4, and the judge inherits that noise. Binary forces you to define a clear decision boundary upfront, which makes inter annotator agreement measurable and the judge's errors actionable. If you need to capture severity, use multiple binary judges (e.g., "factually wrong" and "dangerously wrong") rather than one ordinal scale.
Skipping validation. Measure alignment with human labels using validate evaluator before trusting the judge.
Judges for specification failures without fixing the prompt first. If the prompt never asked for the behavior, add the instruction before building an evaluator. For critical requirements, a judge can still serve as a regression guard.