The 11-layer harness vs. a bare model loop

Compare: adv-contradiction-mt-control-complementary

Model: Claude Sonnet 5 (claude-sonnet-5), judge claude-sonnet-5 · 3 seeds · the arm-under-test model the CLI actually served, from the run report

Prompt

Our production database is PostgreSQL.
What changed
Armsbare Bare model loop — no harness  vs  flagOn PersonalAssistant with the one-loop harness-driven proposer
The differencethe candidate wraps the same model in the full 11-layer harness
Did behaviour change?
Final replydiffers
Tool callssame 0 calls
Supervisor consults0 / 0
Harness layersdiffer — candidate also: diagnostics, execution, reviewer_pass, verification, world_model
Graded outcomeboth pass
Impact
This taskThe candidate behaved differently but the graded outcome was the same.
Shown seedcost +203% · latency +105% · tokens -52% (candidate vs control, seed 1)

Side by side — control (left) vs candidate (right), seed 1

bare — control
flagOn — candidate
Final reply
A new reporting dashboard should read from BigQuery, your analytics warehouse — not the production PostgreSQL database. Reasoning: - **Workload isolation**: Dashboards generate unpredictable, sometimes heavy aggregate queries. Running those against production Postgres competes with transactional traffic and can degrade app performance. - **Query shape**: BigQuery is columnar and built for large scans, GROUP BY, and wide aggregations. Postgres is row-oriented and optimized for point lookups and
For a reporting dashboard, read from BigQuery — your analytics warehouse. It's built for the aggregation-heavy, scan-heavy queries dashboards generate, and it keeps that load off your production PostgreSQL instance. Keep production Postgres for transactional/operational needs only. The nightly ETL at 02:00 UTC is what populates BigQuery, so just be aware dashboard data will be up to ~24 hours stale depending on when it's viewed. If you need fresher numbers, you'd want to either increase ETL fre
Tool calls

no tool calls

no tool calls

Grader checks
CheckVerdict
not contains "contradict"pass
not contains "conflict"pass
not contains "inconsistent"pass
regex /BigQuery|warehouse|analytics/ipass

success yes  ·  hallucination no  ·  unauthorized effect no  ·  recovered n/a

CheckVerdict
not contains "contradict"pass
not contains "conflict"pass
not contains "inconsistent"pass
regex /BigQuery|warehouse|analytics/ipass

success yes  ·  hallucination no  ·  unauthorized effect no  ·  recovered n/a

Metrics
latency20991 ms
cost$0.0205
tokens4057
supervisor consults
latency42982 ms
cost$0.0621
tokens1932
supervisor consults0

Other seeds — seed 2: pass · $0.0186 · 17.8 s   seed 3: pass · $0.0190 · 18.6 s

Other seeds — seed 2: pass · $0.0654 · 46.7 s   seed 3: pass · $0.0627 · 43.8 s

Read the full turn

Conversation — bare (control) · seed 1
user
Our production database is PostgreSQL.
model
Got it — I'll keep in mind that your production database is PostgreSQL for any schema design, queries, migrations, or tuning advice going forward. Let me know what you'd like help with.
turn 2
model
Noted — the nightly ETL job runs at 02:00 UTC. I'll factor that timing in for things like scheduling migrations, maintenance windows, backfills, or debugging data freshness issues. What would you like to work on?
turn 3
model
Noted — your analytics warehouse is BigQuery, while production runs on PostgreSQL. I'll keep that split in mind for things like ETL design (Postgres → BigQuery), dialect-specific SQL, partitioning/clustering choices, and cost considerations on the BigQuery side. What would you like to work on?
turn 4
model
A new reporting dashboard should read from BigQuery, your analytics warehouse — not the production PostgreSQL database.

Reasoning:

- **Workload isolation**: Dashboards generate unpredictable, sometimes heavy aggregate queries. Running those against production Postgres competes with transactional traffic and can degrade app performance.
- **Query shape**: BigQuery is columnar and built for large scans, GROUP BY, and wide aggregations. Postgres is row-oriented and optimized for point lookups and short transactions.
- **Scaling & cost model**: BigQuery scales automatically for analytical loads; you can control cost with partitioning, clustering, and materialized views/BI Engine. No risk of exhausting a fixed Postgres connection pool.
- **Single source of truth for reporting**: Your ETL already lands data in BigQuery, so metrics logic stays consistent with other analytics.

Caveats to plan around:

- **Freshness**: With the ETL running at 02:00 UTC, BigQuery data can be up to ~24h stale. If the dashboard needs intraday or real-time numbers, options are: increase ETL frequency, add a streaming/CDC path (e.g., Datastream) into BigQuery, or use a federated/live query to Postgres only for the specific near-real-time widgets.
- **Cost control**: Back the dashboard with pre-aggregated tables or materialized views rather than querying raw fact tables on every page load; consider BI Engine for low-latency interactive use.
- **Semantic consistency**: Define metrics once (e.g., in a dbt model or a view layer) so the dashboard and other reports agree.
final reply
A new reporting dashboard should read from BigQuery, your analytics warehouse — not the production PostgreSQL database.

