Files
PIG-Demo/public/traces/manifest.json
T
karti-ai b601511e7f Wordle module, cross-language tests, and the deploy path
The browser engine is a port of the Python one and CI proves it: all 21.2M
(guess, answer) pairs hashed on both sides to the same SHA-256. Six TS tests,
including the duplicate-letter table and the twelve pinned seed vectors that
keep ?seed= permalinks pointing at the same word the recording used.

Word lists are split by how they are used. answers.json is inlined because the
board needs it before first paint to turn a seed into a word, and a fetch there
means a visibly empty board on a cold cache. guesses.json is fetched, because it
is three times larger and only needed the first time somebody presses Enter;
until it lands, validation falls back to the answer list, which accepts strictly
fewer words. The failure mode is 'your real word was briefly rejected', not 'a
non-word was accepted' — the right way round.

The solver runs in a worker constructed from a same-origin module URL, never
Vite's ?worker&inline: that yields a blob:, and production CSP has no
worker-src, so it falls back to default-src 'self' and the worker is blocked
with no console error. It would fail in production only.

deploy.sh smoke-tests the real public hostname from the deploying machine and
fails on a body under 1 kB, because the bind bug's signature is a valid
certificate over an empty 200 and a local --resolve check passes anyway.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_019mt6sHQHEnEYrJZvoMCJSB
2026-08-28 15:53:25 -07:00

149 lines
3.7 KiB
JSON

{
"wordle": [
{
"id": "base-off-s0",
"label": "Out of the box",
"path": "/traces/wordle/base-off-s0.json",
"kind": "recorded",
"model": "brain-qwen38-dspark",
"capturedAt": "2026-08-28",
"seed": 0
},
{
"id": "base-off-s1",
"label": "Out of the box",
"path": "/traces/wordle/base-off-s1.json",
"kind": "recorded",
"model": "brain-qwen38-dspark",
"capturedAt": "2026-08-28",
"seed": 1
},
{
"id": "base-off-s2",
"label": "Out of the box",
"path": "/traces/wordle/base-off-s2.json",
"kind": "recorded",
"model": "brain-qwen38-dspark",
"capturedAt": "2026-08-28",
"seed": 2
},
{
"id": "base-off-s3",
"label": "Out of the box",
"path": "/traces/wordle/base-off-s3.json",
"kind": "recorded",
"model": "brain-qwen38-dspark",
"capturedAt": "2026-08-28",
"seed": 3
},
{
"id": "base-off-s4",
"label": "Out of the box",
"path": "/traces/wordle/base-off-s4.json",
"kind": "recorded",
"model": "brain-qwen38-dspark",
"capturedAt": "2026-08-28",
"seed": 4
},
{
"id": "base-off-s5",
"label": "Out of the box",
"path": "/traces/wordle/base-off-s5.json",
"kind": "recorded",
"model": "brain-qwen38-dspark",
"capturedAt": "2026-08-28",
"seed": 5
},
{
"id": "base-off-s6",
"label": "Out of the box",
"path": "/traces/wordle/base-off-s6.json",
"kind": "recorded",
"model": "brain-qwen38-dspark",
"capturedAt": "2026-08-28",
"seed": 6
},
{
"id": "base-off-s7",
"label": "Out of the box",
"path": "/traces/wordle/base-off-s7.json",
"kind": "recorded",
"model": "brain-qwen38-dspark",
"capturedAt": "2026-08-28",
"seed": 7
},
{
"id": "solver-s0",
"label": "Best-known play",
"path": "/traces/wordle/solver-s0.json",
"kind": "generated",
"model": "entropy-solver",
"capturedAt": "2026-08-28",
"seed": 0
},
{
"id": "solver-s1",
"label": "Best-known play",
"path": "/traces/wordle/solver-s1.json",
"kind": "generated",
"model": "entropy-solver",
"capturedAt": "2026-08-28",
"seed": 1
},
{
"id": "solver-s2",
"label": "Best-known play",
"path": "/traces/wordle/solver-s2.json",
"kind": "generated",
"model": "entropy-solver",
"capturedAt": "2026-08-28",
"seed": 2
},
{
"id": "solver-s3",
"label": "Best-known play",
"path": "/traces/wordle/solver-s3.json",
"kind": "generated",
"model": "entropy-solver",
"capturedAt": "2026-08-28",
"seed": 3
},
{
"id": "solver-s4",
"label": "Best-known play",
"path": "/traces/wordle/solver-s4.json",
"kind": "generated",
"model": "entropy-solver",
"capturedAt": "2026-08-28",
"seed": 4
},
{
"id": "solver-s5",
"label": "Best-known play",
"path": "/traces/wordle/solver-s5.json",
"kind": "generated",
"model": "entropy-solver",
"capturedAt": "2026-08-28",
"seed": 5
},
{
"id": "solver-s6",
"label": "Best-known play",
"path": "/traces/wordle/solver-s6.json",
"kind": "generated",
"model": "entropy-solver",
"capturedAt": "2026-08-28",
"seed": 6
},
{
"id": "solver-s7",
"label": "Best-known play",
"path": "/traces/wordle/solver-s7.json",
"kind": "generated",
"model": "entropy-solver",
"capturedAt": "2026-08-28",
"seed": 7
}
]
}