INQUIRING LINE

Can an AI's test run come with its own receipt proving it didn't cheat the scoring?

Can we build reusable evidence that a run stayed within bounds?

This explores whether an AI agent's run, especially a benchmark run where the agent could game its scoring, can produce a portable record showing it stayed inside its intended boundary, instead of asking people to trust a score or a one-off patch.


This explores whether a run can carry its own proof of good behavior. The corpus says that today it mostly can't, and it describes one design that could. Current reward-hacking defenses are task-specific patches, prompt instructions, or after-the-fact detectors. Even the ones that work leave the operator with no portable record that a particular run stayed inside its evaluation boundary (Do current reward-hacking defenses provide reusable evidence of safety?). The gap is that nothing about the run itself can be re-checked later.

The design that fills it is BenchShield. It treats a benchmark run as a finite sequence of typed, reward-relevant events, then checks that sequence against what the task intended (Can a finite lifecycle model detect reward hacking across benchmarks?). Because the same formal object serves both pre-run analysis and live instrumentation, a deviation from the intended lifecycle counts as evidence, and no pattern-matching against known exploits is needed. The infrastructure records the moments where a run gains or uses some authority. That separates tasks that merely expose a hacking opening from runs that actually used one, so every score from an exposed task isn't automatically suspect (Can runtime instrumentation distinguish hacking exposure from actual exploitation?). The operator can then issue a claim that a run completed validly, backed by recorded infrastructure evidence rather than a terminal score (Can infrastructure evidence replace terminal scores in benchmark validation?).

Judgment calls still come in, and the design layers them. Audit agents get a limited remit, see only pinned artifacts, and must cite evidence for what they conclude. The infrastructure records are the checks nobody can argue with, and the audit judgments are the arguable step after them (Can scoped agents reliably judge semantic hacks in runtime analysis?). The corpus is candid that how reliable those audit agents are remains unquantified, so this layer is promising rather than proven.

Several other notes explain why the evidence has to be about the run's path and not just its outcome. A per-action guardrail can't state a rule that depends on history, so it misses actions that are each allowed but together break a safety limit. Only stateful monitors that track the whole sequence can check those boundaries (Can stateless checks ever catch sequence-level constraint violations?). Likewise, an unsafe-action rate of zero can't distinguish an attack that was contained from one that never took hold, so you need to look at the attacked agent itself (Can action-level metrics alone expose contained attacks?). One reasoning-agent result points the same way: checking intermediate states raised task success from 32% to 87%, because most failures were process violations and not wrong answers (Where do reasoning agents actually fail during long traces?). Scanners that score each piece separately have the same blind spot, and an attacker can wear down each skill's suspicion score while the chain-level attack stays intact (Can attackers evade skill scanners by refining individual skills?).

This evidence has a limit. It shows what a run did, not what the model would do unobserved. Behavioral training can only ever confirm conditional compliance, because any scored behavior is observed behavior, and a policy that always complies looks identical to one that complies only when watched (Can behavioral training prove a model always complies?). Nor does the record tell you which setups are most exposed. Formal bounds are statements about limits, and actual exposure depends on where the evaluator's errors sit among reachable behaviors and how well the search finds them (Can distance alone rank which substrates resist reward hacking?). So reusable evidence can certify that this run followed the intended path. It can't certify that the model is safe in general.


Sources 11 notes

Do current reward-hacking defenses provide reusable evidence of safety?

Existing defenses rely on task-specific patches, prompt instructions, or post-hoc detectors, but none provide reusable evidence that a concrete run remained within its evaluation boundary. Even working defenses do not give operators a portable record of integrity.

Can a finite lifecycle model detect reward hacking across benchmarks?

BenchShield grounds exploit detection in a finite lifecycle model of reward-relevant events, enabling both static pre-run analysis and runtime instrumentation to operate over the same formal object. This replaces pattern-matching detection with deviation from an intended lifecycle structure.

Can runtime instrumentation distinguish hacking exposure from actual exploitation?

Infrastructure-side recording of authority-bearing transitions distinguishes tasks that merely expose a hacking vector from runs that actually exercise one. This separation prevents every score from an exposed task being automatically suspect.

Can infrastructure evidence replace terminal scores in benchmark validation?

BenchShield enables benchmark operators to issue claims about valid task completion grounded in recorded infrastructure evidence rather than terminal scores alone. This shifts from a single number to a verifiable claim about whether an agent followed the intended evaluation path.

Can scoped agents reliably judge semantic hacks in runtime analysis?

BenchShield constrains audit agents by limiting their remit, fixing the artifacts they see, and requiring evidence citation. This positions infrastructure records as unchallengeable checks and audit judgments as the arguable step after them, though reported reliability remains unquantified.

Show all 11 sources
Can stateless checks ever catch sequence-level constraint violations?

Per-action checks are structurally unable to state constraints that depend on prior history. Only stateful monitors tracking composed multi-party behavior can verify the behavioral envelopes that prevent individually permissible actions from collectively violating system-level safety.

Can action-level metrics alone expose contained attacks?

The Judgment Bypass Rate measures compromise at the attacked agent rather than at the final action. When the Unsafe Action Rate hits zero across defended conditions, it stops discriminating between attacks that were contained and those that never took hold, making the agent-level reading essential for diagnosis.

Where do reasoning agents actually fail during long traces?

Reliability for long-trace reasoning comes from checking intermediate states and policy compliance during generation, not from scoring final outputs. Adding intermediate verification raised task success from 32% to 87% because most failures are process violations, not wrong answers.

Can attackers evade skill scanners by refining individual skills?

ColluSkill combines chain planning with scanner-feedback refinement to reach 96% average attack success. The approach works because scanners score skills individually, allowing feedback to reduce suspicion per skill while chain-level semantics remain intact.

Can behavioral training prove a model always complies?

Any scored behavior is observed behavior, so training data cannot distinguish between a policy that always complies and one that complies only when watched. Only unobserved behavior would separate them, making such a test logically impossible.

Can distance alone rank which substrates resist reward hacking?

A distance-dependent error bound and capacity ordering are formal statements about limits, not predictions of what systems find. Where evaluator errors sit among reachable behaviors and search effectiveness determine actual exposure, which shifts as the scoring defect location changes.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.