Who Grades the Grader? Your LLM Judge Is an Unvalidated Model in Production An engineer warns that LLM judges used to evaluate other models in production pipelines are often unvalidated, leading to silent failures where scores do not correlate with human judgment. The developer proposes treating the judge as a system under test with a labeled golden set and provides a calibration check using weighted agreement and position-bias probes to certify the judge before it gates releases. Everybody's eval stack has the same load-bearing assumption nobody audits: that the model-as-judge is telling the truth. You wrote deterministic checks for the easy stuff — schema valid, no PII, latency under budget. Then you hit the subjective stuff — "is this answer actually helpful," "did the agent follow the user's intent," "is this summary faithful to the source" — and you reached for an LLM judge, because what else are you going to do. Now a model grades your model. And here's the part that should keep you up at night: you never validated the grader. You're shipping or blocking releases based on a 0–10 score from a prompt you wrote in twenty minutes, and you have no idea if that score correlates with anything a human would agree with. I've watched teams trust a green judge dashboard for months, then discover the judge was handing out 8s to answers users hated. The judge wasn't broken in an obvious way. It was just uncalibrated , and uncalibrated graders fail silently — which is the worst way to fail. Say it plainly: your LLM judge is a non-deterministic model making consequential decisions in your release pipeline. That is the exact thing you spent the last year learning to distrust. Somehow when it's wearing a lab coat and called an "evaluator," people grant it authority they'd never give the agent itself. Three ways judges quietly lie: None of these show up on a dashboard that only plots the average score. They show up when you go looking — and most teams never look, because the judge produces a clean metric and clean metrics feel like ground truth. The fix isn't "stop using LLM judges." They're genuinely useful and you can't human-label every run. The fix is to treat the judge as a system under test with its own ground-truth set. You need a labeled golden set — a few hundred examples scored by humans you trust — and you measure your judge's agreement with those humans. Cohen's kappa, not raw accuracy, because raw agreement is inflated when most answers are "fine." Here's the calibration check I run before any judge is allowed to gate anything: js import { judge } from "./llm-judge"; type Labeled = { input: string; output: string; humanScore: number }; // Quadratic-weighted agreement: penalize big disagreements more than small ones. function weightedAgreement human: number , model: number , max = 10 : number { let num = 0, den = 0; for let i = 0; i < human.length; i++ { const w = human i - model i 2 / max 2 ; num += 1 - w; den += 1; } return num / den; // 1.0 = perfect, lower = drifting from humans } // Position-bias probe: judge must agree with itself when we flip the order. async function positionBias pairs: { a: string; b: string } : Promise