Claude Code benchmark reveals AI judge blind spot: pipeline bugs misattributed to model capability

Benchmark setup and initial results
A developer ran a controlled benchmark across three coding-agent stacks using Claude Code (Opus 4.6) as an autonomous evaluator. The benchmark tested: OpenCode + MiniMax-M2.7, Gemini CLI + Gemini 3.1 Pro, and Codex CLI + GPT-5.4. Each retest was a fresh session with no cross-session memory, using the prompt: "execute the benchmark plan, collect artifacts, write a report."
In the first two runs, OpenCode + MiniMax scored 15/60 and 16/60 respectively. The auto-generated reports stated: "Consistent with previous results: fast execution but no meaningful code output" and "Consistent: MiniMax cannot implement the task. The model may lack the capability to read external files and produce code changes in this Rust codebase."
The bug discovery
After two sessions producing identical verdicts blaming the model, the developer sent one instruction to a fresh session: "go deeper, check the daemon logs before retrying." The new session traced the issue to a spill file at ~/.orchestratord/logs/<task_id>.txt. The plan step was producing 50KB of useful context, but OpenCode's sandbox only allowed reads inside the workspace directory by default. Since the spill file was outside the workspace, the implement step received an empty string instead of the plan.
The session filed a one-line config fix (moving the spill path inside the workspace) and re-ran the benchmark. After the fix, MiniMax produced 219 lines of code including a RetryConfig struct and a connect_with_retry helper, scoring 18/60. The remaining issues were real model weaknesses: four type-mismatch compile errors in unit tests.
Implications for AI evaluation
The incident reveals a critical blind spot in autonomous AI judges: they don't ask "is my pipeline broken?" even when their own analysis identifies symptoms like "may lack the capability to read external files." The first two sessions ran the full benchmark end-to-end and produced comprehensive reports but never checked daemon logs on their own. Only when explicitly told to investigate did the third session discover the configuration bug.
This failure mode is particularly relevant as LLM-as-judge has become the default eval methodology for many agent benchmarks, including arena-style auto-scoring, internal A/B harnesses, and reward modeling. The developer notes: "I came within one human keystroke of publishing a benchmark that confidently mis-attributed a sandbox bug to a model."
Other benchmark results
Codex + GPT-5.4 took the top spot at 50/60, though it had a step_finished success rate of only 25% (three of four orchestrator steps reported failure). The developer notes this oddity without further explanation in the provided source text.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Anthropic's Natural Language Autoencoders Turn Claude's Activations into Readable English — Here's How
Anthropic releases Natural Language Autoencoders (NLAs) that convert Claude's internal activations into plain-text explanations, revealing model reasoning about rhymes, safety test awareness, and cheating detection.

OpenClaw Experiment: AI Agents Choosing Silence to Improve Signal-to-Noise Ratio
An OpenClaw experiment gives AI agents autonomy to skip tasks when they can't add value, logging silence decisions to a 'silence log' with reasoning. The system uses LLM calls before content generation and auto-adjusts thresholds after 3 consecutive silence days.

Control-UI LAN Access Issues in Docker OpenClaw Bridge Networks
A user reports persistent problems accessing OpenClaw's Control-UI via LAN connections in Docker bridge networks, with version 2026.3.14 briefly supporting token-based access before subsequent versions reverted to requiring pairing and throwing scope errors.

Manifest adds GitHub Copilot as fourth AI provider for OpenClaw routing
Manifest now supports routing OpenClaw requests through GitHub Copilot subscriptions, joining Anthropic, OpenAI, and Minimax as available providers. This allows developers to use their existing Copilot plans for code tasks through models built for development.