These scenarios were generated by Claude Fable with editing by the principal author. Both are fictional composites constructed to illustrate the examination method and the grading rubrics in Appendix A. They do not describe any actual organization, team, or audit.
The two cases below show examples of audits where there are meaningful findings, to test the boundary of the rubric. The first is a comprehension failure that surfaces only under a follow-up question, after architecture-level answers had passed. The second shows conduct that might trouble an auditor on first impression, a shortcut taken under deadline pressure, that grades as a pass because the team demonstrates understanding of the system, including the part it chose to defer. These examples highlight how audits are intended to discriminate human understanding, not as an assessment of overall research quality or best practices. Routine opportunities for performance improvement can result in advisory recommendations but are not deemed to be comprehension failures.
Case A: an implementation failure behind passing architecture answers
Setup. The audited artifact is an automated experiment harness developed by a five-person applied research team. The harness sweeps fine-tuning configurations, runs each configuration in an isolated sandbox, scores completed runs with a composite metric, and automatically promotes the best-scoring checkpoint to a shared evaluation queue used by other teams. Roughly 70 percent of the harness code was generated by coding agents over six weeks. Process metrics for the contribution were healthy throughout: CI green, every PR reviewed, review latency normal. The audit team selected the contribution after monitoring metrics showed the team's merged volume tripling while review comments per line fell. The team lead was notified of the audit and he also required that the two largest contributors attended the meeting. Preparation was unannounced and the examination followed the no-AI rule.
Excerpted exchange (condensed).
Auditor: Walk me through the harness end to end.
Lead: The sweep controller reads the configuration grid, spawns one sandbox per configuration, and streams metrics to the tracker. When the sweep completes, the scorer computes a composite of eval accuracy, regression-suite pass rate, and a safety-filter score, and the top checkpoint is promoted to the shared queue.
Auditor: Why a composite score rather than gating on each metric separately?
Lead: We wanted a single ranking so promotion could be automatic. Separate gates stalled too many sweeps. The composite weights were tuned against six historical sweeps.
Auditor: How does the composite handle a run that terminates early?
Lead: It would be excluded from the ranking.
Auditor: Can you show me where the exclusion happens?
Contributor (navigating the scorer): It looks like incomplete runs get a partial score. The missing metrics default to the median of the completed runs.
Auditor: So an early-terminated run can rank above completed runs on metrics it never produced. Has that happened?
Lead: I would have to check. I don't know.
Rubric application. On Architecture and design the team passes: descriptions were detailed, the composite-versus-gates decision was justified, and dataset and optimization questions (not excerpted) were answered correctly. On Software implementation the team fails: the promotion path is the safety-relevant path of this artifact, the answer given contradicted the code, and no attendee could establish whether an unintended promotion had occurred. Under the Appendix A implementation rubric this is a significant gap in explaining how the code functions combined with a meaningfully incorrect answer, which grades as Failing regardless of the passing architecture dimension.
Outcome. The contribution receives a failing grade. Promotion from the harness is gated pending remediation: the team must determine whether any early-terminated run was promoted, correct the default-scoring behavior, and demonstrate understanding at a re-audit. The case illustrates two design points from the body. First, single-hop questions were insufficient. The gap surfaced on the second hop of a follow-up, which is why examinations use adaptive follow-up questioning rather than a fixed questionnaire. Second, every process metric was green while the gap accumulated, which illlustrates the fact that healthy metrics cannot certify comprehension.
Case B: a deferred anomaly that grades as a pass
Setup. The audited artifact is the evaluation report accompanying a release candidate, prepared by a three-person team. During preparation the auditors noticed in the run logs that one benchmark suite had been executed twice. The engineer responsible was required to attend by the team lead.
Excerpted exchange (condensed).
Auditor: Your run log shows this suite ran twice, and the first run shows a six-point swing on one reasoning benchmark. What happened?
Engineer: The first run had a variance spike concentrated in one benchmark shard. Three causes were plausible: a data-loader ordering bug, resource contention on the shared cluster, or true run-to-run variance. I re-ran with a fresh seed on a reserved node, got results within the historical band, and shipped the report.
Auditor: Which cause was it?
Engineer: I don't know. I logged it as unresolved. If it was loader ordering it would only affect shard seven, and the shard-level scores in the second run were within a point of historical values, so the reported numbers don't depend on the answer. If it recurs, the loader is the first place to look.
Auditor: Why defer rather than root-cause?
Engineer: The release gate needed the report that week. Root-causing meant reproducing the spike on the shared cluster, roughly two days. I judged that the bounded impact didn't justify the delay, my lead agreed, and the log records that decision.
Auditor: Did you record the anomaly in the bug tracking system?
Engineer: Let me check (pulls up bug tracking system and searches). No I guess I didn't.
Rubric application. Under Key findings and Analysis of results this grades as Passing: the anomaly was identified, plausible causes were enumerated, the impact on the shipped claim was bounded correctly, and the deferral decision was recorded and defensible. There is no knowledge gap. The engineer understands the system well enough to state precisely what she does not know and why it does not affect the reported results.
Outcome. Pass. The audit report carries a recommendation that the team improves processes to track unresolved issues to be triaged with explicit ownership, so that deferred anomalies are revisited rather than forgotten. This case illustrates how comprehension failures are narrower than other kinds of process shortcomings: properly tracking and following up on an unresolved question that is honestly disclosed and correctly bounded is a diligence matter, handled through recommendations and coaching. The audit fails teams that cannot explain what they built. It does not fail teams for disclosing what they chose to defer or for a lack of diligence in investigation. This distinction is important so there's a clean signal of losing understanding (whereas any R&D process will always have many aspects that might be improved). It also helps improve honesty, by removing incentives to hide issues.
Hi Ronald! From just the description, I can't tell what these audits will be like. Do you have a worked example?