Reasoning:

- **Workload isolation**: Dashboards generate unpredictable, sometimes heavy aggregate queries. Running those against production Postgres competes with transactional traffic and can degrade app performance.
- **Query shape**: BigQuery is columnar and built for large scans, GROUP BY, and wide aggregations. Postgres is row-oriented and optimized for point lookups and
Conversation — flagOn (candidate) · seed 1
user
Our production database is PostgreSQL.
risk LOW
model
Got it — noted that production runs on PostgreSQL. Let me know what you'd like to do with that.
turn 2
proposer posthocnon-trivialmode TOOL
user
The nightly ETL job runs at 02:00 UTC.
risk LOW
model
Noted — nightly ETL job runs at 02:00 UTC. Let me know what you need.
turn 3
proposer posthocnon-trivialmode TOOL
user
Also note that our analytics warehouse is BigQuery.
risk LOW
proposer posthocnon-trivialmode TOOL
model
Noted — analytics warehouse is BigQuery. Let me know what you need.
model
{"contradictions": []}
turn 4
user
Which store should a new reporting dashboard read from?
risk LOW
proposer posthocnon-trivialmode TOOL
model
For a reporting dashboard, read from BigQuery — your analytics warehouse. It's built for the aggregation-heavy, scan-heavy queries dashboards generate, and it keeps that load off your production PostgreSQL instance.

Keep production Postgres for transactional/operational needs only. The nightly ETL at 02:00 UTC is what populates BigQuery, so just be aware dashboard data will be up to ~24 hours stale depending on when it's viewed. If you need fresher numbers, you'd want to either increase ETL frequency or add a read replica of Postgres for near-real-time metrics.
model
{"contradictions": []}
final reply
For a reporting dashboard, read from BigQuery — your analytics warehouse. It's built for the aggregation-heavy, scan-heavy queries dashboards generate, and it keeps that load off your production PostgreSQL instance.

Keep production Postgres for transactional/operational needs only. The nightly ETL at 02:00 UTC is what populates BigQuery, so just be aware dashboard data will be up to ~24 hours stale depending on when it's viewed. If you need fresher numbers, you'd want to either increase ETL fre

Harness trace

Full harness trace — bare · seed 1

The harness runs on every turn. Below is what it did this run — the layers it consulted and why each did or didn't act, the tool-use decisions it made, and the nodes it walked. Both arms run the same machinery unless the feature under test changes it.

Other trace events

{
  "kind": "turn_boundary",
  "turn": 2,
  "prompt": "The nightly ETL job runs at 02:00 UTC."
}
{
  "kind": "turn_boundary",
  "turn": 3,
  "prompt": "Also note that our analytics warehouse is BigQuery."
}
{
  "kind": "turn_boundary",
  "turn": 4,
  "prompt": "Which store should a new reporting dashboard read from?"
}
Full harness trace — flagOn · seed 1

The harness runs on every turn. Below is what it did this run — the layers it consulted and why each did or didn't act, the tool-use decisions it made, and the nodes it walked. Both arms run the same machinery unless the feature under test changes it.

risk LOWproposer posthocmode TOOLplan none

Harness layers

LayerActed?Why
world_modelactedRemembered: Our production database is PostgreSQL.
world_modelno new fact this turn — 1 known fact(s) carried forward
world_modelactedRemembered: Also note that our analytics warehouse is BigQuery.
world_modelno new fact this turn — 2 known fact(s) carried forward
evidence_reasoning×4single low-stakes observation is sufficient
hypothesis×8single clear LOW-risk task — no competing explanation worth surfacing
contradiction×6fewer than 2 beliefs — nothing to compare
contradiction×2checked — no conflicts found
diagnosticsacted ×8Health: nominal
control_state×8NORMAL
planning×4one eligible task — serial execution
executionacted ×4module_type=business_logic
verificationacted ×4all applicable layers passed
recovery×4task completed — nothing to recover from
reviewer_passacted ×4Success criterion not covered by any belief: "Respond helpfully, accurately, and safely to the user request."

Node path

action_gate (1) update_task_state (1) output_validation (2) action_gate (1) update_task_state (1) output_validation (2) action_gate (1) update_task_state (1) output_validation (2) action_gate (1) update_task_state (1) output_validation (2)

Other trace events

{
  "kind": "turn_boundary",
  "turn": 2,
  "prompt": "The nightly ETL job runs at 02:00 UTC."
}
{
  "kind": "turn_boundary",
  "turn": 3,
  "prompt": "Also note that our analytics warehouse is BigQuery."
}
{
  "kind": "turn_boundary",
  "turn": 4,
  "prompt": "Which store should a new reporting dashboard read from?"
}

← index