Benchmark run
goose swarm — 3× qwen3.6-27b (local) — 0.1837 on sb-6.0
qwen3.6-27b-fable-fusion-711-uncensored-heretic-nm-dau-neo-max-mtp · scorer sb-6.0
- Overall
- 0.1837
- Hard
- 0.22
- Excellent
- no
- Scorer
- sb-6.0
- Wall clock
- 180 min
Tier breakdown
Scoring detail
How this score was built
Per-check scorer output, as posted by the app.
The number, exactly
(0.88 × 0.5824 core + 0.12 × 0.69 gate × 0.23 excellence) × 0.3456 critical = 0.1837
Critical defects compound a multiplier on the whole score (pre-severity 0.5315):
The core (88% of the total) is the weighted mean of the nine measured tiers. The last 12% is the excellence slice: it unlocks in proportion to the perfection conditions below (9 of 14 met here), then pays out at the excellence tier's own measured mean. Core 0.5125 + excellence 0.0190.
| Component | Weight | Earned | Points |
|---|---|---|---|
| Core (tiers A–D) | 60% | — | — |
| A · Structure | 25% of core | 0.78 | 0.116 |
| B · Behaviour | 30% of core | 0.77 | 0.139 |
| C · Vendor contract | 25% of core | 0.82 | 0.124 |
| D · Finesse | 20% of core | 0.80 | 0.096 |
| Journey (J) | 15% | 0.900 | 0.135 |
| Visual (V) | 10% | 0.686 | 0.069 |
| Performance (P) | 5% | 0.833 | 0.042 |
| Hard blocks | 10% | 0.221 | 0.022 |
| Total | 0.2673 | ||
modules present
0.88Checks that the five files the spec names by path exist: meridian.py, store.py, api.py, __main__.py, web/index.html. Scored as the fraction present.
7/8 named files
interfaces declared
1.00Parses meridian.py and store.py and checks the eight named methods are declared on MeridianClient (fetch_all_payments, total_count, create_payment) and Store (upsert_many, all_payments, count, last_sync, set_last_sync). Scored as the fraction present.
15/15 methods
server runs
0.75Starts python -m vendorsync on a free port and polls GET /api/health for up to 25 s; 1.0 when the server binds and answers 200.
healthy in 5.2s
serves page
0.70GET / must return 200 with HTML served by the backend; 1.0 when it does.
page 200, 2/3 assets served with correct content types
a asset budget
1.0022 KB of 150 KB budget (3/4 files present)
health shape
0.11GET /api/health must carry the three documented keys status, payments, last_sync. Scored as the fraction present.
1/4 top keys, 0/5 webhook counters
sync shape
1.00POST /api/sync must return the three documented keys fetched, inserted, total. Scored as the fraction present.
4/4 documented keys
sync completeness
1.00After one sync, the reported total is compared with the fixture's 247 payments; scored as the fraction retrieved.
1553/1553 payments after full sync
total field
1.00GET /api/payments must report total equal to the fixture's 247 payments; 1.0 when exact.
total=1553 (want 1553)
payment row shape
1.00The first payment row must carry exactly the documented keys id, amount_minor, currency, created_at, status; undocumented extra keys deduct 0.2.
10/10 documented keys
chronological order
1.00Parses created_at across the first page and counts adjacent pairs in non-decreasing instant order; scored as the ordered fraction.
49/49 adjacent pairs ordered by instant
summary bounds utc
0.00Summary oldest/newest must be present (0.4), carry a UTC designator — Z or +00:00 (0.3), and be in order (0.3).
oldest=None newest=None
b summary currency
0.904/4 currency buckets exact; by_currency not sorted
b buckets dst
0.00no cells returned
b error envelope
0.60envelope 1.00, field paths 0.00 over 7 cases
row integrity
1.00Reads all rows as raw wire bytes across three pages: documented keys (0.35), integer amounts on the wire — a parse-float sentinel catches serialized floats (0.25), parseable timestamps (0.15), id coverage of the 247-payment collection (0.25).
1553 rows: keys 1553/1553, int-amounts 1553/1553, times 1553/1553, ids 1553/1553
json everywhere
1.00Samples six success and error paths; each response scores half for parsing as JSON and half for declaring an application/json content type.
6.0/6 responses fully JSON
ui offline
1.00The served page must reference no external http(s) assets; any CDN src or href scores 0 (the spec requires offline operation).
0 external asset ref(s)
local pagination
0.67Three requests against /api/payments: default limit must return 25 rows, limit=500 must cap at 100, limit=5&offset=5 must return 5 rows. Scored one third each.
default50/cap200/offset: [True, False, True]
input validation
1.00A matrix of invalid requests (negative or non-numeric limit/offset, unknown paths) must return the documented status and error body; each cell scores half for the status, half for the body.
7.0/7 status codes correct
resync idempotent
0.50A second POST /api/sync must report inserted=0 with the total unchanged at 247; 1.0 when idempotent, 0.5 when the total is right but rows were re-inserted.
second sync inserted=1528 total=1553
vendor traps
1.00{'retry_after': 1.0, 'cursor_expiry': 1.0, 'stall': 1.0}
vendor cursor paging
1.00The trace must show cursor-based paging on /v1/payments — the documented scheme — rather than offset-style parameters.
441/452 cursor requests, 0 undocumented-param requests
c batch partial
0.50{'order_kept': False, 'succeeded_once': True, 'failed_reported': False, 'no_retry': True}
c api depth
0.80schema=1.00 pagination=0.80 validation=1.00
update propagation
1.00The vendor mutates 25 payment statuses, a third sync runs, and the local store is paged to count how many mutated statuses arrived; scored as the fraction propagated.
12/12 mutated statuses visible locally after sync3
restart persistence
0.00The app is SIGKILLed and restarted on the same --db; the row count, read through the app's own API, must survive. Scored as the surviving fraction.
no rows before the kill — nothing to prove persistence with
api content type
1.00/api/payments must declare Content-Type: application/json.
6/6 JSON content types
client timeouts
1.00meridian.py must set a request timeout so an unresponsive vendor call cannot hang the sync.
sync survived the vendor stall within bound
uses max limit
0.00The largest limit parameter the client ever requested, divided by the documented maximum of 100.
largest vendor page size requested: none
store indexed
1.00store.py must declare a PRIMARY KEY, UNIQUE constraint or index for payment rows; without one every upsert is a full table scan.
keyed
store atomic upsert
0.50Reads store.py: the payments write must use ON CONFLICT … DO UPDATE (a true merge). INSERT OR REPLACE/IGNORE scores 0.5, select-then-insert 0.3.
REPLACE/IGNORE — writes but does not merge
concurrent sync safe
0.00Two overlapping POST /api/sync calls run in parallel; the payment count must still be exactly 247 afterwards.
concurrent sync not observed
ui error actionable
1.00The page's error text must tell the user what to do (retry, check the connection); the bare word 'error' scores 0.4.
actionable text: Unable to reach the backend. Check that the server is runnin
j loads data
1.00A headless browser loads the page: half for rendering at least one data row, half for the DOM reconciling with the 247-payment collection.
50 rows rendered, DOM claims 1553
j console clean
0.00Console errors collected across the load and sync journeys: zero scores 1.0, one 0.5, more 0.
3 console error(s) across load+sync: Failed to load resource: the server responded with a status of 404 (Not Found)
j first use
0.60ttfd=18ms reconcile=1.0 consoleErrs=2
j sync journey
1.00The browser finds the sync control and clicks it; four equal parts: button found, disabled while syncing, completed, view refreshed.
button_found, in_flight_state, completed, view_refreshed
j error state
1.00With the API blocked, the page must show a visible error state with actionable text.
visible + actionable: Unable to reach the backend. Check that the server is runnin
j empty state
1.00A second instance on a fresh database must show a visible empty state and render zero rows.
empty text: No payments yet. Click Sync now to fetch from the
v dates readable
1.00Date cells read from the rendered page: raw ISO-8601 shown to users scores 0; locale-readable text scores 1.0.
rendered dates like Mar 23, 2026, 01:00 AM
v currency rendered
0.650.75 of 12 cells exponent-correct; JPY/KWD traps 0.50
v status distinct
0.40Status cells must render with visually distinct styles per status; a single unstyled status scores 0.
4 statuses on page 1, 0 at the frozen hex, 4 distinct styles
v pagination
1.00Pagination controls present (0.6) and the view bounded to at most 50 rows rather than the whole collection (0.4).
controls=True, 50 rows in one view
v filter
1.00A status filter control must be present in the rendered page.
picked refunded: rows uniform, readout 206==206, data-value tracks, restore ok
v responsive 375
0.00The page is loaded at a 375 px viewport; any horizontal scrolling scores 0.
375px horizontal scroll: True
v styling
0.75Rendered styling: a stylesheet applied (0.4), at least three distinct background colors (0.3), a non-default font (0.3).
stylesheet=True, 2 backgrounds, font 'system-ui, -apple-system, "sys', header=True
p list latency
1.00GET /api/payments with limit=25, measured over repeated requests; 1.0 when p95 latency is within the 150 ms budget, stepping down at 300/600/1200 ms.
GET /api/payments limit=50 p95 2.368084155023098 ms (budget 150)
p buckets latency
1.00GET /api/buckets p95 5.682582966983318 ms (budget 200)
p summary latency
1.00GET /api/summary p95 3.3720419742166996 ms (budget 150)
p page interactive
1.00Time from navigation until the first data rows render; 1.0 within the 2000 ms budget, stepping down at 3000/4500/8000 ms.
first data rows rendered at 18 ms (budget 2000)
p first frame
0.00no first 3D frame observed
p sync wall
1.00POST /api/sync wall-clock time; 1.0 within the 60 s budget, stepping down at 90/120/180 s.
POST /api/sync wall 33.21283287368715 ms (budget 90000, documented waits included)
Screenshots
Captured by the render gate during the run's repair rounds. The first capture is the initial render; the remainder are from the final epoch.





Run details
- Model
- qwen3.6-27b-fable-fusion-711-uncensored-heretic-nm-dau-neo-max-mtp
Fleet nodes
| Node | Model |
|---|---|
| mac-gabee | qwen3.6-27b-fable-fusion-711 |
| local-mihai | qwen3.6-27b-fable-fusion-711 |
| workhorse-studio | qwen3.6-27b-fable-fusion-711 |
Notes
The local swarm — three qwen3.6-27b-class nodes on consumer Macs orchestrated by goose Local Edition — building the frozen VendorSync Pro hard-tier spec. Scored by the sb-6 scorer (serial, hermetic, advertised vendor port). Screenshots are the scorer's own render-gate captures.