Safety researchers have introduced 'Just Ask Jev' alongside the RLCDAlignBench suite (arXiv: 2609.29429, GitHub: sumleo/RLCDAlignBench). Conventional alignment auditors rely on expensive generative LLM judges or rigid single-label classifiers (e.g., Llama Guard). Trained via Reinforcement Learning for Calibrated Decisions (RLCD), Jev evaluates multiple typed alignment questions simultaneously across ten failure modes—sycophancy, jailbreaks, deception, prompt injection, hallucination, privacy breaches, bias, reward hacking, uncertainty concealment, and power seeking—in a single forward pass. Achieving a median 0.886 zero-shot AUROC across 44 benchmarks, Jev matches human consensus while slashing evaluation costs by 63x.

Key Takeaways

  • ✓Evaluates ten distinct alignment failure modes simultaneously with calibrated probability outputs in a single forward pass.
  • ✓Achieves a 0.886 median AUROC in zero-shot settings across 44 benchmark suites and five frontier target LLMs on RLCDAlignBench.
  • ✓Reduces deployment and audit inference expenditure by 63x compared to text-generating LLM-as-a-judge pipelines.
  • ✓Outperforms supervised domain-specific classification baselines while surfacing subtle labeling defects in legacy datasets.
  • ✓Full evaluation harness, calibrated inference code, and annotated benchmarks open-sourced on GitHub.
🔬

In-Depth Technical Analysis

Core Background & Industry Pain Points Evaluating alignment failures—sycophancy, covert deception, power-seeking, prompt injection—is essential for enterprise AI safety. Yet contemporary inspection mechanisms present a harsh dilemma: generative LLM-as-a-judge pipelines require verbose text generation across every safety rubric, generating unsustainable token bills; conversely, token-probability classifiers like Llama Guard output single fixed binary labels per inference pass, blind to contextual relational failures like hallucination under user pressure. ### Architecture Highlights & Internals The authors introduce Jev, trained via Reinforcement Learning for Calibrated Decisions (RLCD). Unlike generative models, Jev responds to multiple typed alignment probes simultaneously, outputting mathematically calibrated probability distributions in a single forward pass. To benchmark this capability, the team built RLCDAlignBench, spanning 10 alignment failure classes across 44 public benchmarks. By decoupling question phrasing from contextual inputs, Jev evaluates relational discrepancies (such as answering contrary to true internal knowledge) with unprecedented speed. ### Authoritative Benchmarks & Measured Scores Tested across five target frontier models: Jev scores a median zero-shot AUROC of 0.886 on RLCDAlignBench, surpassing task-specific supervised classifiers on the majority of evaluation sets. It matches human consensus benchmarks while identifying pervasive label noise in legacy benchmarks. Most critically, Jev reduces alignment audit infrastructure costs by a factor of 63x compared to text-generating frontier judges. ### Developer Hands-on Guide Security architects can review open-source PyTorch pipelines at https://github.com/sumleo/RLCDAlignBench to integrate calibrated guardrail screening into inference endpoints.