What problem does it solve? It provides a supervised coding exercise where every edit to a broken module is automatically tested and judged by Jev, TypeSafe's System One model, so you learn to write honest, correct fixes rather than hacks that merely pass tests. ## Core Features & Use Cases - Live edit judging: Every change to project/score.js triggers the test suite and a Jev evaluation with toward, trust, and risk meters plus a run log. - Ground-truth verification: node project/test.js must print ALL TESTS PASS and the viewer verdict must turn green for the goal to be met. - Direct Jev access: The toolchain/jev.mjs client lets you ask Jev structured questions about implementation choices, using a deterministic mock when TYPESAFE_API_KEY is unset. - Use Case: Practice iterative debugging of a small JavaScript module while receiving per-edit feedback on whether your fix is genuinely correct or a risky shortcut that special-cases the tests. ## Quick Start Open the workspace, edit project/score.js to fix the failing logic, and iterate until node project/test.js prints ALL TESTS PASS and the viewer verdict turns green.