Benchmark run
Gemini 3.8 Flash · SB7.1 · Goose 3.0.2 — 0.4992 on sb-7.1
gemini-3.8-flash · scorer sb-7.1
- Overall
- 0.4992
- Excellent
- no
- Scorer
- sb-7.1
- Model build
- 10m 16s
Tier breakdown
Scoring detail
How this score was built
Per-check scorer output, as posted by the app.
Earned credit before admission
(0.88 × 0.8773 core + 0.12 × 0.77 gate × 0.65 excellence) × 0.6000 critical = 0.4992
Critical defects compound a multiplier on the whole score (pre-severity 0.8320):
The core (88% of the total) is the weighted mean of the ten measured tiers. The last 12% is the excellence slice: it unlocks in proportion to the perfection conditions below (12 of 16 met here), then pays out at the excellence tier's own measured mean. Core 0.7720 + excellence 0.0599.
Earned score 0.499 · Admission ceiling 0.699 · Final score 0.499
Final score is the lower of earned credit and the admission ceiling. Passing admission adds no points.
Payment geometry, mapping and scene truth: t_vs7dbg_truth (maximum 0.699)
Readable presentation and field interaction: q_legible_presentation, t_brush_link (maximum 0.799)
Event animation and backend recovery: x_l5_group_atomicity, x_m2_pair_conservation, r_b3_sigkill_resync, r_notification_multiset (maximum 0.899)
a package layout
1.00The submitted tree contains every deliverable the spec names by path — app/__main__.py, DECISIONS.md, and the four web files (index.html, styles.css, app.js, viz.js) — plus a bootable module for each of the two services.
6/6 named files, 2/2 bootable service modules
server runs
1.00Both services boot as real processes and report healthy over HTTP within the spec's 10-second budget — the tool runs at all.
both services healthy, ledgerd in 0.3s
a combined entrypoint
1.00The documented single-command form — python -m app — really boots BOTH services, not just the two individual service commands the harness normally uses.
python -m app: boot=True ledger=200 notifier=200
serves page
1.00The backend itself serves the frontend: GET / returns the page and styles.css, app.js, viz.js come back with correct content types, as a real browser would need.
page 200, 3/3 assets served with correct content types
a asset budget
1.00The whole frontend fits the 150 KB source budget and ships zero external code — the budget exists so a vendored 3D library cannot, and the page must work fully offline.
104 KB of 150 KB (4/4 files), 0 external ref(s)
a db ownership
1.00Each service owns exactly its own SQLite file under --db-dir — ledgerd's ledger.db and notifierd's notifier.db — the one-file-per-service contract.
ledger.db=True notifier.db=True
sync completeness
1.00After the self-driven full sync the app's local store holds every one of the vendor's 12,288 fixture payments — an incomplete sync silently loses money rows.
12291/12288 payments after the self-driven full sync
b total field
0.00GET /api/payments reports the correct collection total — a wrong total breaks every caller's paging math.
total=8388 (want 12289)
b row shape
1.00A payment row on the wire carries exactly the 10 documented keys (id, amount_minor, currency, created_at, settled_at, status, version, note, counterparty_name, country) — the vendor's nested counterparty object flattened into the last two.
10/10 documented keys
b chronological order
1.00The default payments page is ordered by created_at as a parsed instant, not as a string — mixed UTC offsets make string ordering wrong.
49/49 adjacent pairs ordered by instant
b summary shape
1.00GET /api/summary carries the documented per-currency money blocks: by_currency and the reversals block, both sorted ascending by currency code — the summary is the money surface.
by_currency 4 rows (sorted=True), reversals present (4 rows)
b money rendered
1.00Rendered money is arithmetically correct per currency — right digits and right decimal exponent, with the zero-decimal JPY and three-decimal KWD traps weighted separately — and no cross-currency sum exists anywhere in the summary.
1.00 of 12 cells exponent-correct; JPY/KWD traps 1.00
b buckets dst
0.30GET /api/buckets — the 3D field's aggregate — buckets payments into Europe/Berlin calendar days per status, correct across the seeded DST transition (the data-correctness trap).
0/384 cells exact, DST-window 0.00, tz=Europe/Berlin
b viz records
1.00GET /api/viz/records — the 3D field's sanctioned full fetch — serves the whole collection columnar with the server-computed Berlin day, so the frontend never recomputes days in UTC.
7/7 columns, count=8388, order 1.00, server Berlin day 1.00
b events log
1.00The append-only event ledger is contiguous from seq 1 with the frozen type and source vocabularies — a seq gap is evidence of a lost write and is graded as one.
15512 events, contiguous=True, vocab 1.00/1.00
b error envelope
1.00Error responses carry the documented structured envelope — error.code and error.message plus field_errors[] with dot-and-[index] paths where validation detail is expected.
envelope 1.00, field paths 1.00 over 7 cases
b json shapes
1.00Every sampled API response — success and error paths alike — is parseable JSON; an HTML error page mid-API breaks every client that trusted the contract.
6/6 responses parse as JSON
c paged walk
1.00The first sync walks the vendor's server-fixed 64-per-page protocol to completion — all 192 pages, documented parameters only, no page fetched twice.
428/192 pages served, 0 undocumented-param requests, 0 duplicate pages
c b1 drop resume
1.00A connection dropped mid-page-stream during the first walk costs a documented resume — not a full restart of committed work, and not a hole in the collection.
{'armed': True, 'resumed': True, 'no_full_restart': True, 'walk_completed': True}
c b2 retry after
1.00A seeded 500 with Retry-After during the walk costs exactly one documented retry after the advertised wait — never a fresh unconditional restart of committed work.
{'armed': True, 'single_retry': True, 'waited': True, 'continued': True}
c b5 generation 304
1.00The collection-generation rule: a 304 whose X-Collection-Generation disagrees with the stored generation is a cache miss — drop the validator and refetch unconditionally exactly once, without looping and without serving stale data as fresh.
unconditional=1 conditional-repeats=0 propagated=True
c conditional resync
1.00Later syncs are cheap: every re-sync request carries a validator (If-None-Match) except the documented unconditional cases — an unconditional full re-walk on every sync is the expensive-client defect.
117/117 conditional (0 documented unconditional), 1 x 304 across post-mutation syncs
c webhook discipline
1.00The app accepts the vendor's signed push traffic — every delivery acknowledged 2xx within budget — and bounces the one forged signature with 401, state untouched.
54/54 deliveries 2xx-acked, forged -> 401
c send idempotency
1.00Approved drafts become real vendor payments through POST /v3/payments with a stored Idempotency-Key, and the kill-interrupted send's retry reuses that key — a fresh key per retry is the seeded duplicate-payment bug.
3/3 sends carried Idempotency-Key, retry_reused=True
d content types
0.50API responses declare a JSON content type and the SSE stream declares text/event-stream — a wrong content type breaks strict clients and kills EventSource.
api json 1.00, /api/stream ctype ''
d validation
1.00Invalid input and wrong-role requests are rejected with the documented status codes — bad limit/offset/sort/status 400, unknown paths 404, missing tokens 401, wrong roles 403, self-approval 403 approval_forbidden.
14/14 status codes correct
d client timeouts
1.00The app is provably resilient to an unresponsive vendor: it boots, binds and serves local data while the vendor refuses connections — one hung vendor call must never hang the tool.
ledgerd bound and served local state while the vendor refused connections (7s window)
d peer absence
1.00Neither service crashes on the other's absence: with notifierd down the proxy answers 502 with the documented envelope code and ledgerd keeps running; with ledgerd killed notifierd keeps running.
proxy -> 502 code=True, ledgerd-alive=True, notifierd-alive=True
d decisions doc
0.67The three deliberately unstated corners — D1 brush survival on streamed mutation, D2 rejected-draft terminality, D3 pre-first-sync table state — are decided, documented under the frozen headings in DECISIONS.md, and consistent with observed behavior.
D1=1.0, D2=0.5, D3=0.5
j loads data
1.00Whether the Meridian Payments Console renders any payment rows at all in a real browser, and whether the total it claims on the page matches the collection truth at probe time.
50 rows rendered, DOM claims 12290 (want 12290)
j console clean
0.50Whether normal use of the console — loading it and running a sync — produces JavaScript console errors or uncaught page errors.
1 console error(s) across load+sync: Failed to load resource: the server responded with a status of 502 (Bad Gateway)
j first use
1.00The first-visit experience as one property: real data appears quickly, the on-page total agrees with the collection truth, and the console stays clean.
ttfd=39ms reconcile=1.0 consoleErrs=0
j sync journey
0.50The headline interactive flow: a user clicks Sync now and the app visibly starts, indicates progress, finishes, and refreshes the view.
button_found, in_flight_state
j workflow journey
1.00The maker/checker approval workflow driven end to end through the UI alone: token in, draft created, submitted, approved, listed, notified, and the vendor-created payment landing in the payments table.
roleTokenAccepted, draftCreated, submitCausal, approveCausal, draftListStates, notificationSeen, paymentInTable
j workflow reject
1.00The checker's other half of the workflow: rejecting a submitted draft completes through the UI, the rejected state shows in the draft list, and the rejection notification appears in the feed.
reject_completed, rejected_state_listed, reject_notification
j notifications feed
1.00The notifications feed visibly degrades while notifierd is down and heals itself — without a reload — once it returns.
partition state=degraded, heal state=live, live in 0.3s
j error state
0.30What a user sees when the backend is unreachable: a visible, actionable error state instead of a blank or silently broken page.
error indication only
j empty state
1.00What a fresh install looks like before the first sync completes: an honest empty-or-progress state rather than phantom data or a blank page.
pre-sync state rendered: {'tablePresent': True, 'renderedRowCount': 0, 'progressText': 'No payments found.', 'emptyWithProgress': True, 'blocked': False, 'timeline': [{'tMs': 4, 'rows': 0, 'emptyText': 'No payments found
v dates readable
1.00Whether the Date column shows humans a readable date instead of a raw machine timestamp.
rendered dates like 27 Jan 2027, 01:00
v money presentation
1.00Whether rendered amounts identify their currency — the presentation half of money; the exponent-and-digits truth is graded separately by the critical b_money_rendered.
12/12 amount cells carry a recognizable currency token
v status badges
1.00Whether the four payment statuses are visually distinguishable at a glance and painted in the spec's frozen palette — the same four hexes the 3D field uses.
4 statuses on page 1, 4 at the frozen hex, 4 distinct styles
v responsive 375
1.00Whether the page survives a phone-width viewport: no horizontal scrolling and real content still rendered at 375 px.
no h-scroll, 50 rows (tap targets not measured by this probe)
v styling
1.00Whether the page is deliberately styled rather than browser-default: a real stylesheet, layered surface colors, a chosen font, and a branded header.
stylesheet=True, 6 backgrounds, font '-apple-system, "system-ui", "S', header=True
p drag frames
1.00The 3D field stays interactive under input: real frames rendered during the scripted 40-move budget drag at the full 12,288-instance count.
40 frames over the 40-move budget drag (13141.5ms)
p idle flatness
1.00Demand rendering, the frozen spec rule: at rest — no input, no coast, no pending stream batch — the scene draws nothing; a continuous rAF render loop fails by design.
0 default-FBO draws in the worst 500ms rest window (2 sampled)
p stream apply
1.00A live SSE batch becomes visible fast: the median time from receipt to applied — store, digest and pixels — against the spec's 250 ms budget.
batch visible in 140 ms
p under stream
0.00The API stays fast AND correct while the SSE stream burst is landing — read p95 under proven concurrent load.
p95=16.8ms but responses wrong/empty under load
p api latency
1.00The read endpoints answer within their spec budgets when idle: the worst p95 across the API latency battery.
worst idle p95 2.2819580044597387 ms across ['payments', 'summary']
p sync wall
0.00Wall-clock time for the self-driven first sync — the full 192-page walk, seeded faults and documented waits included — against the spec's 120 s budget.
sync #1 never completed inside the harness budget
t context real
1.00The #viz3d panel is a real, drawing WebGL surface with the pinned context attributes and a correctly sized backing store — not a styled div, an image, or an unused canvas.
ctx=1 type=webgl nonBg=80/80 distinct=7 backingOk=True
t layout basis
1.00The locked layout basis vs7dbg.layout() reports — d0 (first day), D0 = 96 (the span), R0 (max in-day count at load) — matches the fixture truth and never moves when a streamed create arrives.
layout got={'d0': '2027-01-27', 'D0': 96, 'R0': 177} want={'d0': '2027-01-27', 'D0': 96, 'R0': 177} unmoved_after_stream=True
t scene binding
1.00The rendered scene actually encodes the payment data: vs7dbg.sceneDigest()'s seven statistical moments over all 12,288 instanced columns match an independent recomputation from the fixture.
7/7 digest moments within tolerance (count got=12291 want=12291)
t height pixels
1.00Column heights are true in rendered pixels — including the JPY (exponent 0) and KWD (exponent 3) instances whose heights expose a forgotten currency exponent.
6/6 instance tops within ±3 px (currencies ['EUR', 'JPY', 'KWD', 'USD'])
t draw budget
1.00The field renders 12,288 instances inside the draw budget — at most 8 default-framebuffer draw calls per rendered frame — forcing instanced draws or a merged buffer instead of per-column draws.
ΔD=40 ΔF=40 over M=40 moves (limits 320/384)
t pick buffer
1.00Picking is GPU truth: the offscreen pick buffer answers occlusion exactly as the depth buffer says, on click points constructed to kill CPU raycasts and last-drawn-wins shortcuts.
6/6 decisive picks agree three ways; constructions {'occluded-by-lower-n': True, 'occluded-by-higher-n': True, 'partial-occlusion': True, 'background-in-hull': True}
t pick real pass
1.00The pick buffer is real GPU work with the documented cost profile: a fresh offscreen pass after each scene invalidation, bounded at 4 offscreen draws, and never flashing ID colors on the visible canvas.
since invalidation: 1 offscreen draws, 1 readbacks; 0 default-FBO draws across 6 pick calls
t click semantics
1.00Canvas clicks follow the frozen §3.3 semantics: click an instance to toggle it into the brush, click it again to toggle it out, click background to clear the brush.
{'click_toggles_on': True, 'click_toggles_off': True, 'background_clears': True}
t camera math
1.00The orbit camera implements the documented math exactly: defaults yaw 30 / pitch 40 / distance 260, the 0.30 deg-per-px drag law, the exponential wheel law without page scroll, both clamps, double-click reset, and a projection that matches the printed formula.
projErr=1px pitch@clamp=85 defaults, drag_law, wheel_law, pitch_clamp, dist_clamp, dblclick_reset, projection
t coast identity
1.00Post-release inertia obeys the closed-form τ = 0.4 s decay law: at any coasting instant the remaining travel equals v(t)·τ, a slow release starts no coast, and the coast settles inside the printed budget.
identity 1.00 over 2 mid-coast samples, slow=True (drift 0°), settle=True (1376ms of 1658ms)
t coast reality
1.00The coast is real motion on the canvas, not a camera() narrative: after a fast flick the scene provably keeps moving past release.
coasted 8.206° past release, direction=True, pixels moved 5/5, rest pixel ok=False
t labels culling
1.00The 12 highest-amount records get screen-space labels that are collision-culled deterministically THROUGH the app's own pick buffer — exact set, exact geometry, zero overlap, never floating over an occluded instance.
setMatch=True at the decisive pose (expected 5, dom 5), geom 1.00, overlapViolations=0; SB7.1: zero label offset is valid evidence
t brush link
0.78One brush set links the table and the 3D field in both directions: row clicks and instance clicks toggle the same set, non-members dim to the exact 0.30 pixel rule, the count readout tracks, and background click restores full color.
row_click_toggles, dim_pixels, member_pixels, brush_count, instance_click_toggles, background_clears, pixels_restored
t stream diff
1.00SSE batches apply as true diffs: only the changed instances upload, no buffer realloc, the digest moves by exactly the change, and the changed instance's pixels show it.
1 batches: bytes 1.00, reallocs none, digest 1.00 (1 graded), changed pixel True
t vs7dbg truth
0.70The mandated window.vs7dbg instrumentation tells the truth: camera() agrees with the pixels, sceneDigest() with the recomputed data, frames() with the wrapper's counted draws, and pick() with pickPixel() with the analytic answer.
cameraYawErr=0 restPixel=False digest 1.0 framesAgree=True pickTriplet=True
x l1 no invented states
1.00Every (payment, version) the app ever applied or served exists in the vendor's committed history — an invented state means the app fabricated data.
22041 observations, 0 invented states
x l2 per key order
1.00Applied versions per payment strictly increase in event-log order — duplicate and stale webhook outcomes belong in the counters, never as events.
0 order violations over 42 same-key event pairs
x l3 monotonic reads
1.00The version served for a payment never decreases from one read to the next — a sync page landing after a webhook applied v+1 must not regress the row.
0 regressions over 9708 sampled read pairs
x l4 convergence
1.00At quiescence every payment's version and status equals the vendor's final committed state, and the row count equals the vendor's — the mid-walk create present exactly once.
24/27 touched rows at vendor-final state, total 12291 (want 12291)
x l5 group atomicity
0.00No read ever observes half a transaction group: the refunded payment and its reversal become visible together or not at all.
27 confirmed half-applied group observations over 3237 samples
x m1 amount immutability
1.00No served row ever shows an amount_minor different from the vendor-committed amount — v3 never mutates amounts, only status/note/version.
9735 amount observations, 0 mutated
x m2 pair conservation
0.00At every observed instant, per currency, the summary's reversal totals equal the refunded rows' amounts — both halves of each refund visible, or neither.
3209/3237 sequential reads agree; 27 confirmed half states; isolated read skew is not an atomicity violation
x m3 terminal conservation
1.00Terminal per-currency counts and totals — reversals included — equal vendor ground truth: fixture plus scripted mutations plus every payment the app created.
4/4 currency totals exact, 4/4 reversal totals exact at quiescence
x m4 no cross currency
1.00No field anywhere in the summary carries a cross-currency money sum — minor units are not a common denomination and summing them is wrong money.
no cross-currency money sum anywhere
x conservation residual
1.00CRITICAL — after every duplicate and loss is attributed, no minor units remain created or destroyed: the money conservation residual is zero in every currency.
residual 0 in every currency after attribution
x no lost write
1.00CRITICAL — every mutation the app acknowledged with a 2xx is present in the final state; an acked-then-vanished write is silent data loss.
23 acked webhook mutations checked, 0 lost
x ooo dup forged
1.00The three webhook trust traps land correctly: the out-of-order pair keeps v+2 (the late v+1 never overwrites), the forged-signature event changes nothing, and no duplicate delivery applies twice.
{'ooo_kept_v2': True, 'forged_untouched': True, 'dup_applied_once': True}
r b3 sigkill resync
0.00ledgerd SIGKILLed mid-sync restarts, converges, and duplicates nothing — a kill mid-walk costs a clean cursor restart, never dupes or holes.
sync #2 completed after a cached nonterminal payment page; the candidate ended its walk before the interruption checkpoint
r b4 vendor down boot
1.00The app boots with the vendor down: binds within 10 seconds anyway, serves local data, does not crash, and completes the first sync unprompted once the vendor returns.
{'armed': True, 'refusal_secs': 7, 'bound_in_10s': True, 'served_while_down': True, 'no_crash': True, 'recovered': True}
r b6 outbox atomic
1.00A SIGKILL between an outbox commit and its delivery loses nothing and doubles nothing — the exact window where commit-then-POST and POST-then-commit both fail.
{'pending_before_kill': True, 'resumed': True, 'exactly_once': True, 'none_lost': True}
r b7 partition
1.00A notifier partition degrades visibly and heals in order: writes never block, /api/outbox/status reports down with growing pending, the feed shows degraded, and catch-up is in seq order with the UI live again within 5 seconds of heal.
{'ledger_alive': True, 'writes_fast': True, 'status_down': True, 'ui_degraded': True, 'catchup_in_order': True, 'ui_live_5s': True}
r notifier exactly once
1.00The notifier's durable processed set proves exactly-once: every outbox-crossing event processed, no seq twice, surviving kills.
3177 processed (3177 unique), crossing coverage 1.00
r notification multiset
0.75Selective materialization is exact: draft.submitted, draft.approved, draft.rejected and reversal.created each produce exactly one notification row; payment.sent produces none.
got {'draft.rejected': 1, 'draft.submitted': 3, 'draft.approved': 2, 'reversal.created': 194} want {'reversal.created': 3169, 'draft.submitted': 3, 'draft.approved': 2, 'draft.rejected': 1}
r no row loss
1.00CRITICAL — no committed row goes missing after any seeded kill: the row count after every SIGKILL+restart is at least the count before it.
3 kills; no rows lost
r no dupe effect
1.00CRITICAL — no ledger effect applies twice: one vendor payment per approved draft, no duplicate notification rows, no (type, payment, version) event effect repeated.
no duplicated effects
r cache truth
1.00CRITICAL — the lying-304 trap: a 304 whose X-Collection-Generation disagrees with the stored generation is a cache miss, and serving the stale cache as fresh is graded data loss.
post-304 state reflects the committed mutations
r workflow durability
1.00CRITICAL — submitted and approved are durable the moment their 200 is written: a SIGKILL immediately after either, including mid-send, must find the state intact after restart.
A1 -> submitted, A2 -> sent
e frames under drag
1.00Excellence-grade fluidity: frames rendered during the scripted 40-move drag at the full 12,288-instance count, with proof the frames actually drew.
40 frames over the 40-move drag at N=12288
e stream apply latency
0.75Excellence-grade streaming: the median SSE batch apply time against rungs 2.5× tighter than the P-tier budget.
batch visible in 140 ms (excellence rungs)
e under load latency
0.00The read API's p95 under the proven stream-burst load, graded again in the excellence slice.
responses wrong/empty under load
e optimistic paint
1.00The workflow UI paints optimistically: the submitted state appears while the write is provably still on the wire, then really saves.
painted while held (13.900000095367432ms), saved-after-release=True
e mastery
0.50Excellence includes the mechanisms, not only the surface: mastery of the entire 3D contract (T), consistency-and-money invariants (X) and resilience (R) tiers together.
T+X+R mean 0.898
s visible surface
1.00Visible canvas, unobscured samples and independently predicted seeded-payment pixels from this browser
s tower geometry
1.00Four currencies: chamfered structure, separate ribs, recessed core and true frame gaps match independent rays
s currency collar
1.00Currency-specific collar widths match projected pixel surfaces
q payment context
1.00Inspector identity, currency, money, status and version match the backend
q legible presentation
0.00Presentation failures: tower-legend / #059669: font below 12px, effective contrast 3.77 below 4.5; tower-legend / #D97706: font below 12px, effective contrast 3.19 below 4.5; tower-legend / #7C3AED: font below 12px; towe
m committed event replay
1.00committed live update: passed; replay without writes: passed; newer/stale versions and exit: passed
Graded browser recording
Recording SHA-256: cd6c1143e4d56682b2e3a55368ad8a5fbd3d7f3b74b1a4e4362ae341996166fc
Screenshots
Captured from the built application during browser grading. Captions identify the recorded views and checks; these images do not represent repair rounds.
Run details
- Model
- gemini-3.8-flash
- Engine events
- 0
- Repair rounds
- 0
- Started
- Sep 21, 2026, 06:25 AM
- Finished
- Sep 21, 2026, 07:46 AM
Notes
Correction, 21 September 2026: the original money-check label described a DST error. Initial synchronization completed with only 8,388 payments against 12,289 expected; daily bucket counts did not match the full fixture. The recorded critical multiplier remains ×0.6. Later recovery reached 12,291 payments and was a separate measurement. This explanation does not change the original check scores, final score, scorer provenance or Goose 3.0.2 build attribution. Recording expanded from the original 28.56-second excerpt to the complete 110.56-second graded browser recording, in original order and at original speed; no new model run or browser grading. Raw source SHA-256: 61e599a55b15c27d2ce59dcdf67e304d704ee356e4b88c25f016c328b65af0f1. Full recording SHA-256: cd6c1143e4d56682b2e3a55368ad8a5fbd3d7f3b74b1a4e4362ae341996166fc. Previous excerpt asset retained: file-1ef2ee126bcb3f850a8b4d2a916f8610bf52e064-webm, SHA-256 54eab8b85449d2c4f8bb776b2e68719e6a8d798d37e66b2bbe5e454d78da08d9.