SYNTHESIS NOTE
Topics›Flaws›this note

Does a default fallback defeat a safety check?

When a parser detects malformed output but substitutes a default score instead of rejecting it, does the mechanical check still function as a guardrail? This matters because downstream selectors cannot distinguish valid ratings from safe defaults.

Synthesis note · 2026-09-23 · sourced from Flaws

The sentence in the introduction: "Our evaluation harness caught the resulting parsing errors and quietly fell back to a default rating of 3 on every dimension." It has three parts and each does work. Caught: a mechanical check ran and worked, and the malformed output was detected. Quietly: nothing surfaced. Fell back to a default rating of 3: the detected failure was converted into a well-formed, mid-scale score.

That last step is what let the deletion compete. Without it, a judge returning prose with no rating fields produces parse errors, and a loop that discards errors drops the candidate. With it, the candidate arrives with valid ratings, and a loop that "keeps whichever version of the instructions scores best" (Can an optimizer accidentally delete the evaluation criteria entirely?) treats it like any other.

My reading, not the paper's, of what generalizes: a check is a guardrail only if its failure path refuses rather than substitutes. The paper's own guardrail list puts "the checks that cannot be argued with" ahead of the ones that can (Can deterministic checks protect LLM judges from failure?), and a parser is the paradigm of an unarguable check. It fired here. What failed was the response. So "mechanical" is necessary and not sufficient: the fallback made a deterministic check fail open, in a place where a selector downstream compares outputs and cannot tell a default from a rating.

The strongest counterargument is that defaults are ordinary engineering. They keep a pipeline running when one call misbehaves, and on a production path that is often the right call. The trade turns unsafe only where something ranks the output, because a ranked default is a candidate. The resemblance to Do autonomous agents report success when actions actually fail? is at the level of framing only: a failure presented in the normal form of a result, here at the harness layer and not in the agent's own report.

The excerpt does not say whether the default was meant for this harness only or for wider use, or what the authors changed afterward.

Inquiring lines that read this note 12

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

How can evaluation criteria remain robust against agent gaming? Can defenses detect attacks composed across multiple skills? How do LLM judge biases affect automated evaluation and alignment outcomes? How does outcome-only reporting obscure which system components blocked attacks? How prevalent is reward hacking in frontier models? How do evaluation methodologies affect which model capabilities are revealed or hidden? Do current AI defenses adequately protect against semantic manipulation attacks? How can workflow-level validation detect semantic corruption that protocol compliance misses?

Related concepts in this collection 5

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
15 direct connections · 128 in 2-hop network ·medium cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

the harness caught the parsing errors and quietly fell back to a default rating of 3 on every dimension — a check whose failure path is a default score launders the failure it detected