Read & learn
Written guides.
Understand Jev, one idea at a time. Walkthroughs, recipes, and writeups — our notes first, the original next.
A public registry · independent & community-run
Learn, build, and play with Jev — from deep technical guides to creative experiments.
Read & learn
Understand Jev, one idea at a time. Walkthroughs, recipes, and writeups — our notes first, the original next.
Watch & learn
See an idea take shape. Tutorials, demos, and deep dives, organized by topic and credited to their creators.
Make & explore
See what builders made with Jev. Games, tools, repositories, articles, and more — traced to their sources.

Every category, from games and tools to repositories and writeups, traced to a primary source.
Same ideas.
Different paths.
This is the full registry, not just the featured picks. Figures like speed, cost, and stars are maker-reported or captured snapshots, not JevMade measurements.
1613 experiments · showing 961–1020
These charts place Jev's Thai standardized-exam results alongside those of 110 other models.
A chess evaluation that gives Jev an explicit list of moves and measures how well it chooses.
typesafe-oracles tests when a typed Jev judgment is more useful than a conventional language-model call.
An introduction to Jev and its unusual restriction: it can decide, but it can't write an answer.
AIAvatarKit uses Jev to decide whether a speaker has finished after half a second of silence.
AINews examines the tradeoff behind Jev: give up free-form answers to get fast decisions with probabilities.
Search for a flight with Jev choosing browser actions and a small language model filling in text only when needed.
A demo of Jev operating a computer, with a maker-reported speed and cost comparison against Opus 5.
Watch Jev drive ConsoleChaosRacing through its Python API, with every racing decision shown on screen.
Hamilton Ulmer's DuckDB extension classifies CSV, Parquet, or table rows with Jev from inside SQL queries.
This Chinese-language roundup introduces early Jev projects for readers who have API access but need ideas for using it.
Check the news article you are reading for political framing, article type, topic and loaded language.
Developers discuss TypeSafe's claim that software needs an AI model for decisions, not another chatbot.
Gabriel Anhaia builds a TypeScript ticket router with Jev and unpacks the launch claims.
An X feed filter that asks Jev to hide posts matching rules you write in plain language.
This tool tests social-video hooks against a panel of roughly 100 detailed synthetic personas.
These field notes compare zero-shot Jev with an internal fine-tuned classifier and inspect the confidence scores.
This experiment places Jev before each proposed agent action and blocks steps judged unsafe.
Víťa Vacek's gomoku harness performs tactical filtering locally, then asks Jev to choose among the surviving moves.
Daniel White explains Jev and its typed-question API in a 34-second video.
Niels Mouthaan tests Jev inside a Grammarly-style writing assistant for macOS.
Steve Krouse introduces TypeSafe Typewriter, a live demo that asks Jev sixteen questions about your text as you type.
This experiment recreates Jev-like decisions with Qwen 3.8 27B running on Cerebras.
Mizchi pits two Jev players against each other in gomoku and documents the match in Japanese.
jev-rabbit reviews pull requests against project rules written in plain English.
The Neuron explains how Jev's structured, confidence-bearing decisions differ from chatbot responses and where they fit in workflows.
Anthony Maio makes the case for Jev as a software component, while questioning claims about a model that cannot hallucinate.
A Jev-powered bot for Kalshi's short-term Bitcoin, Ether and Solana markets.
TypeSafe cofounder Diogo Almeida explains why he spent two years building a model that makes decisions instead of writing text.
Mike Taylor gives Jev his writing to judge and considers what the same approach could do for agent reviews.
Duncan's router asks Jev which available model best fits a request, then forwards the prompt there.
Choose the best AI model or agent for a task from services you already subscribe to.
Agent Journal compares one holistic judge call with twelve Jev-derived features across three classification tasks.
This OpenCode browser-use preview uses Jev to choose actions quickly from the current page state.
skillbox uses Jev to select relevant agent skills directly from the user's query.
Juan Macías tries Jev on Spanish data-protection documents and shares where it succeeds.
Kyle Jeong shows a remote browser taking instructions from Jev through Stagehand.
This demo exposes a WebAssembly build of StarCraft: Brood War through MCP and lets Jev face a Zerg rush.
Fahim Reza ports a small support-ticket classifier from GPT to Jev and tests it on real customer messages.
This game prototype maps a player's free-form tabletop or MMORPG instruction onto a valid in-game action with Jev.
A technical introduction to building software around Jev's choices, scores and yes-or-no answers.
The Register looks at TypeSafe's bid to build AI for software rather than conversation, with Doom as a launch demo.
An introduction to Jev's decision-only API, calibrated probabilities, response times and pricing.
A Japanese take on Jev's launch that asks how much of the same behavior a conventional language model can reproduce.
Vercel's fx tests Jev as the reviewer that decides whether automatically generated shell commands are safe to run.
Kevin Madura's ViZDoom agent separates navigation and combat into two Jev decision channels.
Mohammed Shehu walks through Jev's decision-making API and shows how to call it from Python.
This Wikipedia demo asks Jev which link best advances a stated destination from each page's candidates.
See how Jev fares in solved poker spots—and how much the wording of the game state changes its play.
Guide a simulated robot arm toward a hidden object as Jev decides when to search, recenter, approach, or hold.
Fight a one-hit karate bout yourself or watch two Jev-controlled opponents spar in the browser.
Place road hazards in a robotaxi's path and watch Jev choose a lane and speed while safety rules remain in force.
Add barriers to a simulated drone course and inspect the short flight moves Jev chooses between checkpoints.
Build a hazardous 3D city drive with pedestrians, fog, red lights, and blocked lanes, then watch Jev respond.
Swim through a shared aquarium while Jev-controlled fish decide when to flee, hunt, eat or wander.
This Flappy Bird player sends Jev a prediction of where the bird will be when its answer arrives.
Jev and an OpenRouter model race to score on identical Snake boards.
Direct a simulated disaster-response swarm as Jev checks survivor reports, chooses search sectors, and rates deployment risk.
Play Black on a 9×9 Go board while Jev takes White, or watch it face a simple local opponent.
Match Jev against a text model in chess, where Jev selects legal moves and its opponent must produce valid notation.
Jev, briefly
A chat model generates text token by token and hopes you parse it. Jev never generates a word. Your code sends the state of the world plus typed questions; Jev returns every answer in one parallel pass — typed values with calibrated probabilities and a confidence score your code can trust. About 70–500 ms end to end, $0.042 per million input tokens, output free. Trained with what TypeSafe calls Reinforcement Learning for Calibrated Decisions.
You define the options. Jev returns the chosen option, a probability for every option, and a confidence. The workhorse of routing, agents, and games — the answer space is always legal, so there is nothing to parse and nothing to hallucinate.
You describe ordered levels — say trivial / normal / critical. Jev returns the level, the probability of each, and a confidence. Scores turn fuzzy judgment (“how severe is this log line?”) into a number-free decision your code can branch on.
You assert a statement; Jev returns the probability that it is true — a noul. Moderation, verification, guardrails, “does this diff actually fix the bug?”: one question, one calibrated probability.
Official material lives at typesafe.ai and docs.typesafe.ai. JevMade is an independent community registry — not affiliated with or endorsed by TypeSafe AI.
Recurring lessons
Games, drones, trading bots, and browser agents all converge on the same loop: serialize the state, ask one decisive question, act, repeat. Jev’s latency makes the loop feel instant — the model lives inside the control loop, not outside it.
The answer says what; the confidence says whether to act. The most reliable entries threshold on confidence to route edge cases to a slower model or a human — automation with an honest escape hatch.
Makers rarely ask Jev to pick from everything. Local tactics prune 225 gomoku moves to ~40; DOM filters turn a page into an element table; code narrows options, Jev judges within them.
A recurring split: Jev makes every decision cheaply and instantly, and a small LLM is only invoked when a human-facing string must actually be written. Decision and generation are separate budgets.
Send the link — repo, live demo, post, or video — plus a line on what it does and which primitives it uses. Every entry is verified against its primary source before it ships.
Submit your experiment → hello@JevMade.com