JevMade hello@JevMade.com

A public registry · independent & community-run

Explore the Jev ecosystem.

Learn, build, and play with Jev — from deep technical guides to creative experiments.

Make & explore

Experiments.

See what builders made with Jev. Games, tools, repositories, articles, and more — traced to their sources.

Featured experiment Jev experiments by Nader Dabit
Recorded frame from Jev experiments
Explore 1,613 entries
The directory03 / 03 · Experiments

Find something worth exploring.

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

typesafe-oracles tests when a typed Jev judgment is more useful than a conventional language-model call.

Source screenshot of typesafe-oracles
SOURCE SCREENSHOTEXPAND ↗
from the source npm run dataset # build the binary corpus -> .sandboxes/episodes.jsonnpm run run # arm A (Jev) + arm B (Haiku via `claude -p`)npm run run:api # arm C (Haiku via the API — the honest baseline)npm run report # accuracy, confidence separation, calibration, costnpm run run:repeat # 5 independent runs of arm A
choicescorenoul ★ 0 Benchmarks & research

Search for a flight with Jev choosing browser actions and a small language model filling in text only when needed.

Source screenshot of Browser Use + Jev
SOURCE SCREENSHOTEXPAND ↗
from the source “Breaking: Browser Use + Jev = Ultrafast ⚡ Findings flights took 7s and cost only $0.0...
— Articles & threads

A demo of Jev operating a computer, with a maker-reported speed and cost comparison against Opus 5.

Source screenshot of Computer use built on Jev
SOURCE SCREENSHOTEXPAND ↗
from the source “i built computer use using @typesafeai ! it is 155x cheaper than opus 5, ~20x faster, a...
— Browser & computer use

Watch Jev drive ConsoleChaosRacing through its Python API, with every racing decision shown on screen.

Source screenshot of ConsoleChaosRacing driven by Jev
SOURCE SCREENSHOTEXPAND ↗
from the source “Typesafe system_one … Jev ちゃん  運転できるらしいから ConsoleChaosRacing を運転して...
— Playable demos & bots

This Chinese-language roundup introduces early Jev projects for readers who have API access but need ideas for using it.

Source screenshot of Early Jev tools roundup
SOURCE SCREENSHOTEXPAND ↗
from the source “Jev 这个 waitlist 还是很给力的,昨天申请,今天就能用上。 给已经拿到 API、但还不知道怎...
— Community lists

Víťa Vacek's gomoku harness performs tactical filtering locally, then asks Jev to choose among the surviving moves.

Source screenshot of Jev gomoku harness
SOURCE SCREENSHOTEXPAND ↗
from the source “I built a Jev harness to play Gmoku. How it works - instead of asking to evaluate all...
— Playable demos & bots

Kevin Madura's ViZDoom agent separates navigation and combat into two Jev decision channels.

Source screenshot of ViZDoom Jev agent
SOURCE SCREENSHOTEXPAND ↗
from the source “I feel like the Jev hello world is playing DOOM ... and it works incredibly well with V...
— Playable demos & bots

This Wikipedia demo asks Jev which link best advances a stated destination from each page's candidates.

Source screenshot of Wiki-link clicker demo
SOURCE SCREENSHOTEXPAND ↗
from the source “@drefrajo @Neriousy @typesafeai @opencode Yes. Each page has some link candidates and t...
— Playable demos & bots

See how Jev fares in solved poker spots—and how much the wording of the game state changes its play.

Source screenshot of Jev is the fish at the poker table
SOURCE SCREENSHOTEXPAND ↗
choice Hero is on the turn and it is hero's turn to act. Which action from `decision.legal_actions` should hero take? · check / all_in
choicenoul Benchmarks & research

Fight a one-hit karate bout yourself or watch two Jev-controlled opponents spar in the browser.

Source screenshot of Fight
SOURCE SCREENSHOTEXPAND ↗
choice ★ 0 Playable demos & bots

Place road hazards in a robotaxi's path and watch Jev choose a lane and speed while safety rules remain in force.

Source screenshot of Cybercab
SOURCE SCREENSHOTEXPAND ↗
choicescorenoul ★ 0 Playable demos & bots

Add barriers to a simulated drone course and inspect the short flight moves Jev chooses between checkpoints.

Source screenshot of Jev Flight Lab
SOURCE SCREENSHOTEXPAND ↗
choicenoul ★ 0 Playable demos & bots

Direct a simulated disaster-response swarm as Jev checks survivor reports, chooses search sectors, and rates deployment risk.

Source screenshot of Drone Swarm Max01
SOURCE SCREENSHOTEXPAND ↗
choicescorenoul ★ 0 Playable demos & bots

Play Black on a 9×9 Go board while Jev takes White, or watch it face a simple local opponent.

Source screenshot of Jev Go
SOURCE SCREENSHOTEXPAND ↗
choice ★ 0 Playable demos & bots

Match Jev against a text model in chess, where Jev selects legal moves and its opponent must produce valid notation.

Recorded frame of jev-chess
ACTUAL RECORDING12 SEC ↗
choice ★ 0 Benchmarks & research

Jev, briefly

A decision model, not a chatbot.

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.

choice Pick one of these.

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.

score Rate this on a rubric.

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.

noul Is this statement true?

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

Patterns that keep showing up.

One decision per tick

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.

Confidence as a gate

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.

Shrink the choice space in code

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.

Jev judges, LLMs talk

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.

Made something with Jev?

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