Sep 21, 2026 · awesomejev.com
802 projects built on Jev, indexed and refreshed daily Browse ↓

Community directory Not affiliated with TypeSafe AI

Everything
Built On Jev

Repos, SDKs, integrations, demos and benchmarks for TypeSafe AI's System One model. Stars refreshed daily from GitHub.

802 Entries,
52,151 Stars.

*717 GitHub repos, 239 live sites, 50 articles and threads. Refreshed 2026-09-21.

JEV · SPEC SHEETv1.13
modeljev-latest
endpointPOST https://api.typesafe.ai/v1/systemone
inputstate + typed questions, evaluated in parallel
outputtyped answers, per-option probabilities, confidence
latency70–500 ms end to end (per TypeSafe)
pricing$0.042 / MTok input · output free
sdksjs · python · ai gateway · community below
PRIMITIVES3
choicepick one option from a list → choice, probabilities, confidence
scorerate the state on a rubric → score, probabilities, confidence
noulis this statement true? → noul (0–1)
import { choice, TypeSafeClient } from "@typesafe-ai/sdk";

const client = new TypeSafeClient();
const response = await client.systemOne({
  state: { document: "I was charged twice. Please fix this ASAP." },
  questions: {
    category: choice("What is this ticket about?", {
      billing: null,
      technical: null,
      other: null,
    }),
  },
});

console.log(response.answers.category.choice);
FILTER802 shown
01 · Official19 entries

Docs, SDKs, and resources from TypeSafe AI.

ProjectDescriptionLangStarsLinks
TypeSafe AI Company homepage, waitlist, and product overview.
Documentation Introduction, primitives, patterns, cookbooks, HTTP API, and SDK references.
Quick start Shortest path from an API key to a typed decision.
Playground Paste a state, add questions, and see typed answers in the browser.
HTTP API reference Request and response contract for POST /v1/systemone.
Primitives Choice, Score, and Noul: the three question types and what they return.
Patterns Speculative fan-out, confidence-gated routing, composite scoring, and intent routing.
Cookbooks Reproducible recipes: parallel questions, reranking, guardrails, citation checks, extraction, hierarchical classification.
Smart home demo Official interactive demo of speculative fan-out: many questions in one call, code keeps the relevant answers.
Workflow evals Published eval methodology and per-model results for System One workflows.
Jev 1.13 jaggedness Known failure modes of the current public model, documented by TypeSafe.
Introducing System One Models and Jev Launch post: architecture, RLCD training, pricing, Doom and Wikiracing demos, FAQ.
Manifesto The case for machine-native intelligence built for software, not conversation.
Discord Official TypeSafe server. Builder demos live in the Show and Tell channel.
@typesafeai on X Product and research updates.
TypeSafe agent skillstypesafe-ai Official agent skill for Claude Code, Codex, and compatible agents: primitives, patterns, and how to structure evaluations. ★ 1,397
System One adapter (Python)typesafe-ai Official drop-in TypeSafeClient replacement backed by OpenAI, Anthropic, and compatible LLM APIs, for comparing Jev against chat models. Python ★ 218
TypeSafe JavaScript SDKtypesafe-ai Official TypeScript/JavaScript client with inferred answer types. npm install @typesafe-ai/sdk. TypeScript ★ 197
TypeSafe Python SDKtypesafe-ai Official sync and async Python client. pip install typesafe-sdk. Python ★ 171
02 · SDKs & clients60 entries

Community clients for languages without an official SDK.

ProjectDescriptionLangStarsLinks
advocaatpithings A small, type-safe client for asking AI questions about your data, powered by TypeSafe Jev. TypeScript ★ 88
ruby_decision_modelobie Ruby client for decision models such as Typesafe Jev. Ruby ★ 47
jev (dannote)dannote TypeSafe Jev for OTP: reply to Jev from a GenServer and pattern match on its answer. Elixir ★ 23
jevalynRay-Hughes The decision layer for your Rails app. A Rails-native wrapper around TypeSafe's Jev System One API: typed, calibrated decisions in your control flow. Ruby ★ 13
typesafe-aiTwister915 Typed TypeSafe AI clients for Rust, with async and blocking backends and observable retries. Rust ★ 11
JevSwiftSDKNSStudent An independent, type-safe Swift SDK for TypeSafe Jev, with async/await, batching, retries, and SPM support. Swift ★ 8
typesafe-sdk-go (Tangerg)Tangerg Go SDK for the TypeSafe AI API — typed questions in, probability distributions out. Go ★ 8
jev-dslinanna-malick Agent-first Haskell DSL for TypeSafe's Jev judgment model: typed packets, inferred types, answers under the same labels. Haskell ★ 7
super-jevKevthetech143 A small, extensible decision-to-action harness for TypeSafe Jev. Python ★ 7
typesafe-sdk-go (atharvamhaske)atharvamhaske Unofficial go sdk for typesafe ai. Go ★ 7
zod-jevjomatsu Zod validates the shape, Jev validates the meaning: semantic checks on request bodies become calibrated probabilities you threshold in code. TypeScript ★ 7
scala-jev-sdkticofab Effect-agnostic Scala 3 client for the System One API that runs on any sttp backend (Future, cats-effect, ZIO, Monix, or blocking) with answers typed by question value. Scala ★ 6
typesafe-dotnet-sdksaibimajdi Community .NET SDK for the TypeSafe AI System One API — typed noul, choice, and score questions with structured, confidence-scored answers. Not affiliated with TypeSafe AI. C# ★ 6
spring-ai-typesafespring-ai-community A Java SDK for the TypeSafe AI JEV API, & Spring AI TypeSafe integrations. Java ★ 5
typesafe_sdknshkrdotcom An idiomatic, type-safe Elixir port of the official TypeScript AI SDK (ai / ai-sdk) providing unified LLM integrations, streaming text and structured outputs, tool calling, and agentic workflows. Jev is their current flagship model and is the first System One model. Elixir ★ 5
jev4kpambrose A Kotlin DSL and client for TypeSafe's Jev model. Kotlin ★ 4
typesafe-ai-rsgilljon Independent async and blocking Rust SDK for the TypeSafe AI System One API. Rust ★ 4
typesafe-sdk (joshmn)joshmn Ruby client for typesafe.ai. Ruby ★ 4
jev (virolea)virolea Ruby client for the typesafe AI Jev model. Ruby ★ 3
jev-goStumble Community Go SDK for TypeSafe AI Jev / System One. Go ★ 3
jev-go (Gaurav-Gosain)Gaurav-Gosain Go client for TypeSafe's System One API and its model Jev: typed judgments and calibrated probabilities instead of generated text. Go ★ 3
jev-javaOlti1947 Idiomatic Java SDK for TypeSafe AI Jev System One decision engine. Java ★ 3
jev-java (gudcks0305)gudcks0305 Unofficial Java SDK for TypeSafe Jev and Vercel AI Gateway, with Spring Boot and WebClient support. Java ★ 3
jodmateonunez Semantic schemas over TypeSafe's Jev — validate the state locally, then project typed answers. TypeScript ★ 3
rust-sysonezcoder-run System One TypeSafe AI Rust Client (unofficial). Rust ★ 3
typesafe-sdk-dotnethardkoded Unofficial .NET port of the TypeSafe AI client SDK (typed questions & answers). C# ★ 3
typesafe-sdk-javaPremo-Cloud Community Java client for the TypeSafe System One API (unofficial). Java ★ 3
typesafe-sdk-rustcodeitlikemiley Rust SDK for the TypeSafe AI API. Rust ★ 3
typesafe-sdk-swiftInsaneArts Swift SDK for TypeSafe AI. Swift ★ 3
zio-typesafe-aijamesward Scala 3 / ZIO client for the System One API: typed end-to-end, several questions per round-trip via NamedTuple. Scala ★ 3
jev-androiddougsong A Kotlin Android SDK for UI automation powered by TypeSafe Jev, with an accessibility runtime and sample app. Kotlin ★ 2
jev-php-sdkmzainzulifqar PHP SDK for TypeSafe's Jev: send text and typed questions, get typed answers with calibrated confidence. PHP 8.1+, works with any PSR-18 client, Laravel 8–13. PHP ★ 2
jevclientAboveColin Async Python client for TypeSafe Jev. Typed questions in, probabilities and choices out, no prose to parse. Python ★ 2
jevgofgn Go client for TypeSafe AI's System One API (Jev), with optional Langfuse instrumentation. Go ★ 2
TypeSafeAI.NetHawxy .NET SDK for the TypeSafe AI platform. C# ★ 2
decidoyairshy Probabilistic decisions for Python. Use Jev or bring your own provider; crawl with Playwright. Python ★ 1
jevanilsenay Unofficial Go client for TypeSafe's System One API and its model, Jev. Go ★ 1
jev-go (guillemus)guillemus Unofficial Go SDK for TypeSafe AI's Jev API. Go ★ 1
jev-harness-routerJoacoMarc Per-turn router for agent harnesses: one 350ms Jev call picks the model tier, effort, tools and skill, behind a hard deadline with a regex fallback. Claude Agent SDK adapter included. TypeScript ★ 1
qualmqddegtya Typed decisions from a System One model. An uncertain answer is a different type from a confident one — and the compiler makes you handle it. TypeScript ★ 1
s1-rsAbdelStark Typed System One layer for Rust (Choice/Score/Noul). Rust ★ 1
typesafemattneel An idiomatic Elixir client for the TypeSafe AI API. Elixir ★ 1
typesafe_sdk_exvinnie357 Typesafe AI SDK in Elixir using Req. Elixir ★ 1
typesafe-clientJedimEmO Unofficial typed async Rust client for the TypeSafe System One API. Rust ★ 1
typesafe-go (cole-gillespie)cole-gillespie Unofficial go SDK for typesafe AI, with typed answers, retries, and context support. Go ★ 1
typesafe-go (zhirschtritt)zhirschtritt Idiomatic Go SDK for the TypeSafe AI API. Go ★ 1
typesafe-rsAbdelStark Latency-first Rust SDK for TypeSafe System One. Rust ★ 1
typesafe-sdk (binnash)binnash PHP & Laravel SDK for TypeSafe AI's JEV Model series. PHP ★ 1
typesafe-sdk-go (dwisiswant0)dwisiswant0 Go SDK for TypeSafe AI. Go ★ 1
typesafe-sdk-go (unimtx)unimtx Community Go SDK for the TypeSafe System One API with typed Choice, Score, and Noul questions plus retries, contexts, and structured errors. Go ★ 1
typesafe-sdk-rubyafurm Unofficial Ruby SDK for the TypeSafe AI API (Jev model) - typed questions, retries, and typed errors. Community port of typesafe-sdk-js. Ruby ★ 1
TypeSafeAItryAGI First-class, NativeAOT-ready .NET SDK for TypeSafe AI System One, generated with AutoSDK. C# ★ 1
typesafeai-gochez-shanpu Go SDK for TypeSafe AI API https://docs.typesafe.ai/api. Go ★ 1
kunobi-jevkunobi-ninja Rust client for the TypeSafe System One API (Jev). Rust ★ 0
tinyjevclienttinyhumansai An integration with jev by typesafe.ai in Rust. Rust ★ 0
typesafe_ai (hfiguera)hfiguera A supervised Mint client for the TypeSafe AI System One API. Elixir ★ 0
typesafe_ai (typesend)typesend Unofficial Elixir SDK for the TypeSafe AI API. Elixir ★ 0
typesafe-sdk-govalksor Unofficial Go SDK for the TypeSafe AI System One API — 1:1 parity with the official JS and Python SDKs. Not affiliated with TypeSafe AI. Go ★ 0
typesafe-sdk-phpvalksor Unofficial PHP SDK for the TypeSafe AI System One API — 1:1 parity with the official JS and Python SDKs. Not affiliated with TypeSafe AI. PHP ★ 0
typesafe.zigmattneel An idiomatic Zig client for the TypeSafe AI API. Zig ★ 0
03 · Integrations33 entries

Jev inside frameworks, gateways, and platforms.

ProjectDescriptionLangStarsLinks
evevercel Vercel's open agent framework, which ships Jev as the default evaluation model in its experimental evaluate path. TypeScript ★ 5,290
ai-clivercel-labs Vercel Labs terminal CLI that can run Jev as the evaluation model for its evaluate command. TypeScript ★ 808
pg-jevrealZachi Ask your Postgres tables questions in plain language. A PostgreSQL extension powered by TypeSafe's Jev. Shell ★ 260
jev-shell-historymrnugget Fish-style zsh history autosuggestions ranked by Jev (TypeSafe). TypeScript ★ 82
pg_typesafegiuliosmall Pre-alpha PostgreSQL extension for TypeSafe AI (Jev) categorical classification. C ★ 81
neo4jevjexp Typesafe.ai System One Model Jev navigating a Neo4j graph by using a classifier over neighbouring relationships. Jupyter Notebook ★ 58
HA-JevAboveColin Home Assistant integration for TypeSafe Jev. Ask a question about your house and get a probability, a choice or a score as an entity. Python ★ 40
jevmailfazlerocks Open-source AI email triage for Gmail. Sorts your inbox into Needs reply, Updates, Promos, Sales and Spam with Jev, TypeSafe AI's decision model, via Vercel AI Gateway. Read-only, runs locally, 1,000 emails in about a minute for 3 cents. TypeScript ★ 27
Lokiwundercorp Self-improving agent harness with an optional TypeSafe Jev companion for typed Choice, Score, and Noul judgments. Python ★ 26
ruby_llm-typesafekieranklaassen TypeSafe structured-output provider for RubyLLM 2. Ruby ★ 18
jevqlkylemclaren Semantic SQL for Postgres, powered by Jev. Go ★ 11
typesafe-jev-workflowGiesN Async LangGraph workflow that gets a typed Jev Choice (invoice or general) and routes each inbound email to the matching handler. Python ★ 6
a0-typesafe-ai3clyp50 TypeSafe AI Jev judgments for Agent Zero, with typed tools and probability cards. Python ★ 5
typesafe-on-neonandrelandgraf Neon Function proxy for the Neon AI Gateway with TypeSafe Jev routing. TypeScript ★ 4
typesafe-uiTypeSafeAI Shadcn-style reusable components and blocks for using TypeSafe AI. TypeScript ★ 4
jevmetricsishantanu OpenTelemetry Collector connector that uses Jev to assess metric metadata and apply retention policies before export. Go ★ 3
llama-index-jevWiktorB2004 LlamaIndex reranker + router powered by TypeSafe Jev — typed scores/choices, cheaper than LLM-as-judge. Python ★ 3
typesafe-assistJanOstrowka Home Assistant Assist conversation agent powered by TypeSafe's Jev (System One) model. Python ★ 3
demo-symfony-typesafeyoanbernabeu Démo : trier des demandes de support avec Jev (TypeSafe) et Symfony AI. Messenger, Live Components, Turbo, kit shadcn de UX Toolkit. PHP ★ 2
jev-feelsQew7 Semantic decisions as ordinary Ruby — feels?, decide, score, Rails validations and pattern matching powered by Jev. Ruby ★ 2
laravel-typesafe-jevButochnikov Unofficial Laravel integration for TypeSafe Jev AI with typed responses, async requests, scoped dependency injection, and testing fakes. PHP ★ 2
n8n-nodes-jevvibe-with-me-tools Helper n8n community node for Jev by TypeSafe. Classify, route, and score text with questions you define, and get a probability for every answer so unsure items can go to review. TypeScript ★ 2
pydantic-jev-examplesadtyavrdhn Pydantic AI capabilities made stronger with Jev: small runnable demos, one file each. Python ★ 2
typesafe-ai-railsGenieRobot Community Rails integration on the typesafe-sdk gem: configuration, persisted usage and cost telemetry, and opt-in confidence policies. Ruby ★ 2
hushemreozyoruk GitHub Action for issue triage that abstains: label, spam, needs-info and duplicate in one call, each applied only above a threshold you set, and nothing at all below it. JavaScript ★ 1
jev-lens.nvimrashedInt32 Neovim popup for jev-lens verdicts: do I need to look, which files, and strip the debris. Lua ★ 1
judging-with-typesafecarlsonchik Скилл для агентов Letta: суждения по критериям через TypeSafe System One (Jev). Python ★ 1
agentgateway Jev guardrail example Jev as an LLM prompt guardrail inside the agentgateway proxy, with tracing and cost tracking. TypeScript
Jev on Vercel AI Gateway Hosted typesafe-ai/jev for AI SDK evaluate calls, no TypeSafe waitlist required.
Jev4MelleaSoundBlaster Jev adapter to Mellea. Python ★ 0
n8n-nodes-typesafe-aiDomMonte N8n community node for the TypeSafe AI System One API — typed yes/no, choice and score questions with calibrated probabilities. TypeScript ★ 0
TrainLCD Jev rerank Pull request adding Jev to station-suggestion reranking in the TrainLCD transit app. TypeScript
Vercel AI SDK provider @ai-sdk/typesafe-ai plus experimental_evaluate; use jev-latest as an evaluation model.
04 · Agent tooling166 entries

Gates, routers, reviewers, MCP servers, and skills for coding agents.

ProjectDescriptionLangStarsLinks
fast-jev-compactiontamaratran Claude Code plugin that replaces the compaction summary with Jev decisions: every tool call and result is scored in one fast request, stale ones are dropped or truncated, everything kept stays verbatim. TypeScript ★ 5,755
foremanthruwire Software Factory Foreman: an agent supervisor that uses Jev decisions to keep coding agents on task. Python ★ 447
jev-review (devagrawal09)devagrawal09 A staged code-review workflow and local dashboard built with TypeSafe Jev. TypeScript ★ 440
jev-searchsuperagents-lab Search the web with TypeSafe's Jev: source selection, query understanding and relevance ranking. Built with Search1API. TypeScript ★ 353
jev-router (gargpratyush)gargpratyush Route to the cheapest model in claude code for your task using jev-router. JavaScript ★ 286
jev-mcp (jkudish)jkudish Proof of concept MCP for Typesafe's new Jev AI model. TypeScript ★ 197
jev-review (NiazMorshed2007)NiazMorshed2007 Local-first MCP plugin for continuous software-quality review by AI coding agents, powered by Jev. TypeScript ★ 191
typesafe-mcpitsmostafa Go CLI and single-binary MCP server exposing TypeSafe judgments to Claude Desktop, Claude Code, and Codex. Go ★ 174
jev-prunertamaratran Claude Code plugin: trim long Bash output with TypeSafe Jev before the model sees it. TypeScript ★ 131
pi-jev (y0usaf)y0usaf TypeSafe Jev as a decision layer for the Pi coding agent: a measured tool-call gate plus jev_ask for typed, calibrated answers. TypeScript ★ 131
jev-codex-router0xNatoshi Per-turn model & reasoning routing for Codex, driven by Jev (TypeSafe System One): picks the model, thinking depth and speed mode for every turn. Python ★ 129
building-with-jev-skilldbreunig A skill for writing and improving programs that call Jev, TypeSafe's System One model. ★ 128
JevRouterBillionsBobby A lightweight Jev-powered router for models, tools, and subagents. TypeScript ★ 126
pi-wardenDevMortimer Guardrails for Pi built on pi-typesafe that steer the agent instead of interrupting you: Jev judges irreversible and off-task tool calls, detects stuck loops, checks unverified done claims, flags slop. TypeScript ★ 119
jev-codedevagrawal09 Bounded TypeSafe Jev workflows for coding agents. TypeScript ★ 107
skillrankerDicklesworthstone Rust CLI powered by Jev from TypeSafe.ai that ranks agent skills for the next step using live session context. Includes Claude Code hooks, structured JSON, abstention, and local feedback. Requires a TypeSafe API key. Rust ★ 107
Supercovsupercorp-ai Code quality and test coverage for coding agents: Jev scores each source file so the agent knows what to fix first. Rust ★ 86
grok-bot-jevBodila51 Connect TypeSafe Jev to Grok Bot as a cheap decision layer - usage gates, skill template, examples. Python ★ 68
jev-lintmizchi Lint text in code by jev scorerer. TypeScript ★ 56
jev-dsh-decisionDevin-AXIS Jev DSH 决策引擎|面向 Agent Harness 的结构化决策插件。原生支持 DeepSeek Harness,通过 iPolloWork 支持 OpenCode、Codex Harness。 JavaScript ★ 53
hono-jev-routeryusukebe Route HTTP requests by meaning. A semantic router for Hono powered by Jev. TypeScript ★ 45
jev-recruiterskeptrunedev A Jev powered LinkedIn recruiting agent. Watch it browse relevant profiles, save links, and review evidence against your hiring brief. Python ★ 43
winnowGhalebDweikat A calibrated context sieve for Claude Code: every tool result is judged by a System One model before it enters context. Python ★ 38
ask-jev-skillshantanugoel Skill for Hermes, and other agents, to ask typesafe's jev. Python ★ 37
jev-mcp (burnigtm)burnigtm MCP server that puts TypeSafe Jev on the coding loop in Cursor, Codex, and any MCP client. TypeScript ★ 34
jev-recallsamdotmak Retrieve by relevance, not resemblance: filter an AI assistant's memories with TypeSafe's Jev. TypeScript ★ 28
jev-skill-suggesterwin4r 用 TypeSafe Jev 推荐已安装 Skill / Bounded installed-skill recommendations with TypeSafe Jev. Python CLI, Codex skill, bilingual docs and live examples. Python ★ 28
pi-jev (TheoOliveira)TheoOliveira Semantic tool routing and typed System One decisions for the Pi coding agent using TypeSafe Jev. TypeScript ★ 27
snifftestDanRWilloughby A prose linter that sniffs out AI writing tells. Zero dependencies, countable rules plus one judgment model. TypeScript ★ 26
jev-seoAkashPriyadarshii 100% free ₹0 agent-first SEO & GEO CLI suite and MCP server in Rust replacing Semrush and OpenSEO via DuckDuckGo and TypeSafe Jev System One. Rust ★ 25
yoshicompozy Context-pruning proxy for Claude Code and Codex: Jev judges which history is still needed, measured not claimed. POC here now, heading soon into https://github.com/compozy/compozy. TypeScript ★ 21
pi-jev-auto-modejomatsu Jev (TypeSafe System One) backed auto mode for the Pi coding agent: semantically auto-approves bash, write, and edit tool calls and fails closed when a decision cannot be made. TypeScript ★ 20
CheshiCheshiAI Jev-powered conversation memory: find past sessions and revisit decisions with original sources. A macOS workspace for OpenAI Codex. Manage AI conversations and agents, explore code with CodeGraph, and work with Git, Ghostty terminals, and Apple Notes in one app. C ★ 18
is-maliciousluantak Scans a codebase for covert, deceptive, or data-stealing behavior with Jev, then reports suspicious files and line ranges before the user runs it. TypeScript ★ 18
jev-code (rhighs)rhighs Interactive TypeScript coding CLI with typed routing, decision programs, and validated formal trees driven by Jev. TypeScript ★ 18
jev-guardleepokai Prompt-injection and dangerous-action guard for coding agents (Claude Code, Codex, pi, ACP), powered by Jev. JavaScript ★ 18
jev-axishiftynick Agent-ergonomic CLI for TypeSafe's Jev: fast calibrated judgments (pick, rate, check, rank, triage, guard) from the shell. TypeScript ★ 17
jev-belayvalentynkit Claude Code Stop hook that blocks an unverified done: reads the transcript for evidence, asks Jev once, fails open on everything else. JavaScript ★ 17
jev-cli (Nasrallah-AL)Nasrallah-AL Command-line tool for TypeSafe's Jev AI model. TypeScript ★ 16
jev-mcp (blakestone-x)blakestone-x MCP server for TypeSafe Jev: typed classify, score, check, match and screen for any agent, with confidence on every answer. Python ★ 16
jgrepkeltokhy Grep, but the pattern is a description. Filters lines by meaning with TypeSafe's Jev decision model: ~200 ms and a thousandth of a cent per line. Python ★ 15
Cannyqkal Stops AI coding agents from claiming work is done without evidence. Deterministic hooks decide, TypeSafe's Jev advises. Append-only ledger, zero runtime dependencies. TypeScript ★ 14
jevwireBrainwires Jev decision layer for agents: MCP server, embeddable DecisionModel library, and an escalate-only Claude Code plugin (TypeSafe AI's Jev). TypeScript ★ 14
pi-jev-router (philippdubach)philippdubach A minimal Pareto-optimal OpenRouter model router for pi, based on Jev. TypeScript ★ 14
hermes-jevkeeltrace Typed System One decisions, ranking, verification, and an opt-in Hermes tool gate using TypeSafe Jev. Python ★ 12
jev (BorisLeMeec)BorisLeMeec A claude code plugin for jev. Go ★ 12
jev-agent-skill-routerGodsBoy Typed, confidence-aware agent skill routing with TypeSafe Jev. Python ★ 12
hermes-jev-approvalsanpicasso PoC: TypeSafe Jev as the reviewer for Hermes Agent smart command approvals. 8.7x faster, 4.4x fewer prompts, measured on 153 real commands. Approvals only. Python ★ 11
jev-superpowersAkashPriyadarshii Systematic software development framework for AI coding agents upgraded with TypeSafe Jev System One typed decisions. JavaScript ★ 11
jev-useshitianfang Claude Code / Codex / pi plugin that hands agent steps needing no text output to Jev (TypeSafe's judgment model) — measured p50 ~230 ms and ~$0.02 per 1,000 judgments, with typed escalation back to the LLM. JavaScript ★ 11
JevLinthuntedman Configurable semantic linting powered by Jev, with file-level NOUL judgments and a magic-strings plugin. TypeScript ★ 11
pi-jevmadeye Jev-assisted file retrieval and request caching for faster Pi workflows. TypeScript ★ 11
patdowntyler-dot-earth Typesafe's jev as a "fuzzy linter". give your code an ocular patdown. TypeScript ★ 10
pi-quiet-askHyunjunJeon TypeSafe Jev as the pi coding agent's quiet decision layer. TypeScript ★ 10
pi-jev-routermejiasd3v Automatic model routing for Pi using TypeSafe's Jev through Vercel AI Gateway. JavaScript ★ 9
jev-commitvalentynkit Pre-commit hook: one Jev call judges whether your commit message matches the staged diff, plus debug leftovers, unmentioned work, and a credential check. Python ★ 8
jev-routerrajdhakad9826 Cost-aware LLM router that picks the cheapest model capable of handling a query, using TypeSafe's Jev for fast classification instead of an LLM call. TypeScript ★ 8
JevLoopzjunlp The agent loop where decisions don't cost a large language model call. Zero deps, runs offline, no API key needed. TypeScript ★ 8
omp-jev-compactionjerryfane Verbatim Jev-scored context reduction for omp, over TypeSafe or OpenRouter. TypeScript ★ 8
pi-jev-sentinelharshwasan Pi coding-agent extension: TypeSafe Jev checks for tool calls, tool outputs and replies (prompt injection, approvals, secret scrubbing, task pinning). TypeScript ★ 8
typesafe-skill-routerDECRUX9812 TypeSafe (Jev) skill routing for Hermes Agent: names the one skill worth loading, before the model call. Opt-in, stdlib only, ~$0.001 per routed turn. Python ★ 8
clean-code-reviewfrostney Every code file in a pull request, judged against Uncle Bob's Clean Code by TypeSafe's Jev, then reviewed by Luna. Built on eve and Next.js. TypeScript ★ 7
jevcache (kushals256)kushals256 Skip expensive LLM calls when TypeSafe Jev says same intent. OpenAI-compatible local cache proxy — npx @kushalicious/jevcache. TypeScript ★ 7
jevscapeSkyvern-AI RuneBench harness for TypeSafe's Jev: bounded action catalog, tick-mode controller and a live dashboard. TypeScript ★ 7
pi-fast-jev-compactionjoelhooks Pi extension: verbatim context compaction with TypeSafe Jev decisions. TypeScript ★ 7
jev-mcp (arunav25)arunav25 Connect JEV to MCP clients and compare its judgments against general-purpose LLMs using shared datasets and measurable accuracy. JavaScript ★ 6
pi-heedNyarlathoteppppp Runtime constraints for the pi coding agent: checks every side-effecting tool call against what you said, before it runs. Powered by TypeSafe Jev. TypeScript ★ 6
pi-jev (iefnaf)iefnaf Pi extension suite powered by Jev: selective context compaction and model routing. TypeScript ★ 6
jev-mcp (rashedInt32)rashedInt32 MCP server exposing TypeSafe Jev as typed, calibrated judgment tools: classify, score, check, batched ask. Ships as a Claude Code plugin. TypeScript ★ 5
pi-jev-context-curatorShashank-H A Jev based context curator for pi. TypeScript ★ 5
riffscale-venture-partners A small, fast prose linter: ruff-style rule codes for writing, backed by TypeSafe's Jev model. Python ★ 5
bicameralAbdelStark Hybrid coding harness: System 2 writes, System 1 (Jev) runs reflexes. TypeScript ★ 4
diffjuryraihankhan-rk DiffJury — TypeSafe Jev PR risk router + code review coach. TypeScript ★ 4
Jev-Memlibingzheren Jev-Mem: System-One Controlled Agentic Memory. Python ★ 4
jev-prefdoeixd Turn your AGENTS.md preferences into a fast, Jev-powered AI linter. JavaScript ★ 4
jev-router (prismhq)prismhq Open-source LLM router that uses TypeSafe's Jev to pick a model, on top of LiteLLM. Python ★ 4
jev-specnozomi-koborinai ⚡ Catch spec drift on every commit: check your code against your Markdown specs with TypeSafe AI's Jev model. TypeScript ★ 4
jevtest (joshhu)joshhu 情緒測謊器:嘴上說「好」,心裡真的好嗎?用 TypeSafe Jev(System One 模型)透過 OpenRouter 即時判斷,並與一般 LLM 對照. HTML ★ 4
slidepilotharshil1712 Voice-driven semantic auto-advance for Slidev, powered by Cloudflare Agents and TypeSafe AI Jev. TypeScript ★ 4
taste-lintmblode CLI that uses Jev to catch AI slop in UI, copy, and agent instructions before ship (probabilities on semantic taste checks). TypeScript ★ 4
construct-auto-classifiergodspede Effect-based safety gate for AI coding agents' shell commands (OpenCode, Antigravity): fast structural rules, then TypeSafe's Jev or a chat model judges what a command does. Certified with Jev at zero dangerous commands allowed. TypeScript ★ 3
dsh-jevzhangxaochen Jev (System One decision model) plugin suite for DeepSeek Harness (dsh). TypeScript ★ 3
fast-dev-compactionleonaaardob Codex plugin: verbatim Jev-guided context restoration around session compaction. Port of tamaratran/fast-jev-compaction to Codex lifecycle hooks. TypeScript ★ 3
hermes-jev-pluginajensenwaud TypeSafe Jev (System One) decision tools for Hermes Agent: jev_check / jev_route / jev_score / jev_evaluate. Python ★ 3
Jev Auto RouterminiLV Per-call GPT model routing for Codex: Jev chooses model and effort, a local Responses proxy keeps the tool loop intact, then independent verification and Router Compass check whether the task still passed. TypeScript ★ 3
jev-judgmentHyunjunJeon Agent Skill: send closed coding-agent judgments to TypeSafe Jev. Python ★ 3
jev-model-router (satviksinha)satviksinha Model router for Claude Code using Jev. TypeScript ★ 3
jevexjvsteiner Minimal agent loop where Jev directs control flow and a LangChain chat model writes argument values and the final response. Python ★ 3
mastra-jev-moderationCodeAlive-AI Input moderation for Mastra agents on TypeSafe Jev — one file. TypeScript ★ 3
nitrodaniel-farina Grok Build with TypeSafe Jev routing tool selection once per turn: 22 to 40% cheaper on the same tasks. Rust ★ 3
pijevtonyzdev PiJev: a terminal coding agent with Jev in the loop — Jev ranks the repository's files before the first call, picks skills and triages failures; your coding model writes the code. Built on Pi. TypeScript ★ 3
typesafe-cli (geilt)geilt CLI and agent skill for TypeSafe System One (Jev): typed Choice, Score, and Noul judgments. Python ★ 3
actiongate-jevomkarghugarkar007 Runtime authorization and guardrails for AI-agent tool calls with deterministic policy and TypeSafe Jev via OpenRouter. TypeScript ★ 2
ailerixtylerjharden Type-safe model router. Jev (System One) banks each request to a typed catalog route. TypeScript ★ 2
clear-headVladyslavHontar Claude Code Stop hook that checks an AI assistant's claims against what it actually read this session, using TypeSafe's Jev as the judge. Python ★ 2
dsh-jev-pruneyangyu666 Jev-judged context compaction for DeepSeek Harness: semantic tool-result pruning + deterministic receipt compaction. JavaScript ★ 2
git-jev-stageibrahemid Select Git changes for staging with a plain-language description. TypeScript ★ 2
jcm-routeradarshmishra07 Local proxy that picks the Claude model and effort per message using TypeSafe Jev. Routes subagents, leaves your cached main chat alone. TypeScript ★ 2
jev-canvasgaborishka Draw on a tldraw canvas with your voice and a pointing finger. Jev (TypeSafe System One) decides action, target and place in ~350 ms per spoken word. JavaScript ★ 2
Jev-chooses-a-LLMBodila51 Jev Router for Cursor - TypeSafe Jev picks COST/BALANCED/INTELLIGENCE, Cursor executes. TypeScript ★ 2
jev-decisionsbojansandhaus Safety checks for Hermes and other AI agents before they act, ask for approval, or verify a change. Python ★ 2
jev-gitAkashPriyadarshii Sub-second Git pre-commit & pre-push semantic reflex gate powered by TypeSafe AI Jev. Rust ★ 2
jev-layertypakon4 Portable System-1 decision layer for agent harnesses with host-owned routing, receipts, replay, and fail-open integrations. JavaScript ★ 2
jev-mailroomselcukusta Email triage PoC: reads a mailbox over IMAP and classifies each message by what it is and what it's about, using TypeSafe System One (Jev) — 11 questions in a single call, decided in Python. Python ★ 2
jev-mcprajasekharponakala MCP server wrapping TypeSafe's Jev System One models — typed noul/choice/score judgments for AI agents. Python ★ 2
jev-model-router (lucianfialho)lucianfialho Cost-optimized OpenRouter model router using TypeSafe's Jev, with a live full-catalog scorer instead of a hardcoded model list. Python ★ 2
jev-predict-skillDanielKillenberger Predict another skill's next closed decision with TypeSafe Jev — without running that skill. HTML ★ 2
jev-rust-reviewkindintelligence Rust-aware code review for Claude Code and coding agents, powered by TypeSafe Jev. Rust ★ 2
jev-scoutAkashPriyadarshii Zero-hallucination open-source repo and crate scout powered by TypeSafe AI Jev System One scoring. Rust ★ 2
jev-shieldcaiovicentino Semantic MCP firewall powered by Jev — screens every tool call, tool result, and tool description with calibrated System One verification. 94% block recall, 0 false positives, ~$0.00002/check. JavaScript ★ 2
jev-skill-gateShivamPansuriya Cut Claude Code's skill manifest by ~75% with TypeSafe Jev. Scores every installed skill for relevance and hides the rest via skillOverrides — 12,750 → 3,185 tokens on a 217-skill install, for $0.0009 a session. JavaScript ★ 2
jev-system-architectsamtay32 System-architecture skill for TypeSafe AI Jev/System One — find fuzzy semantic judgment and turn it into small Choice/Score/Noul primitives. ★ 2
jev-usecaseskenhuangus Production TypeSafe Jev (System One) use-case harnesses with confidence-gated decision logic. Python ★ 2
jev-workbenchmolis-ai Build versioned judgment functions on TypeSafe's Jev once, then call the same published version from your backend over HTTP and from coding agents over MCP. The vendor key stays on your machine. TypeScript ★ 2
JevHarnessTianyuCodings LLM-authored task-specific Jev harnesses with optional full-trajectory reward reflection and GEPA evolution. Python ★ 2
jevkitariel-frischer Fast Rust CLI for TypeSafe Jev: typed decisions, offline linting before you pay. Rust ★ 2
JevPromptCoachCrowdLinker Claude Code plugin that scores how well you prompt a coding agent, and shows whether your habits are improving. Runs on TypeSafe's Jev model. Zero added latency. TypeScript ★ 2
jevpruneibrahemid Filter command output for coding agents using a task description. TypeScript ★ 2
jevymarketmarkusbug Polymarket trading bot driven by Jev (TypeSafe AI) via OpenRouter. Python ★ 2
pi-fast-jev-compaction (KamilPostrozny)KamilPostrozny Fast JEV compaction extension for pi. TypeScript ★ 2
pi-jev-contextkevinpita Reversible context pruning for Pi, powered by TypeSafe Jev. Keep useful context without deleting session history. TypeScript ★ 2
pi-typesafe-jevlegacybridge-tech A pi extension that exposes TypeSafe (Jev, System One) judgments as five pi tools, so a model can make narrow semantic judgments while your code and your users keep control of thresholds, weights, and actions. TypeScript ★ 2
skill-routerlomeshdutta Tell Claude Code which installed skill a session needs, using Jev (TypeSafe AI) for the decision and skills.sh for discovery. Python ★ 2
slop-graderlukstei Rule-based slop grader for text files powered by Jev: evaluates markdown against customizable rulesets, outputting violation flags and scores for an AI agent to auto-fix. TypeScript ★ 2
tiershiftiamvatsalpatel Shift every LLM call to the cheapest model that can handle it. Routing decided by TypeSafe Jev in ~180 ms. No training data. Policy in plain YAML. TypeScript and Python. TypeScript ★ 2
todo-jevmaker-KK ⚡ Ultra-fast, low-cost intelligent task classifier and 3-tier routing engine powered by TypeSafe Jev (System One). Python ★ 2
typesafe-migration-guardopaielsheikh Automated database migration safety reviewer powered by TypeSafe AI (Jev System One model). TypeScript ★ 2
typesafe-modBeLazy167 Claude Code mod that routes decisions to TypeSafe's Jev model: ranks installed skills per prompt, and answers the agent's own this-or-that questions when confident. TypeScript ★ 2
windows-save-token-jev-setup455-dIAO Windows Codex Skill:通过 npx 或 Git 安装,安全配置 save-token-jev 的 PreCompact/SessionStart Hooks,并提供信任、原生压缩与旧内容隔离验证。 PowerShell ★ 2
agent-chaperoneagent-chaperone Screens an AI agent's tool calls before they run and tool results before the agent reads them. An MCP proxy plus a hooks adapter for a client's built-in tools. TypeScript ★ 1
Antigravity-mcp-semantic-search-with-TypeSafeAigreenyamao Fast semantic code search & diff sanity auditor for AI coding assistants (Antigravity, Cursor, Claude Code) powered by TypeSafe System One. Python ★ 1
ask-jevomni- Utilizing Jev, the RLCD-type model provided by TypeSafe AI, to independently and cheaply judge agentic coding sessions. PowerShell ★ 1
dgui-hypermemctaxnagomi DGUI-HyperMem (DeckerGUI HyperMemory) - self-hosted hybrid memory MCP server on Cloudflare Workers with a JEV (Choice/Noul/Score) reasoning layer and a HuggingFace training-brain flywheel. TypeScript ★ 1
instruct-jevctaxnagomi INSTRUCT_JEV - TypeSafe AI Jev / System One instruction corpus (choice/noul/score), compiled by DeckerGUI. 119 rows. Mirrored on HuggingFace. Python ★ 1
jev-engineeringeugeniughelbur Decision layer for coding agents: deterministic rules before any model call, then one Jev request, as a Claude Code PreToolUse hook, an MCP server, a loopback service and a team policy that personal overrides can tighten but not loosen. Ships the 300-call injection kit behind its own numbers. Python ★ 1
jev-firewallKoushik890 Real-time firewall for AI coding agents: a PreToolUse hook checks every Claude Code / Codex tool call with deterministic shell-aware rules, and unmatched actions go to Jev for a calibrated allow/ask/block that fails closed. TypeScript ★ 1
jev-model-routeraz9713 Jev (TypeSafe) model router on the Vercel AI Gateway. JavaScript ★ 1
jev-model-router (Mandrilsquad1441)Mandrilsquad1441 Pick the best AI model and reasoning effort for any task in ~1s. Plugin for Claude Code, Claude Desktop and Codex, powered by TypeSafe's Jev decision model and live OpenRouter pricing. Balance intelligence, speed and cost, or choose your priority. TypeScript ★ 1
jev-organizenexibeo Throw in a pile of company files and get them classified and organized by department, type, sensitivity, date, counterparty and PII, with an index for AI agents. Powered by TypeSafe's Jev on OpenRouter (17¢ per 1,000 files). Zero-dependency Node CLI + Claude skill + Codex agent. JavaScript ★ 1
jev-routingnekowasabi Go Jev harness for Claude Code, Codex, and Grok Build. No npx. Not an MCP server. Go ★ 1
jev-skillfulbestagentkits Per-prompt capability router for coding agents: resolves installed skills, MCP servers, agents and commands against your prompt via TypeSafe Jev, and measures whether the injection actually helps. TypeScript ★ 1
jev-triagecephalization Uses typeful jev, zero sync to pull and sync large repositories for issue triage. TypeScript ★ 1
jev-wrappedgaborishka Telegram channel X-ray: Jev judges a year of posts, you get a card. One Cloudflare Worker. JavaScript ★ 1
jevskilllazniak Teach your coding agent to stop burning context. Jev (System One) via OpenRouter or TypeSafe: 325ms, 0.000013 USD per decision. A/B tested 99.3% fewer input tokens with accuracy up. Ships a reversible reduce and a ledger that learns when Jev pays off. Python ★ 1
limpetnoplan-inc A Stop hook that stops your coding agent from stopping too early. Plain-language rules, judged by jev. Python ★ 1
magic-jevacharyaanusha A Magic 8 Ball for pull requests: click the ball and it answers "should I approve this?" with one of the 20 classic phrases, chosen by Jev from the PR's real signals in about 200 ms. TypeScript ★ 1
omp-typesafesiddicky TypeSafe AI (Jev) adversarial reviewer and typesafe_ask tool for the omp coding agent. TypeScript ★ 1
stepwardengetexcited Every tool call your agent makes, checked before it runs. A Claude Code plugin that uses TypeSafe AI's Jev to verify each pending tool call against the session plan, then allows it, asks you, or blocks it. Proof of concept. TypeScript ★ 1
agent-gate-loopRipwords Reusable GitHub Action: agent fix loop gated by checks, an AI reviewer, and TypeSafe Jev. TypeScript ★ 0
agent-handoff-gatezsoXi Experimental protocol for evidence-aware agent handoffs, with Jev-assisted review before results reach the lead agent. Python ★ 0
check-riskmoezubair A CLI and GitHub Action that assesses code-change risk using deterministic rules and TypeSafe Jev, recommending checks and reviewers before merge. TypeScript ★ 0
DGP (Decision Graph Protocol)numerous-com Experimental decision protocol whose Jev adapter evaluates framed evidence with typed choices, while application code validates permissions and commits simulated demo actions. Python ★ 0
frostmarcus A flexible and configurable CLI model router using TypeSafe Jev. Go ★ 0
hermes-jev-routerussyverse Experimental Hermes plugin: Jev-assisted model routing plans with budget and capability constraints. API access pending. Python ★ 0
jev-builder-looprainbowpuffpuff Grok skill: Jev as a judgment sensor in a builder-agent loop (priors × probabilities → next act). Python ★ 0
jev-gatesrashedInt32 Six hook gates for Claude Code that catch broken rules, out-of-scope edits, unfinished asks, and false claims, each judged by Jev against a fixed checklist and one piece of evidence. JavaScript ★ 0
jev-judgeohmyjiro Dependency-free CLI and Codex skill that send local state to Jev for batched typed judgments and return answers without echoing the state. Python ★ 0
jev-review (thiago-ss)thiago-ss Autonomous Jev pull-request review with typed decisions, calibrated approval gates, and trusted-owner escalation. Python ★ 0
omp-jevens-classifierSTRML Jev-powered model-judged permission gate for OMP (TypeSafe System One). TypeScript ★ 0
pi-agent-foremanalexshpunt Send Pi agents back to work when they stop before the job is done. TypeScript ★ 0
pi-jev-codeKamilPostrozny Single-agent Pi coding coprocessor with Jev semantic gates, baseline-to-current diff review, and append-only observability telemetry. TypeScript ★ 0
pi-typesafetwilwa Pi coding-agent extension built on the TypeSafe AI System One API (Jev). TypeScript ★ 0
switchboardaniruddh-krovvidi Guardrail + model router for LLM gateways on TypeSafe's Jev (System One model), with an independent accuracy/calibration/latency evaluation. Stdlib Python. Python ★ 0
typesafe-demo-mcpbestagentkits MCP server exposing TypeSafe System One judgments (noul, choice, score) as agent tools. TypeScript ★ 0
typesafeai-reviewrbalch Using Typesafe.AI to generate diff reviews. Python ★ 0
zcode-jevZahrannnn Typed judgment layer for coding agents — gates from PRD to ship. Jev-ready, provider-agnostic. TypeScript ★ 0
05 · Browser & computer use69 entries

Browser, desktop, and mobile automation with Jev choosing the action.

ProjectDescriptionLangStarsLinks
Jev Ultrafastbrowser-use Browser Use's ultrafast agent: Jev picks the operation and DOM element in one request; a small LLM only writes text when typing is needed. Python ★ 13,919
typesafe-computer-useawlevin Computer use for about $0.0002 a step: OCR the screen, classify the next action with TypeSafe, click. macOS. Python ★ 695
hermes-jev-skillskerpopule Jev-powered model routing, memory, compaction, skill selection, computer and browser use for Hermes agents (also Claude Code and Codex). Python ★ 338
mobile-jevdroidrun Standalone Android agent for Mobilerun where Jev makes every decision, with a live React studio and an Uber demo. JavaScript ★ 306
jev-browser-usewy-coliney 5–10x faster browser operations: Jev clicks, Codex thinks and verifies. Built at EZCollegeApp. JavaScript ★ 297
jev-browserjkudish Browser use using Typesafe's Jev model. TypeScript ★ 211
jev-voice-browsermoritzkremb Control a real browser by voice. Jev (TypeSafe System One) decides intent + target in ~300 ms per spoken word; Playwright acts — often before you finish the sentence. JavaScript ★ 187
unclutterkitze WXT browser extension: Jev-powered page clutter removal with reusable template rules. TypeScript ★ 153
typesafe-adblockrealZachi 🧹 Fun project: a Chrome extension that asks a tiny AI decision model (TypeSafe Jev) "is this DOM element an ad?" and pops it off the page. BYOK, no backend, not a real ad blocker. JavaScript ★ 64
jev-browser (Ying-Kai-Liao)Ying-Kai-Liao Browser automation where an LLM plans and Jev (Typesafe System One) decides. Library, CLI and MCP server. JavaScript ★ 62
vibecheckRafalWilinski Chrome extension: vibe-check your X posts with TypeSafe's Jev before you hit Post. JavaScript ★ 46
Jev Socialsocai-io Local Instagram, TikTok, and LinkedIn research where Jev chooses bounded socai browser operations and streams captured evidence into cited reports. JavaScript ★ 36
Jevbridgetacticocc ACP and MCP adapter that bridges TypeSafe Jev with any LLM — computer use and typed decisions alongside Codex, Claude, Grok, and OpenCode. TypeScript ★ 35
jev-reviewerchoxos Data extraction for systematic reviews, quoted from the papers. Ask a trial report and its supplements your extraction form or a RoB 2, ROBINS-I, QUADAS-2 or TIDieR template; Jev points at the lines, every answer is a verbatim quote with its page, you check it and export the table. Files stay in your browser. JavaScript ★ 30
jotrunta-dev The first general-purpose System One agent for Jev. TypeScript ★ 18
x-scanneroso95 Chrome extension that labels every post you scroll past on X with typed Jev judgments and a live cost counter. TypeScript ★ 15
jev-for-chromechy4pro Jev for Chrome: drives the tab you are looking at with TypeSafe Jev, a sub-second decision model. Community port of browser-use/jev-ultrafast, not affiliated with TypeSafe. TypeScript ★ 13
jev-egoromaluev TypeScript browser agent for ego lite: Jev Ultrafast indexed actions, TypeSafe Jev decisions, persistent observe/act CLI. No Chrome or Playwright. TypeScript ★ 12
live-jevvinilana 2D autonomous car simulation in the browser, driven by TypeSafe's Jev decision model. JavaScript ★ 12
jev-cookbooknexibeo Practical, tested recipes for TypeSafe's Jev decision model on OpenRouter: support triage, database indexing, file organizing, tagging, taxonomies, dedupe, PII detection, extraction, search re-ranking and a browser agent. JavaScript ★ 10
xtagsmanifoldor 在 X 的时间线上,给每条帖子标出它想让你干什么。判断来自 Jev,一个只返回概率、不生成文本的模型。 JavaScript ★ 10
sift (bohutang)bohutang Chrome extension that labels every post on X (Substance · Humor · Chit-chat · Promo · Junk · AI-written) with TypeSafe Jev, and hides the ones you don't want. JavaScript ★ 9
jev-ultrafast-mcpjiawei686 Hand the browser work off: an MCP server where a decision model drives the page for your agent, so a flow costs one tool call instead of a turn per click. Ref-based element tables, code-checked assertions, zero-model macro replay. Speaks CDP to your Chrome. Python ★ 8
aside-jevhimomohi Aside agents decide with TypeSafe Jev (System One: Choice/Score/Noul). Not a Cua binding — Jev is the model, Aside is the browser runtime. Python ★ 7
AskJevranjan2829 AskJev — Jev autopilot for any website + guard on irreversible clicks (TypeSafe System One, not Claude). TypeScript ★ 7
keys-MiniMax-Code-CLI-Browser-Scroll-Context-Enhancement-Pack-with-Jev-Ultrafast-Integrationdrowzeys Validated enhancement pack for MiniMax Code CLI on arm64 DGX Spark + local GLM-5.3-EXL3: TUI scrollbar + context-meter patches, compaction repair for local vLLM, Jev Ultrafast + Playwright MCP browser integration, real usage ledger. Python ★ 7
jev-agent-browserforvela Fast, bounded browser agents powered by Jev and agent-browser — typed actions, research, classification, and safe orchestration. JavaScript ★ 6
jev-test-filtermizchi Score every test against a git diff with Jev, and emit the filter arguments vitest, node:test, Playwright, cargo test and go test already understand. TypeScript ★ 6
jev-block-android-adufec JevNoiseGate filters unwanted notifications and SMS on Android. Rather than matching keywords, an LLM decides what's noise — and only what it explicitly flags is blocked. Verification codes are matched on-device and never uploaded; anything uncertain passes through. Kotlin ★ 5
jev-browser (tontoko)tontoko One grounded Jev/Playwright core: typed SDK, persistent CLI, and MCP server with native browser operations and deterministic assertions. JavaScript ★ 5
jev-weekend-shopping-chromelittlewindy123 把对双休的支持,带进每一次购物。逛淘宝、京东时,JEV 实时猜测商品背后的工作制,疑似非双休直接盖上 PASS。原页生效,边逛边选。 JavaScript ★ 5
jev-yt-time-saverjaibhasin A Chrome extension that covers distracting YouTube videos with Jev. Show anyway whenever you want. JavaScript ★ 5
lkcleanstefw Chrome extension that cleans up your LinkedIn feed: hides engagement bait, self-promo and off-topic posts using Jev, TypeSafe AI's typed classification model — and explains every decision. TypeScript ★ 5
jev-browser (vinilana)vinilana Hybrid browser harness: an LLM turns goals into verifiable subgoals, Jev chooses each action and DOM field, Playwright acts. TypeScript ★ 4
jev-mailmuhammedilyasy Chrome extension that triages Gmail with TypeSafe's Jev model: category, priority, spam % and reply % on every email. JavaScript ★ 4
computer_usepaulsmith MacOS computer use driven by Jev (TypeSafe System One) as the decision maker. Go ★ 3
jev-browsekyrylosyzonenko Drives a real browser with Jev making every decision and Vercel's agent-browser performing every action, with a benchmark. JavaScript ★ 3
jev-browse (0x7067)0x7067 Browser automation with Jev (TypeSafe) as decision model. JavaScript ★ 3
jev-buildercollapseindex A browser form for building requests to TypeSafe's Jev: pick a template, fill in the blanks, copy the request. No JSON, no install, runs locally. JavaScript ★ 3
jev-skipvalentynkit Browser extension that reads the YouTube caption track and paints a per-segment sponsor probability on the seek bar before the intro ends, with no crowd database. TypeScript ★ 3
jev-windows-voicemstf-svndk Türkçe ve İngilizce doğal konuşmayla Windows 10/11 bilgisayar kontrolü: OpenAI Realtime, local Whisper, Jev, UI Automation ve Playwright. JavaScript ★ 3
ottoNobleSpartan6 Open-source native computer use for macOS and Windows: TypeSafe Jev, local OCR, and selective planning. TypeScript ★ 3
slop-filteradamnroman Chrome extension that hides AI-generated posts and comments on X, LinkedIn, and Reddit. Scored by TypeSafe Jev. JavaScript ★ 3
ego-jevZephyrDeng Jev (TypeSafe System One) inner loop for ego-browser — one ~0.4s typed decision per DOM step instead of an LLM turn. Agent skill for ego lite. JavaScript ★ 2
ego-jev (jiangkoumo)jiangkoumo Drive the ego lite browser with Jev (TypeSafe System One): one indexed element table in, one operation + target out, single process. ~2x faster than a per-step LLM loop in our measurements. JavaScript ★ 2
jev-frontend-qaNainish-Rai Evidence-driven frontend QA built on Jev Ultrafast and Browser Harness, with a synthetic todo demo. Python ★ 2
jev-mobileFriedjof Fast structured Android control loops with TypeSafe Jev and Mobile MCP. Python ★ 2
jev-rabrnyxx Browser use for coding agents, 3-5x faster than browser-use. MCP server + CLI; TypeSafe Jev decides every step in ~300 ms. Python ★ 2
jev-shield (vmendes90)vmendes90 Privacy-first Chrome extension that semantically blocks native ads, sponsored feed cards, and video ads using TypeSafe Jev. TypeScript ★ 2
jevarenaraihankhan-rk JevArena — two Jev agents duel in click-only browser games (Browser Use + TypeSafe Jev). TypeScript ★ 2
JevOnlybuluoray Pure Jev that can "type" and drive towards task completion. Python ★ 2
turbosightmap Jev-powered semantic browser use. Go ★ 2
tweet-911elliothux Real-time AI / solicitation / parrot-bot scores for X posts and replies. Chrome extension + Workers API on open-compute, judged by TypeSafe Jev. TypeScript ★ 2
WinnowThinkyMiner Know before you click. A Chrome extension that reads articles and YouTube videos ahead of you and says read, skim, save, or skip — with a confidence, tuned to your goals. Open source, MV3, powered by Jev. TypeScript ★ 2
barruntoelpumberto A Chrome extension that brings TypeSafe's Jev to X.com to analyze posts as you browse. TypeScript ★ 1
Cerebellum-2Bmkeco Non-Autoregressive AI Agent Decision Model. Open-source SOTA alternative to TypeSafe Jev. O(1) Tool Routing & DOM Automation on Qwen3.5-2B . Python ★ 1
jev-browser-skillzurfyx Let Jev, TypeSafe's ~100ms decision model, drive your browser. A plug-and-play skill for Claude Code and Codex. JavaScript ★ 1
jev-playwright-mcpkrw82 Jev-augmented Playwright MCP proxy — page-state triage, prompt-injection shielding, goal-based snapshot pruning, risky-action gating. Drop-in wrapper around @playwright/mcp for any coding agent. TypeScript ★ 1
jevcumberRubyBrewsday Write Cucumber tests with just the .feature file. No step definitions — Jev (TypeSafe AI) resolves each Gherkin step and Playwright runs it. TypeScript ★ 1
jevplaygroundterryds Browser-only playground for Jev (TypeSafe AI's decision model) via Vercel AI Gateway. HTML ★ 1
psearchkomikat Parallel web search for terminals and agents, with local Chromium and Jev-guided exploration. Python ★ 1
browser-use-olympicseriestra Browser Use Olympics by Almond: one prompt, five events, one clock. Plus fast loop, a ~200-line browser computer-use agent (Chrome DevTools + TypeSafe Jev). HTML ★ 0
jev-browser (KesavanKing)KesavanKing Local browser automation UI that uses TypeSafe Jev to choose bounded page actions and a text model only for field values. Python ★ 0
jev-browser (MahmoudAdelbghany)MahmoudAdelbghany Jev-powered browser MCP for LLM agents — ~300ms decisions, no LLM tokens in the loop. Benchmark vs Playwright MCP included. JavaScript ★ 0
jev-page-verdicttorumitsutake Chrome extension that asks Jev whether the page you are on is selling something or reporting first-hand experience, and marks Google results with verdicts it already has or snippet-only estimates, leaving low-confidence ones undecided. JavaScript ★ 0
jev-reachrashedInt32 Chrome-devtools-mcp plus one tool: Jev walks the browser to the right spot, then your agent makes a single devtools call there. TypeScript ★ 0
JevTestCorieW Bounded exploratory browser testing with Jev, deterministic assertions, and replayable evidence. TypeScript ★ 0
sifttylergibbs1 Chrome extension that re-ranks Google results with TypeSafe Jev and folds away sales pages and SEO filler. TypeScript ★ 0
sloppy-jevs-extensionneddes Open-source Chrome extension that filters AI-generated prose and ads with Jev. JavaScript ★ 0
06 · Applications90 entries

Products, tools, and pipelines that call Jev.

ProjectDescriptionLangStarsLinks
jev-traderjarrodwatts One AI trade decision every Monad block. Jev on Kuru MON-USDC. TypeScript ★ 1,681
simple-jevfeatherless-ai Turn any open model into a classifier/jev endpoint. Python ★ 429
jev-align (Sutro)sutro-sh Active-learning CLI that uses human labels and GEPA to improve Jev decision definitions. Python ★ 253
notrausenotra Marketing analytics platform whose feature flag routes brand-visibility classifiers off an LLM and onto Jev boolean decisions. TypeScript ★ 199
jefflogan-markewich A self-hosted drop-in replacement for TypeSafe's jev, powered by GliFormer. Python ★ 184
jev-semgrepuehaj Grep by meaning, across languages. TypeSafe Jev scores every line against a meaning; combine meanings with AND/OR/NOT. 意味で探す grep。日本語で英語を、英語で日本語を検索できる. JavaScript ★ 123
LLM2JevYinsongxu Adapt local language models into Jev-compatible structured decision engines with Choice, Score, and Noul outputs powered by prefill-only binary inference. Python ★ 114
jevmeterChetasLua Put a live Jev (TypeSafe) meter on any video: every sentence scored, rendered as a 16:9 edit. Python ★ 78
jev-tradeaowang-ai Live Jev trader on Hyperliquid. TypeScript ★ 69
jev-voicekevinbadi Talk to your Mac. Local whisper.cpp + one Jev (TypeSafe) call per command + macOS automation. Python ★ 49
OpenDecisiondeepanwadhwa OpenDecision is an open-source semantic decision engine like typesafe's jev. Python ★ 44
Jev-Moderation-Botbrainstormity Real-time Discord moderation bot: Jev evaluates messages and metadata in parallel to catch phishing, spam, and social engineering with a progressive escalation ladder. Python ★ 42
blinkellipsis-dev Codebase search powered by Jev from @typesafe-ai. TypeScript ★ 35
commit-minerdevanshbatham Classify Git commit diffs and messages with Jev. Bug fixes, security fixes/CWEs, and change types. Rust ★ 31
refgardenAlbionaHoti A spatial reference explorer for creators. Local Jev query choices, metadata highlights and source-linked collections. TypeScript ★ 27
Jev-Tradeszadescoxp Trading bot with the all new TypeSafe AI's first system one model named as Jev. Python ★ 21
jev-mac-voicebrudarko English full-duplex voice control for macOS with OpenAI Realtime, native Accessibility, and Jev. JavaScript ★ 19
semdecidesharziki Typed semantic decisions for Unix pipelines and CI, powered by TypeSafe AI Jev. Python ★ 15
invalidatechopratejas The invalidation layer for AI memory. Every fact gets a lease; new evidence ends it. Built on TypeSafe Jev. Python ★ 14
jevocksunicodeveloper Everyday Stocks Status with Jev. TypeScript ★ 14
jev-gmail-ai-spam-filter-and-labelingilyamk Self-hosted AI email classifier for Gmail powered by Jev. Create custom labels, organize your inbox, and filter spam with confidence and cost controls. JavaScript ★ 12
jev-mail-classifierparth-kp Classify your inbox with Jev (TypeSafe's System One model) — tag, move, flag, and notify, all config-driven. Python ★ 11
Jev-Quantumkarminski 亚微秒级 System-1 模型,准确率服从高斯分布. Rust ★ 11
twitter-jev-guardqs-lll 使用 TypeSafe Jev 在 X/Twitter 时间线上识别低质量、垃圾和广告帖子,并在文字区域显示醒目的半透明水印。 JavaScript ★ 10
jev-cli (tumf)tumf Small dependency-free CLI for TypeSafe Jev. Python ★ 9
jev-leftpadf Left-pad strings with TypeSafe AI's Jev. For reasons. JavaScript ★ 9
jev-rerankhev Use Jev (TypeSafe's System One model) as a calibrated reranker: one call, up to 30 documents, a probability per document. Apache-2.0. Python ★ 8
jevlogsreachjalil Open-source Jev log triage for OpenTelemetry. Score the signal before expensive LLM analysis. TypeScript ★ 8
dohnutsPsiACE Dohnuts builds small multimodal models for direct decisions. -> System One model. Python ★ 7
jev_jsonschemaKiln-AI Run a JSON Schema through TypeSafe's Jev API, and get JSON back. Python ★ 7
jev-minesweepercomoc TypeSafe Jev (System One) にブラウザ上のマインスイーパーを解かせるデモ. JavaScript ★ 6
jev-rerankerhotchpotch Jev-powered relevance filtering and reranking for RAG in Python. Python ★ 6
ai-elo-rankeropaielsheikh High-speed recursive AI Elo tournament engine powered by Jev and Swiss matchmaking. Python ★ 5
jev_antispam_botbackmeupplz Minimal grammY Telegram anti-spam bot powered by TypeSafe Jev. TypeScript ★ 5
semantic-live-captionlimboinf 听写纸 · Real-time speech captions with live semantic annotation (key points / emotion / intent) — Confucius4-R2T2 + TypeSafe Jev + DeepSeek. HTML ★ 5
jev-grugmkotlikov Helping JEV speak <3. TypeScript ★ 4
jev-pr-labeler1jehuang Semantic GitHub PR labels using Jev's typed decisions, with conceptual scope instead of line counts. Python ★ 4
Jev-Register-Tool2951461586 TypeSafe(Jev / System One)申请 → 确认邮件 → 获批 → 注册 → 建 API Key 全链路工具,纯 HTTP 无浏览器. Python ★ 4
typesafe-cli (y0usaf)y0usaf Ask Jev typed questions from the shell: noul, choice, and score answers as numbers, not prose. TypeScript ★ 4
ai-provider-for-jevsoderlind Connect WordPress to TypeSafe's Jev System One model for structured decisions (choice, score, noul). PHP ★ 3
citation-verifierMarissaFamularo Check whether each cited paper supports the sentence citing it. Claude proves the quote, TypeSafe's Jev scores it, a human decides. JavaScript ★ 3
everysufianetaouil Ask a yes/no question of every function in a codebase. Ranked answers in seconds, for cents. Grep whose pattern is a question, powered by TypeSafe Jev. Python ★ 3
jev-docs-zhBald0Wang Jev 模型(TypeSafe AI)官方使用文档的中文翻译 | Unofficial Chinese translation of the official Jev (TypeSafe AI) docs — https://docs.typesafe.ai. Python ★ 3
jev-resume-disqualifierAiPersonacademy Jev Resume Disqualifier: Sub-25ms automated resume knockout engine powered by TypeSafe Jev System One decision intelligence. Eliminates 80% of unqualified applicants with deterministic date math & EEOC-safe rejection notices. Python ★ 3
jev.nvimvalentynkit Neovim plugin that asks the buffer a plain-language question: Treesitter splits it into functions, Jev scores each one, and answers land in quickfix ranked by probability. Lua ★ 3
jevflowMawfyy Probabilistic AI decisions as composable backend primitives — typed judgments (noul/score/choice), deterministic thresholds, and explainable workflows. Powered by TypeSafe's Jev, provider-agnostic. TypeScript ★ 3
jevify (Mintzs)Mintzs An optimized inference engine to turn LLMs into Jev-like machines: optimized for quick, lightweight, and accurate decision-making, classification, and scoring. Python ★ 3
jevsqlEugeneBoondock SQL with natural-language predicates, powered by TypeSafe's Jev. Filter, rank, classify and score rows by meaning — batched, cached and cost-guarded. JavaScript ★ 3
jselectkeltokhy Selects source-linked evidence within a token budget using Jev Noul relevance judgments and local diversity-aware selection. Python ★ 3
llm-to-jevalexwestco Convert LLM prompts to Jev prompts. JavaScript ★ 3
smart-switchreycn Reimagined window switcher for macOS using frontier artificial intelligence. Predicted by TypeSafe's Jev model. Swift ★ 3
systemone-litefritzprix Toy local System One–style decision API (Jev-shaped). Not affiliated with TypeSafe. Python ★ 3
typesafe-gosd109 A collection of typesafe.ai API utilities. Go ★ 3
typesafe-jevgtaras7 Screen a folder of CVs with the TypeSafe Jev decision model: typed judgments, an editable policy, free re-scoring. TypeScript ★ 3
verdictkhimaros Turn any llama-server into a jev system one endpoint. Python ★ 3
btc-jev-signalWebGrga Experimental multi-horizon BTC signal generator using TypeSafe Jev probabilities and Binance market data. TypeScript ★ 2
hearth-jev-rental-searchNancy-Chauhan Autonomous multi-source rental search powered by TypeSafe Jev. JavaScript ★ 2
jev-audio-beepersantos-sanz Low-latency audio censorship POC using Jev typed decisions and ffmpeg. TypeScript ★ 2
Jev-AVnewuser7171 Antivirus scanner and real-time defense sentinel: extracts structural features from executables, scripts, and documents (entropy, hashes, strings, PE imports) and has Jev judge whether each is malicious. Python ★ 2
jev-clijtsang4 CLI for TypeSafe AI's Jev evaluation model — typed questions in, structured JSON answers out. TypeScript ★ 2
jev-cvssRed5d Fast CVSS scoring from vulnerability descriptions using Typesafe Jev. Python ★ 2
jev-document-classificationCharlyhno-eng JEV Document Classification enables the rapid and cost-effective classification of text-based documents using AI, leveraging TypeSafe's "System One" model. TypeScript ★ 2
jev-lm (uhhfeef)uhhfeef A character-level language model built on Jev, a System One classifier. Python ★ 2
jev-reranker (shinpr)shinpr Rerank, filter, and compress JSON search results with TypeSafe AI's Jev. Rust ★ 2
jev-rsyijunyu System One judgments (noul/choice/score) from any LLM in one prefill — a Rust, Jev-compatible /v1/systemone engine. Rust ★ 2
jev-treereachjalil Recursive Jev choice over a taxonomy. Select from more than 255 options without breaking TypeSafe Jev's choice cap. TypeScript ★ 2
jev-voice-controlchris-wozniczek Control your Mac by voice. Speech → Jev (TypeSafe AI System One model) typed decisions → macOS actions. Menu-bar Swift app. Swift ★ 2
jevibe-checksriganesh A live tone labeler for Bluesky posts and drafts, using TypeSafe's Jev API. JavaScript ★ 2
jevstudiointeligenciamilgrau Jev Studio para criar programas usando Jev da TypeSafe. Python ★ 2
jlinkkeltokhy Links records under a plain-English match rule using Jev Noul pair judgments, with local candidate blocking and match resolution. Python ★ 2
nlgrepYehuiTang0316 TypeScript CLI that finds code, docs, logs, and text by natural-language conditions using Jev Noul judgments, with probability thresholds, source lines, and cached results. TypeScript ★ 2
pagegradekitze Grade page sections for clarity, writing and on-page SEO. WXT + TypeSafe AI Jev. TypeScript ★ 2
commentcopntedvs Put your code comments on trial. Powered by Jev. TypeScript ★ 1
emoji-jevcolinmcdermott Emoji autocomplete at the speed of typing. TypeSafe AI Jev on a Whop-hosted TanStack Start app. TypeScript ★ 1
JackalopeJackalope-Dev Desktop GUI for agentic coding that routes tasks across local agents and accounts, with Jev picking the best agent per task, running basic code-review checks, and supplying context. Rust ★ 1
jev-logtriagejyatesdotdev Jev scores collapsed log batches; code maps answers to suppress, watch, review, notify, or page. Nothing is executed. Python ★ 1
JevTicktRouterGhrezaKh74 A .NET 10 and React 19 application for fast, structured AI-powered ticket triage using TypeSafe Jev. C# ★ 1
dmx.to X client with Jev smart rules that filter the timeline by usefulness, type, and topic.
draftpulsepekth Experimental: live X draft viral scorer powered by TypeSafe Jev. TypeScript ★ 0
Jev Classifier Local Telegram channel JSON analyzer for intent, quality, sentiment, and speaker tone.
jev-A-share-traderEric-Zhou-0302 Local A-share technical analysis using Jev Choice and Noul questions to assess direction and volatility across two horizons, with evidence for Buy/Hold/Sell assessments and no order execution. Python ★ 0
jev-resume-analyzerawun8191 CV diagnostics and job alignment with TypeSafe Jev, React and FastAPI. Python ★ 0
jevegis0xArx Guardrails for LLM apps in one API call. Prompt injection, jailbreaks, leaks, unsafe content. Built on TypeSafe Jev. MIT. TypeScript ★ 0
mimicryjxucoder Rewrite AI drafts in your own voice with a bounded TypeSafe feedback loop. Python ★ 0
pkg-gatehemanth Pre-install security gate for npm lifecycle scripts using TypeSafe System One. JavaScript ★ 0
s1scpaczek System One Search: navigate and trace code with TypeSafe judgments and repository evidence. TypeScript ★ 0
scam-shieldShupingR Scam text message filter powered by TypeSafe's Jev model. TypeScript ★ 0
transcript-scorecardbrandonbryant12 ACME live support-call scoring demo with TypeSafe AI, Effect, SQLite, React, Vite, and Turborepo. TypeScript ★ 0
typesafe-commentHexdigest123 Small Python package that uses typesafe.ai to evaluate code comments on certain heuristics. Python ★ 0
typesafe-triage-guardshivam2003-dev Three composable judgment pipelines on TypeSafe's Jev: support-ticket triage, observability alert triage, and a deploy-risk gate. Python ★ 0
07 · Games & simulations61 entries

Games and simulations with Jev making the moves.

ProjectDescriptionLangStarsLinks
typesafe-mariofhshaik A TypeSafe/Jev agent that plays Super Mario Bros. from structured emulator state. Python ★ 315
embodied-jevFBddcz EmbodiedJev: MuJoCo robot decision workbench with MiniCPM5-2B, Jev and compatible model APIs. Python ★ 149
jev-droneRomanSlack Camera-only autonomous drone in MuJoCo with a small judgment model (TypeSafe Jev) in the loop at 2.5Hz. Python ★ 97
jev-liberoDimweaker Fine-grained robot control with Jev, physics previews, and configurable LIBERO tasks. Python ★ 41
RoboJEVlykycy123 Two-stage JEV control of a Franka Panda in MuJoCo. Python ★ 21
typesafe-snakesorrycc Snake auto-played by TypeSafe's Jev model: one System One choice per tick, legal moves and facts generated in code. TypeScript ★ 20
tsai-scphyous TypeSafe Jev controls original StarCraft shareware through keyboard and mouse with recorded action probabilities. Python ★ 19
PlayJevOmniJev Play ten browser games from the screen with a 0.8B open model that returns a probability over the game's legal moves in one forward pass, no text generated. JavaScript ★ 15
jev-reflex-autonomy-labkhordoo Multi-drone autonomy lab demonstrating TypeSafe Jev reflex decisions with optional System 2 strategy guidance. TypeScript ★ 12
mario-jevshantanugoel Python prototype that plays NES Super Mario Bros. from structured RAM observations, with Jev answering focused movement and jump questions. Python ★ 12
Jev Driving Labkavehmz Interactive experiments from support routing to a 3D driving simulation: structured sensor state in, typed steer, brake, and overtake decisions out. JavaScript ★ 11
OneVOneJevemrickgarrett 1v1 Jev quickscope arena — Three.js + TypeSafe System One. TypeScript ★ 9
jev-askable-armTarunTomar122 Zero-shot English goals on a sim Franka. Jev chains hardcoded primitives. Python ★ 8
heist-oneAbdelStark Observable browser stealth game: Jev makes typed guard judgments while deterministic code owns the world. TypeScript ★ 7
jev-tetris (trungdq88)trungdq88 Jev play Tetris in real-time against other AI models. JavaScript ★ 7
hundredjammaru 100 AI NPCs live in a tiny town. Jev chooses the next action; the world writes the story. TypeScript ★ 5
jev-doom-agentlukaske A browser-native Doom agent experiment with structured spatial state, composable AI controls, live decision telemetry, and a Chocolate Doom WebAssembly runtime. TypeScript ★ 5
agi-jev-containmentcarlosedm10 AGI JEV Detection — local AI agent monitor: chain-level malicious-agent detection (TypeSafe Jev + Sentinel), escalate-only L1–L5 containment, Neo4j forensics, AngryRobot dashboard. HackSpain 2026. Python ★ 4
jev-grand-prixenoyola An F1 racing game where TypeSafe's Jev picks the racing line and the pedals, and learns each corner's limit between laps. JavaScript ★ 4
jev-plays-pokemon-redvalentynkit Pokemon Red on PyBoy where code owns the route and the arithmetic, Jev only picks at branches, and every battle turn's faint prediction is scored by Brier against RAM state. Python ★ 4
gg-friggin-ezItisShikhar Fast, drop-in profanity and toxicity screener for Node.js, powered by TypeSafe AI Jev. Catches leetspeak, character spacing, and romanized profanity across languages including Kannada, Telugu, Tamil, Hindi, and Bengali. ~50-500ms latency. TypeScript ★ 2
jev-arena-nanojevliao96312 完全本地的 NanoJev 网格决策游戏实验场,支持中文 Pygame、多关卡与 GTX 1660S 训练. Python ★ 2
jev-play-ping-pongIcohen007 Jev plays browser table tennis in real time: structured telemetry, typed decisions, ordinary Chrome inputs, and auditable evidence. JavaScript ★ 2
jev2048 (erhanmeydan)erhanmeydan TypeSafe'in Jev karar modeli gerçek bir online 2048 sitesinde oynuyor — hamle başına tek API çağrısı, tek anahtar. Python ★ 2
jevballatarikcaliskan 22 Jev models, one ball: a 3D football match where every player is its own Jev (TypeSafe AI System One) decision. Watch, or take over the number 9. JavaScript ★ 2
rubikjev0xtrou Challenge the Jev's intelligence in Rubik Cube puzzles. TypeScript ★ 2
Agent-JEV-TetrisYasserbhb Using the new model JEV to play the game tetris. HTML ★ 1
jev-gomoku (XieChengYuan)XieChengYuan 弈瞬:双 Jev 五子棋九宫格输入实验台,逐手查看模型决策,支持真实对局回放与实时对战。 JavaScript ★ 1
jev2048KyleKreuter Let Jev (TypeSafeAI) solve 2048. TypeScript ★ 1
tsai-civ2phyous TypeSafe Jev plays original Civilization II in a browser, with live action probabilities. Experimental full-game harness. Python ★ 1
typesafe-minecraft-demoellistev A Minecraft Java player controlled by TypeSafe AI, with live decisions, Canadian flag building, and a side-by-side dashboard. JavaScript ★ 1
beatjevlambertsj Browser game: try to beat Jev at spotting a spam message. JavaScript ★ 0
casse-brique-typesafePara-FR A Next.js brick breaker whose paddle is controlled in real time by TypeSafe AI's Jev model. Built with Claude Code. TypeScript ★ 0
chess-jev 3D chess where Jev plays both sides, or you jump in.
cyber-breach-jevrchovatiya88 Cyber-Breach: The Jev Protocol - A tactical cyberpunk arena combat game powered by TypeSafe AI Jev System One decision model. JavaScript ★ 0
Game Plan Small game that tests how Jev handles unknown input.
Hollow Creek Village NPCs that judge you each tick, deciding what to do and how they feel, instead of chatting.
Jev Arcade Krunker-style 1v1 FPS where Jev decides move, aim, ADS, fire, and jump at about 9 Hz.
Jev board games Playable board games driven by Jev decisions.
Jev Pac-Man The maze as JSON; Jev picks the turn at each junction in real time.
Jev Tetris Jev picks rotation and column from holes, stack height, and bumpiness.
jev-bfskomikat Wikipedia link races with direct Jev ranking and a live terminal display. Python ★ 0
jev-gamesshantanugoel Visual Jev lab for multiple games and emulator platforms. Python ★ 0
jev-gomokumizchi MoonBit client for Jev plus a Jev-vs-Jev gomoku match, with timing logs. MoonBit ★ 0
jev-snakeiammusham An experimental Snake environment where the game engine owns deterministic rules and TypeSafe AI's Jev makes the movement decision from structured state on every tick. Python ★ 0
jev-t-rex-runnerjoshlarsen Chrome dino game played by Typesafe AI Jev model. JavaScript ★ 0
jev-tetrisMachineLearning-Nerd A visual TypeSafe demo where Jev chooses verified Tetris placements. Python ★ 0
jev.modsHardel-DW Minecraft mod where Jev tries to finish the game from scratch without a scripted route. Java ★ 0
last-exit0x963D A cyberpunk border encounter powered by TypeSafe Jev. Bluff the guard. Inspect the receipts. JavaScript ★ 0
pdoom-protocolonionminionops-beep USER + JEV: P(DOOM) PROTOCOL — co-op platform shooter where TypeSafe Jev plays alongside you. TypeScript ★ 0
pong-jevsafzanpirani TypeSafe's Jev plays Atari Pong. One typed Choice question per frame, no coordinates sent to the model. TypeScript ★ 0
ps2-ai-agentopaielsheikh Autonomous PlayStation 2 AI Agent with real-time visual telemetry HUD powered by TypeSafe Jev System One. Python ★ 0
river-oaksBunsDev NPCs of River Oaks Houston, Texas using Jev to power NPCs. JavaScript ★ 0
river-run-typesafeashaazami River shooter game in Python, inspired by Atari's River Raid, played by a TypeSafe AI pilot. Python ★ 0
roverlabjuancamiloqhz A 3D planetary rover sandbox for experimenting with autonomous decisions using TypeSafe AI. TypeScript ★ 0
shady-towntpaulshippy Shady Town: social-deduction party game for the living room TV, moderated by TypeSafe Jev. Ruby ★ 0
siegevnmoorthy SIEGE: 200 people vs one agent. A typed action gate (TypeSafe System One) that learns from every breach, evaluated by W&B Weave, hardened by a defender loop. Built at CoreWeave Hacks: Agent Loops 2026. TypeScript ★ 0
snake-jevsiroccomask Snake controlled by parallel Jev assessments, with one API call per game tick. Python ★ 0
terrariumTheGali A sandbox where a TypeSafe System One model presses the controls of a small creature. Code runs the world. JavaScript ★ 0
typesafe-3d-chessmalDuffin 3D chess powered by TypeSafe AI (Jev). AI vs AI by default, or play either side. Multiple difficulty levels. TypeScript ★ 0
typesafe-chessTholeG Chess where both players are TypeSafe's Jev model: every move is a typed Choice decision. JavaScript ★ 0
08 · Demos & playgrounds72 entries

Live demos and playgrounds.

ProjectDescriptionLangStarsLinks
jevcachehyperspaceai A decision cache for TypeSafe Jev-class models — memoize decisions so repeats are free, deterministic, and shareable. One 2 MB binary. ★ 62
killmyideamonteduro Describe your startup idea. Jev decides: kill it, fix it or ship it. TypeScript ★ 48
jev-spring-boot-starterdanvega A simple Spring Boot 4 starter for TypeSafe Jev using Spring MVC and RestClient. Java ★ 22
typesafe-ai-playground (BunsDev)TypeSafeAI Community TypeSafe AI playground: 110 use cases, games, dilemmas and model challenges, with editable prompts, A/B comparisons and a mobile-friendly UI. TypeScript ★ 16
jev-mejon-devlapaz A grill-me style interrogation of your idea, with Jev doing the grilling. Python ★ 13
flue-jev-demomatthewp Flue agent routing with TypeSafe Jev through Cloudflare AI Gateway. TypeScript ★ 9
jev-autopilotarielweinberger This demo uses Jev from TypeSafe AI to autonomously fly a drone in a random city from point A to point B, avoiding obstacles along the way. A trip costs $0.01. TypeScript ★ 8
Instinctjoevidev Instinct: describe a case in free text and Jev picks the UI from a fixed catalog without generating a line of code or copy. TypeScript ★ 6
jev-ultralightspeedcollapseindex BRRRRRRRRRRRRRRRRRRRRRR. Python ★ 6
jev-system-onehaseeb-heaven A polished OpenAI + TypeSafe Jev terminal interface for answers with transparent decision reports. Python ★ 4
jev-notionjeffloo886 🚀 Blazing-fast native macOS menu bar companion for Notion. Pure Swift & SwiftUI (<3MB), 8 languages. TypeScript ★ 3
jevseoepergaboni Typed SEO, AEO and GEO judgments powered by Jev, a System One decision model. Code owns the rules, the model owns the meaning. TypeScript ★ 3
typesafe-ai-playgroundnickthompson480 Community TypeSafe AI playground: 110 use cases, games, dilemmas and model challenges, with editable prompts, A/B comparisons and a mobile-friendly UI. JavaScript ★ 3
clarity-judgeTypeSafeAI Multi-axis writing quality checker powered by TypeSafe AI's Jev model. Separate named checks, each with its own verdict and confidence. TypeScript ★ 2
intelliprompterfinetuningsingh A teleprompter of talking points that checks each one off as you cover it, using TypeSafe's Jev Score questions. HTML ★ 2
jev-aicodaaiteam Jev AI quickstart & FAQ — TypeSafe AI's System One model. Try it free: jevtypesafeai.com. ★ 2
jev-cloud-quizminorun365 三大クラウドの機能名を、TypeSafe AI の System One モデル Jev が確率つきで判定するデモ. TypeScript ★ 2
jev-pii-checkercoo-quack CLI that finds PII in text with TypeSafe Jev: presence, sensitivity, and located spans. TypeScript ★ 2
jev-resume-matchhamidfarmani Score how well a resume matches a job description using Jev (TypeSafe AI). Next.js app that returns typed, explainable match scores instead of generated text. TypeScript ★ 2
jeverywordjkrup Text extraction with Jev: field extraction, PII detection and exact quotes, built on TypeSafe's Jev. JavaScript ★ 2
jevguide2456868764 Curated Jev showcases from X, organized by category with media previews and direct source links. ★ 2
jevmojicheeaun Type anything. Get related emojis scored 0–3 with Jev. JavaScript ★ 2
rover-claude-jev-demoDevonance Just a weekend project with Claude as system two, and Jev as system One. JavaScript ★ 2
Should AI Kill Us All?hellogumbo Live verdict page: feeds Jev the day’s Florida Man, odd-news, politics and world headlines and asks all three primitives whether AI should kill us all, refreshed every ten minutes. JavaScript ★ 2
got-jevphureewat29 Jev (TypeSafe AI) PoC through Game of Thrones. TypeScript ★ 1
gpt-vs-jevTanayPadar Compare GPT generated language with JEV structured Noul decisions on the same input. TypeScript ★ 1
guard-jevNorbertBodziony Comment-moderation playground: paste a comment, Jev decides what to do with it. TypeScript ★ 1
harden-jev-decidestylerjharden JEV picks which stream idea becomes the live MVP. TypeSafe System One decision board. TypeScript ★ 1
jev_projectsX0EF List of projects that use typesafe's jev. JavaScript ★ 1
jev-connectorjuanlentino WordPress connector for the TypeSafe System One API (Jev): typed questions, confidence-scored answers, core Connectors API key management. PHP ★ 1
jev-information-extractionabhishekmamdapure Parsing the PDF and extracting the relevant information. Python ★ 1
JEV-languageNolane-x Give your Jev language. TypeScript ★ 1
jev-playground (Little-Planet-Labs)Little-Planet-Labs A small Next.js app for experimenting with TypeSafe AI's Jev model (System One). TypeScript ★ 1
jev-practice-speedtubone24 A WebGL demo where you play the card game Speed against a CPU whose brain is TypeSafe AI's Jev. The whole point of the app is to measure and show Jev's decision speed and decision accuracy in real time. JavaScript ★ 1
jevcodemiounet11 JevCode — Jev (TypeSafe System One) 技术解决方案与最佳实践 · https://www.jevcode.ai. TypeScript ★ 1
jevtrafficsimskcache TypeSafe AI's first model Jev takes on an entire city's traffic. TypeScript ★ 1
Postmarksilky-x0 A working Demo that acts as classifier to classify linkedin post which inside uses jev by Typesafe.ai. TypeScript ★ 1
toolgatendolinschi Agent tool/MCP call gate — allow / ask_human / deny via TypeSafe Jev. TypeScript ★ 1
typesafe-ai-playground (markjaquith)markjaquith A playground for experiments around Jev, TypeSafe's System One model. Rust ★ 1
typesafe-arenaDeepBlueDynamics A playground for TypeSafeAI's Jev Model. Rust ★ 1
cartshieldndolinschi CartShield — SMB checkout fraud disposition via TypeSafe Jev. TypeScript ★ 0
Crowdcheck Test a post against 10,000 synthetic personas before you publish it.
extremely-specific-councilcbetz Twelve members. Zero qualifications. A playful TypeSafe AI council with animated votes, inspectable decisions, and shareable verdicts. TypeScript ★ 0
Formatho Jev Playground Browser-based request builder for the System One API: compose state plus typed Noul, Choice, and Score questions. Mock mode runs locally without an API key; Live mode requires your TypeSafe key and calls api.typesafe.ai directly. Generates typesafe_sdk Python. Includes companion Jev Suitability Test.
harnessjudgendolinschi Judge agent steps — ok / retry / escalate / stop via TypeSafe Jev. TypeScript ★ 0
hiresignalndolinschi HireSignal — resume first-pass fit+interview via TypeSafe Jev. TypeScript ★ 0
human-compilerasfarsadewa A compiler for human language. Paste text, get diagnostics. Measured by TypeSafe Jev. TypeScript ★ 0
Jev Gamecastnarulaskaran Jev Gamecast: replay-first React app that asks Jev typed questions about live sports data. TypeScript ★ 0
Jev mood demo Talk nicely or nastily over time; structured state tracks the mood.
Jev Room One sentence becomes six room settings. Jev chooses, the app renders.
jev-ad-preflightcardotrejos Typesafe/Jev public X demo. ★ 0
jev-board-labWebGrga Interactive explorer and Jev question workspace for Jev Board datasets. JavaScript ★ 0
jev-bun1heiwa4126 TypeSafe の Jev を TypeScript SDK で使ってみる最初の 1 歩. TypeScript ★ 0
jev-demosBud-ro Demos to test the effectiveness of TypeSafe's "Jev" System One Model. Dart ★ 0
jev-devn-yokomachi 同じ発言を jev と LLM の両方に判定させ、感情の変動値のズレと応答速度を1画面で見比べるデモ(affectus + Vercel AI Gateway). TypeScript ★ 0
jev-paper-judgeJacobLinCool Feedback on your paper in seconds. TypeScript ★ 0
jev-playground (wustep)wustep Can a System One model steer music? Jev picks the plan (enums only); code renders sheet, audio and MIDI. TypeScript ★ 0
jev-should-i-applycardotrejos Typesafe/Jev public X demo. ★ 0
jev-user-jurycardotrejos Typesafe/Jev public X demo. ★ 0
jevplayndolinschi TypeSafe Jev playground — custom Choice/Score/Noul builder with live distributions. TypeScript ★ 0
Job Risk AnalyzerWeSecureYou Job Risk Analyzer: CLI and REST API that uses Jev to score an occupation's exposure to AI-driven layoffs and its resilience. TypeScript ★ 0
lanebreakndolinschi LaneBreak — support ticket priority+routing via TypeSafe Jev. TypeScript ★ 0
mcpmatchndolinschi Match user goals to MCP catalog (two-stage) via TypeSafe Jev. TypeScript ★ 0
ProbablyJordiParraCrespo Probably: live BTC, ETH, and XRP prices with a shared TypeSafe buy-or-wait demonstration. No trades placed. TypeScript ★ 0
pulselanendolinschi PulseLane — clinic triage decisions via TypeSafe Jev. TypeScript ★ 0
Search-Function-TestShifros A test project based on Jev AI, the goal is to build a search function for a blog/article website that has 100s of articles to search from, So the user can actually use the search as chat to question anything and find related answers/articles. JavaScript ★ 0
spendbrakendolinschi Agent budget brake — continue / downgrade_model / stop via TypeSafe Jev. TypeScript ★ 0
swarmrouterndolinschi Route tasks to research/code/browser/support/writer agents via TypeSafe Jev. TypeScript ★ 0
trustgatendolinschi TrustGate — indie media T&S gate via TypeSafe Jev. TypeScript ★ 0
TypeSafe Typewriter Val Town demo where 16 typed judgments update live as you type.
typesafe-image-diffusionWizhill05 Diffusion-style pixel art out of a classifier: 256 parallel per-pixel Jev questions plus refinement passes. HTML ★ 0
Yes / No Free, no-signup Noul demo. Ask a question, get yes, no, or maybe, with web search when needed.
09 · Benchmarks & research155 entries

Benchmarks, evals, calibration studies, and open replicas.

ProjectDescriptionLangStarsLinks
SemIfTheoLeeCJ Semantic ifs from open models, on a 3090 at home. Independent; not affiliated with Jev or TypeSafe. Python ★ 2,775
NanoJevTianyuCodings A nano replica of Jev: parallel decisions, dynamic candidates, and an end-to-end training pipeline. Python ★ 1,678
jevlikevinnylarouge Train a small model that chooses among a changing list of text options, one probability per option in a single pass. Includes Doom, chess, and Wikispeedia demos. Python ★ 1,138
vonwfzyx The open-source System One decision model. Sub-15ms, non-autoregressive, local drop-in alternative to TypeSafe Jev. Python ★ 304
openjevrazorback16 Open, Jev-compatible System One decision server on DiffusionGemma. Python ★ 250
openJev-verdict-2.0Heman10x-NGU Calibrated 151M Non-Autoregressive Decision Engine beating TypeSafe Jev & Laya on LocalLLaMA/typed-decisions (77.10% acc, 0.0636 Brier, 0.0144 ECE). Python ★ 223
jev-visualhr98w An educational Jev-like visual inference experiment on Apple Silicon: shared context, direct candidate scoring, and local visual demos. Python ★ 192
deciderMapika One-pass typed decisions with calibrated probabilities (System One style model), fine-tuned from Qwen3.5-2B. Python ★ 180
jev-eval-agentvinilana Personal-assistant agent built on Vercel's eve with 100 mocked tools, measuring how many steps it takes when Jev picks the tool versus the LLM. HTML ★ 99
reflexkshetrajna12 A small open decision model: state + typed questions -> calibrated probabilities. A Jev / System One re-creation on Qwen3.5. Python ★ 92
open-jev (daseinlabs)daseinlabs One-pass option scoring with a local Gemma 3 4B on Apple silicon via MLX, inspired by jevlike, with a Doom demo. Python ★ 82
Verdict-open-jevHeman10x-NGU Non-autoregressive decision engine on ModernBERT (151M) with calibrated uncertainty (RLCD), TypeSafe AI Jev benchmark audit, and in-browser WebGPU playground. Python ★ 58
jev-as-a-judgedanielgshea Using Jev as an evaluator. Python ★ 52
jevmlxbnsd55 Jev-style parallel constrained decisions for any MLX model on Apple Silicon. Typed, schema-valid JSON in one forward pass. Python ★ 51
jevbenchfstandhartinger JevBench v1 - a benchmark for Jev-class typed decision models: smart, cheap, fast, reliable, open. Python ★ 44
open-alternative-jevikermoel Open alternative to Jev: typed, calibrated decisions from any open-weights LLM in one forward pass (HF + vLLM), with benchmarks. Python ★ 43
mini-jevr-ms Mini-Jev: what a Jev-style typed-decision interface looks like on a frozen Qwen3-4B — read the option letter's logits instead of generating JSON. Preregistered experiment, results, teaching bench. Python ★ 38
LitJevzhengxuyu A reproduction of Jev that turns any Qwen model into a fast decision model, serving the same /v1/systemone schema (Choice, Score, Noul) with no training and no generated answer text. Python ★ 35
typesafe-ai-benchmarkiammrduncan This is a LLM Gateway that mimics typesafe ai structured output. Like an imposter Jev. TypeScript ★ 33
TypeARTypeLLM Type-safe one-decision-per-token decoding engine for autoregressive LLMs, inspired by Jev. Python ★ 28
jev-dataopsRenaGao An open-source JEV-powered workbench for streaming data selection, quality evaluation, automatic LoRA training and held-out model evaluation. Python ★ 26
openjev (zhihz)zhihz Local bilingual probability decisions from context, questions, and candidate answers. Independent research preview inspired by TypeSafe Jev. Python ★ 25
system-one-openmithalouni Open replica of TypeSafe's Jev: typed calibrated decisions in one forward pass, on Gemma 4 E2B / Gemma 3 270M (Modal). Python ★ 24
jev-capability-atlasZaious Independent, evidence-based map of when TypeSafe's Jev actually holds up vs. breaks down — real API-call receipts, not a leaderboard. 中文為主的雙語 repo。 Python ★ 23
jev-on-a-laptoprorshopping Unofficial study: Jev-style parallel typed decisions on stock 1.5B-8B models on an Apple Silicon laptop. Benchmarks, research notes, and a Hugging Face Space demo. Python ★ 23
Jev_appsJackZeng 看看 Jev 能做什么:用中英文讲清热门应用、工作原理和各自优缺点。Explore Jev apps with plain-language examples, explanations, and comparisons. Python ★ 22
open-jev (JoshuaSP)JoshuaSP Typed JSON inference with DiffusionGemma, with Every and Jev benchmark results. Python ★ 21
system-onesgoedecke Batched single-token choice inference for open language models, compatible with TypeSafe. Python ★ 21
jev_localArgos1111 Replicating Jev with a local LLM. Python ★ 19
jev-column-racegoodrahstar Jev vs Gemini 3.8 Flash: labelling 1,000 app reviews, 4.1× faster and 7× cheaper. JavaScript ★ 19
jevifyaltryne An agent skill to discover TypeSafe Jev opportunities, design typed questions, and learn from recent community experiments. Python ★ 18
jev-studioutk2103 If you're experimenting with jev it will be easier from here. Python ★ 15
jev-benchmarksAbdelStark Probability-aware evaluation for typed decision models: calibration, selective risk, latency, and reproducible benchmarks. Python ★ 13
jev-rag-benchmarkerendikmenn Reproducible benchmark for measuring Jev reranking quality, latency, and cost in RAG. Python ★ 13
jevbetterolanotolu A stronger one-pass scorer over a variable list of text options: hashed n-gram encoder, rival-aware attention, gated head, temperature scaling, benchmarked against jevlike. Python ★ 13
jevalsopenlayer-ai Agent evals and guardrails in one request. Built on Jev, Kev and Laya. Python ★ 12
openvonsgenai-craft Openvons (open-Jev): 有限選択肢に確率で答える判断層 — テキスト / 画像 / 日本語音声コマンド. Python ★ 12
jev_stocksosopop An experimental JEV-powered framework for forecasting short-term stock price direction from structured market data. Python ★ 11
jevcalabhixhek Stop guessing confidence thresholds: calibrate, threshold, and drift-check typed decision models (TypeSafe Jev) against an LLM teacher. Python ★ 10
open-spark-jevabhishek085 Open-source, local decision models inspired by TypeSafe’s Jev and System One - built on Qwen3 for NVIDIA DGX Spark. Python ★ 10
jevfirekikoncuo JEV-inspired parallel decisions for CUDA LLMs. One context, many decisions. vLLM API, game-agent examples, and reproducible benchmarks. JavaScript ★ 9
jsortkeltokhy Sort by meaning: order lines along a plain-English dimension, from pairwise comparisons judged by TypeSafe's Jev model. Python ★ 9
jev-cli (shaharia-lab)shaharia-lab Command-line tool for TypeSafe AI's Jev model. Ask yes/no, multiple-choice and rubric questions about any text and get calibrated probabilities back. Answers become exit codes for shells and CI, JSON for scripts, and MCP tools for AI agents. Rust ★ 8
jev-curateAkashPriyadarshii High-throughput synthetic & pretraining dataset sifter powered by TypeSafe AI Jev (api.typesafe.ai). Stream, filter, and score Parquet & JSONL datasets at 1,500+ rows/sec using System One typed decisions (Choice, Score, Noul). Rust ★ 8
OpenJev (zhangcy122)zhangcy122 OpenJev: Open-source alternative to TypeSafe Jev. Typed probabilistic decision API (Choice, Noul, Score) powered by open LLMs & constrained logprob calibration. HTML ★ 8
typesafe-localaabolfazl Inspired by TypeSafe Ai, Ask a local LLM typed questions, get calibrated probabilities instead of text. Structured output without generation or parsing. MLX / Apple Silicon. Python ★ 7
Augustus24601 Agent skill: design judgment-assisted systems with TypeSafe Jev (System One). Maps Choice/Score/Noul onto decision theory, reranking, and routing. Composition algebra, question design, validation gates. MIT. Python ★ 6
jev-architectkaranb192 Find, design, and evaluate TypeSafe Jev decision loops. HTML ★ 6
jev-harnessAntonioCoppe Decision harness for TypeSafe Jev — confidence gates, shadow mode, recipes, and evals. Claude CLI 48.9s → Jev 1.3s on the same row-filter job. TypeScript ★ 6
jev-korean-benchmarkmahlernim Reproducible early-access evaluation of Jev on Korean understanding and medical text, with runtime and cost evidence. Python ★ 6
jev.nucablehead Nushell module for the TypeSafe System One API: typed decisions with calibrated probabilities. Nushell ★ 6
JevForgezwliJay End-to-end Jev-style structured-decision stack for auditable data construction, Qwen3.5-0.8B training, fixed Mind2Web and OOD evaluation, preliminary RLCD, local serving, and interactive replay. Python ★ 6
nanojev-arenacaijinchun NanoJev Snake Arena: 1v4 human-vs-AI battleship + 100-agent swarm simulator. Local demo of Jev System-One model (open-source mini replica). HTML ★ 6
jev-little-airwayslbotinelly A show-and-tell capability study for Jev, TypeSafe's System One decision model. HTML ★ 5
jev-lmy0usaf A word-level language model whose output layer is Jev: n-gram drafter, Noul chunk verification, bits-per-token eval. TypeScript ★ 5
jev-rerank-benchanessbelbati Can a decision model beat dedicated rerankers? TypeSafe Jev vs Cohere Rerank 4 vs ZeroEntropy zerank-2 vs a chat-model baseline: 14 datasets, every raw API response, bootstrap ranges on every gap. Python ★ 5
jev-search (larguesa)larguesa Experimental semantic line search with TypeSafe Jev via OpenRouter. Python CLI with no runtime dependencies. Python ★ 5
LegalForecastBenchjohnhughes3 LegalForecast-MTD benchmark alpha and official evaluation workflows. Python ★ 5
OpenJevxingwudao OpenJev: an independent Jev-inspired System One decision API based on TypeSafe.ai concepts. Choice, score and noul primitives, local mock server, Python and TypeScript SDKs. Real inference planned; not affiliated with TypeSafe AI. Python ★ 5
pi-jev-context (Nyarlathoteppppp)Nyarlathoteppppp Cache-neutral context trimming for the pi coding agent, powered by TypeSafe Jev: long tool output cut to verbatim key lines before it enters context, with lossless recall. Measured, with pre-registered benchmarks. TypeScript ★ 5
claude-jevbuchmark Claude Code plugin that scores review findings, debug hypotheses and design options with TypeSafe's Jev — calibrated probabilities instead of one more opinion. TypeScript ★ 4
daf-jevdocxology Daf-jev: composable Python toolkit for TypeSafe's Jev (System One) decision API — question builders, confidence gates, evaluator, calibration, CLI, MCP server, agent skill. Python ★ 4
jev-aligncaiovicentino Calibrated alignment verifier for LLM responses and agent plans — powered by Jev. JavaScript ★ 4
jev-codesKushwho Audit your git diff against YAML coding-standards packs using TypeSafe's Jev model, from a CLI or your AI agent's command/skill. TypeScript ★ 4
jev-search-rerank-evalzhuyansen Does a TypeSafe Jev rerank beat embedding search? Graded relevance eval (9,831 pairs, 164 zh/en queries) over the Agent Skills Hub catalog, with the judge-circularity bias measured. Python ★ 4
mcts-agentlhemerly Discriminative Monte Carlo Tree Search using TypeSafe Jev System One Primitives and Gemini. Python ★ 4
open-jevkyegomez An open-source, from-first-principles reconstruction of the ideas behind TypeSafe AI's Jev, written in pytorch. Python ★ 4
poorjevrupeshpoojary9 Open-source, local Jev alternative: a System One decision layer with provably calibrated confidence (ECE 0.170→0.071). Typed decisions, runs offline, no API key, no waitlist. Python ★ 4
typesafe-ai-gokisshan13 Community-maintained Go SDK for the TypeSafe AI System One evaluation API, with typed questions, fluent builders, retries, and examples. Go ★ 4
edgejevyzfly 离线可用的本地类型化决策:4 核 CPU 单题 15.6ms。Local & offline Jev / System One inference on CPU — ONNX + INT8, no torch at runtime. 支持 laya / kev / PlayJev. Python ★ 3
hermes-and-jev-play-minecraftteknium1 Hermes Agent plans, Jev (TypeSafe) picks bounded actions, Mineflayer executes: Minecraft with no screenshots or keypresses from a model. Includes the reproduction of rmalde/minecraft-agent's Ender Dragon run. JavaScript ★ 3
Jevcobusgreyling Unofficial TypeSafe Jev showcase — System One decisions, not chat. Python ★ 3
jev-behavior-studyRINNECODER Independent Jev 1.13.0 behavior study: report, controlled prompt experiments, raw results, and offline verification. Python ★ 3
jev-benchmarkwondertwins Benchmarks and a playground for TypeSafe's Jev (System One) model: chess, and who-is-the-player-talking-to for speech-to-text game NPCs. Python ★ 3
jev-chatadhyaay-karnwal A chatbot from typed Jev decisions: hierarchical speculative decoding over System One probabilities. Python ★ 3
jev-explorationSamuelSacco Jev (TypeSafe) exploratory thread: claim audit, live demos, and runnable code. Python ★ 3
jev-gateMongLong0214 Not every coding task needs your best model. Experimental Jev-powered model routing for Claude Code — V3 prototype runs today, V4 routes at the task boundary. TypeScript ★ 3
jev-oas-sentinelShuhanSun Catch breaking API behavior hidden in OpenAPI prose with deterministic checks and TypeSafe JEV System One semantic review. Python ★ 3
jev-ood-calibrationscienthoon Independent calibration test of TypeSafe's Jev on a task it cannot have seen: 900 rule-generated support tickets (choice / score / boolean) plus 3 public benchmarks via Vercel AI Gateway. Raw responses, ECE with noise floor, temperature refit, per-type sign of miscalibration. Reproducible for ~$0.06. Python ★ 3
jev-realtime-tradingrthomas24 Paper trading agents on a live tape, decided every second by TypeSafe's Jev (System One). Electron desktop app. TypeScript ★ 3
jevarena (chenmingtang830)chenmingtang830 Open-source BYOK arena for Jev and other AI judges. Find failures, compare quality, cost, and latency. TypeScript ★ 3
jevtestrealZachi Semantic test matchers for Vitest and Jest, powered by TypeSafe's Jev model. Write expectations in plain English, get calibrated probabilities back. TypeScript ★ 3
qwen-rlcdshamazharikh Jev-style calibrated decision model (Choice/Score/Noul) on Qwen3.5-0.8B. Python ★ 3
system-one-gemmaakash-kamat Open-source Jev-style System One decision model. Gemma 3 270M with a scoring head — fast, calibrated decisions in a single forward pass. No text generation. Inspired by TypeSafe.ai's Jev. Python ★ 3
trade-jevjustinhe16 Backtest Jev (TypeSafe) as a BUY/SELL/HOLD trader on NQ L10 order-book data. Python ★ 3
calibreFirasSX914 Calibration and confidence-based routing measured on Banking77: 80.2% accuracy at $0.103 per 500 decisions. Python ★ 2
cu-Jevdtunai Cuda-Jev — a CUDA-native Jev System One decision inference engine. Jev compatible API, examples, and reproducible benchmarks. C ★ 2
jev-agent-failure-benchmarkTokenTrim Benchmarking Jev (Typesafe.ai) against a strong LLM on the Who&When Pro agent-failure-attribution benchmark (text subset). Python ★ 2
jev-flash-routerRavinder82 Open-sourced jev-flash-router: an MCP server for TypeSafe's new Jev model. AI coding agents waste hundreds of reasoning tokens just deciding which file to edit, which route to pick, or whether a diff breaks tests. Jev evaluates state and outputs calibrated probabilities. Works with Cursor, Windsurf, & Claude Code. TypeScript ★ 2
jev-for-engineersFoadsf Eight minimal working examples of TypeSafe's Jev (a System One model) applied to mechanical and electrical engineering: CAD/CAE/CAM routing, FEM result triage, DFM screening, BOM alignment, hallucination-proof extraction. Zero dependencies. Python ★ 2
jev-modeddfeyes I kept watching coding agents burn context on decisions that aren't hard - triage 400 tickets, tag 600 files, route to one of six teams. jev-mode moves those verdicts to a typed-judgment model. I A/B'd it: 78% fewer tokens, 16x less work-attributable input, accuracy 96.1% vs 93.7%. Python, no deps, MIT. Python ★ 2
jev-phishing-benchanisselbd Jev (TypeSafe) vs Claude Haiku 4.5 on 2 000 phishing emails: accuracy, calibration, latency, cost. Reproducible benchmark. Python ★ 2
jev-research-evaljgridifier Reproducible Jev Ultrafast research-browser eval harness + field note (QC’d cases, suite runner, report generator). Not investment advice. HTML ★ 2
jev-reward-model-evaluationgoya4140 Jev 1.13 reward-model evaluation across 8 benchmark tracks, with an interactive report and 54-row SOTA comparison. Python ★ 2
jev-routing-experimentTokenTrim Benchmarking TypeSafe's Jev decision model as a cost-efficient LLM router on RouterArena. Python ★ 2
jev-sec-benchGaurav-Gosain Blind security benchmarks for Jev, TypeSafe's System One model: prompt injection and vulnerable code detection, built on jev-go. Go ★ 2
jev-starterhamakyo Typed, policy-driven decision workflows on top of TypeSafe AI Jev: confidence routing, fallbacks, evaluation, and RAG patterns for TypeScript apps. TypeScript ★ 2
jev-web-analyzerreplynodes See what Jev thinks about your SaaS website — powered by ReplyNodes web context and Vercel AI Gateway. TypeScript ★ 2
jevbuszkjoie A streaming event bus whose routing, subscription and consumption are decided by a probabilistic judge. The reference judge is TypeSafe AI's Jev (System One) model: send it a payload and a set of typed questions, get back calibrated probabilities instead of prose. Rust ★ 2
jevgptBewinxed A chatbot built on a model that cannot generate text (TypeSafe AI's Jev, driven autoregressively). TypeScript ★ 2
jevshieldlgy1027 Sub-100ms security gate for AI agent tool calls, powered by TypeSafe's Jev (System-1) decision model. Single-request Choice/Noul/Score evaluation, dual-factor blocking matrix, calibrated-confidence routing, fail-closed parsing, zero-config local fallback. LangChain-ready. Python ★ 2
laya-vs-jev-arenaPromptEngineer48 Laya (open source, local) vs TypeSafe Jev (API): two AI models race in Snake and fight in a Mortal-Kombat-style arena. Every move is a real model decision. JavaScript ★ 2
new-api-plugin-typesafeFFatTiger TypeSafe AI System One (Jev) task plugin for QuantumNous/new-api — native /v1/systemone, synchronous evaluation, token billing. JavaScript ★ 2
OpenJev (GPT-AGI)GPT-AGI Jev-compatible System 开源Jev. Python ★ 2
ORIGIN-CIVILIZATIONJacquesGariepy AI life-and-civilization simulation: TypeSafe Jev makes every decision (typed, probabilistic, auditable); LLMs plan — OpenAI-compatible APIs, local models (Ollama, LM Studio), Claude Code, Codex. HTML ★ 2
polymarket-btc-5m-agentBrunooMoniz Agente de trading para o mercado BTC Up/Down de 5 minutos da Polymarket: modelo em código, Jev (TypeSafe System One) como portão, ordens maker, calibração e shadows em paper. Python ★ 2
research_desk0xnairb TypeSafe Jev demonstration for new analyzation — experimenting with Jev for fast analysis of news and tickers. Python ★ 2
rh-guard24601 Reward-hack radar for coding agents: structural denies + TypeSafe Jev System One sidecar for Claude Code & Cursor hooks. TypeScript ★ 2
siftrBentlybro Fast, cheap judgment for AI coding agents: semantic search, focused reads and list picking in ~2s. CLI + MCP server on TypeSafe Jev. Benchmarked on SWE-bench. Python ★ 2
tenbinsimota MCP server and agent skill for the TypeSafe AI System One API (Jev): decompose a judgment into Choice / Score / Noul questions, lint them, measure on labelled data, and put calibrated thresholds in code. TypeScript ★ 2
toolgate (RiskAverseTech)RiskAverseTech Open auto mode for AI agents — a calibrated tool-call firewall powered by TypeSafe Jev. Ships as a Claude Code hook. TypeScript ★ 2
typesafe-chess (Dimesio)Dimesio FUn little experiment with Typesafe AI Jev Model playing chess against stockfish :). JavaScript ★ 2
watfilejexp Text/PDF - File categorization and sorting with Typesafe AI Jev or local calibrated decision model. Python ★ 2
zerosweepsysadarsh Autonomous System-One Triage Engine & Benchmark powered by TypeSafe AI (Jev). 75ms inference, $0 output tokens, and RLCD epistemic safety gates. TypeScript ★ 2
decisionbridgegrishahq A Jev-inspired decision interface for existing LLMs. Explicit choices, scores, calibration, and review thresholds. HTML ★ 1
jev-benchmark (themsquared)themsquared Reproducible benchmark for TypeSafe AI's Jev on agent tool-call risk classification: accuracy, latency, and whether the confidence score is worth routing on. Python ★ 1
jev-carryforwardDharundp6 What your last session knew, scored against what this one is doing. MCP server: a per-project ledger written as things happen, recalled per task with TypeSafe's Jev evaluation model via Vercel AI Gateway. TypeScript ★ 1
jev-chesshemanth Chess moves, evaluations, persona opponents, and game classification with TypeSafe AI System One. TypeScript ★ 1
jev-freeformkesku An observable raw-character chat experiment powered entirely by TypeSafe Jev Choice. JavaScript ★ 1
jev-labscopyleftdev Never confidently wrong: a TLA+-verified consensus kernel around TypeSafe's Jev, run through 1,680 chaos-tested pharmacy decisions with zero wrong verdicts. Film, code, and every captured call. Python ★ 1
jev-synergy-screeningPistachioAIHQ Jev (TypeSafe System One) × ASReview SYNERGY abstract screening demo — Choice/Noul vs gold labels. Python ★ 1
jev-uietweisberg React components that resolve which component to render, how to order a list, and whether to show an affordance — from calibrated judgments returned by TypeSafe's Jev. TypeScript ★ 1
jevchesschoxos Jev, TypeSafe's System One model, plays chess against any OpenRouter LLM, Stockfish and you. One-page web app with live moves, Jev's move probabilities, saved games and win rates. JavaScript ★ 1
kyotsu-ai-benchshibadogcap AI benchmark on Japan's 2026 Common Test: Jev vs luna-none vs luna-low (static dashboard). HTML ★ 1
modelsystemfabricioctelles Curated catalog of System One / Decision Models — contributions for modelsystem.one. ★ 1
openjev-experimentszefir1990 Experiments with openjev, an open Jev-style option-logit runner, on local models. Python ★ 1
openpoke-meets-jev0xShin0221 Fork of OpenPoke where the yes/no decisions go to Jev instead of Claude Sonnet, with a same-inputs A/B against the replaced LLM decision and a 43,776-request adversarial run on the injection gate. Python ★ 1
padflow-jev-evalszsavage8 Typed-decision benchmark from PadFlow (land development SaaS): schemas, anonymized labeled rows, and a runner for confidence-calibrated models like TypeSafe Jev. Python ★ 1
PocketJevNullPo-jp On-device iPhone visual decision tool using MLX and Qwen3-VL direct option logits. Swift ★ 1
RISC-jeVi2cjak I tortured Jev into being a RISC-V CPU. Python ★ 1
ruby_llm-providers-typesafejaviergradiche TypeSafe System One models (Jev) for RubyLLM: typed judgments, evaluations and reranking. Ruby ★ 1
typesafe-jev-mcpanasbekheit MCP server exposing TypeSafe's Jev model as a typed evaluate tool. Rust ★ 1
typesafe-vs-deepseekmarkfive-proto TypeSafe (Jev) vs DeepSeek-flash: side-by-side speed/token/cost/accuracy comparison across invoice extraction, email classification, and reranking. Python ★ 1
what-is-jevg0runmezadam Independent, source-linked research on TypeSafe AI's Jev (System One), with 947 rubric-scored public repositories, recurring patterns, datasets, and bilingual documentation. Python ★ 1
FinancialPredictionJevthodoh1 Using Jev to test how well it predicts financial markets(just like most llms as of september 2026, it doesnt do that good). Python ★ 0
jev-alpha-benchGaurav-Gosain Does Jev predict stock returns from news? It reads the news well; there is no tradeable alpha. Three arms separate reading from recall. Go ★ 0
jev-anotacao-sentencaslab-dados Jev (TypeSafe) vs. Gemini 3.8 Flash vs. GPT-5.6 Luna na anotação estruturada de sentenças do TJSP: qualidade, tempo e custo. Python ★ 0
jev-deferred-crispificationdnakhoa Position paper: the Hidden-Markov and fuzzy primitives missing from TypeSafe AI's Jev and System-One decision models. Two lemmas, one principle (Deferred Crispification), one architecture (BSF-S1). TeX ★ 0
jev-headline-benchGaurav-Gosain Can Jev pick the winner of a real headline A/B test? 64.5% across 10,984 Upworthy randomized experiments, 74.7% when the difference was decisive. Go ★ 0
jev-jp-addresssmasato Jev (TypeSafe) 性能評価プロジェクト — 日本郵便 KEN_ALL をマスタに、AI SDK 経由の Jev が住所のあいまい一致にどこまで使えるかを検証. TypeScript ★ 0
jev-labMenny1337 TypeScript experiments, evaluations, and latency benchmarks for TypeSafe's Jev model. TypeScript ★ 0
jev-pick-and-place-studytryaksh A small reproducible MuJoCo pilot comparing Jev, Claude Haiku, and reactive rules for pick-and-place. Python ★ 0
jev-playground (hegargarcia)hegargarcia Benchmarks Jev against other evaluation models in games with explicit states, legal actions, and measurable outcomes. TypeScript ★ 0
jev-reportHackSing 发明 RLHF 的人,这次做了个不会说话的模型:Jev 独立研究报告。52 页 PDF + 50 条中文实测复现包 + 143 条可回溯数据表. Python ★ 0
jev-secret-detectionteyhouse Measures how well TypeSafe's RLCD-Jev model spots real secret credentials in file snippets. Python ★ 0
jev-shadcn-lint-evalblas0 A small second eval for shadcn-ui/lint that uses TypeSafe's Jev to judge the linter's own output. JavaScript ★ 0
jev-spam-evalbitnovus Zero-shot spam filtering with TypeSafe Jev Noul questions, compared with TF-IDF baselines. Jupyter Notebook ★ 0
jev-trace-classifiersypherin Application of TypeSafe Jev (noul judgment primitive) on the collusion.wiki corpus: agent vs human page authorship, head-to-head vs local Qwen3.8-Flash-Next. Python ★ 0
misereru-slide-jevmyokoym Ongoing Japanese research deck on Jev and System One models, maintained as Markdown slides. JavaScript ★ 0
Parallel Constrained Decoding (Qwen2.5-1B-RLCD) Hugging Face Space exploring open-source parallel constrained decoding as an alternative to Jev.
shade-arena-jev-monitornican2018 Evaluating TypeSafe's Jev as a fast monitor and action gate for agent sabotage in SHADE-Arena, compared with Gemini 2.5 Flash/Pro. Python ★ 0
system-one-adapter-rustcodeitlikemiley Rust port of TypeSafe system-one-adapter (LLM-backed system_one evaluations). Rust ★ 0
thaiexam-jev-chartsvehas Charts: TypeSafe Jev evaluated on Thai standardized exams vs 110 other models. HTML ★ 0
Typesafe_chess_evalAliceRoselia An evaluation of typesafe AI chess. As it turns out, the AI isn't doing really well even though chess is not a particularly open-ended game. Still, it's only a prototype and this probably wasn't optimzied for games. Python ★ 0
typesafe-oraclestrophee-bot Evaluating TypeSafe's System One primitives (Choice/Score/Noul) — where a typed oracle beats an LLM call. JavaScript ★ 0
10 · Other lists27 entries

Other curated lists.

ProjectDescriptionLangStarsLinks
awesome-jev (yibie)yibie A curated list of public projects, integrations, and discussions built on Jev — TypeSafe AI's System One model for typed decisions. Python ★ 817
awesome-jev-toolsv-modal A curated list of tools built for Jev — TypeSafe AI's System One model for typed decisions. ★ 600
awesome-typesafeAbdelStark Curated list of official resources and community projects for TypeSafe, System One models, and Jev, with a GitHub Pages site. CSS ★ 415
awesome-jevcobanov A curated, source-backed list of projects built with Jev, TypeSafe AI's System One model for typed decisions. ★ 293
jev-skillwuyoscar An awesome collection of Jev use cases, workflows, and agent skills. Python ★ 292
awesome-jev-projectslogicrw Awesome Jev: source-backed open-source ecosystem radar, plain-language project discovery, and automatic GitHub sync. JavaScript ★ 268
awesome-jev (fatwang2)fatwang2 A source-backed Jev project directory with a reusable Jev-only GitHub review workflow. JavaScript ★ 185
awesome-jev (AnotiaWang)AnotiaWang A curated list of awesome Jev / TypeSafe System One applications, libraries, and resources. ★ 183
awesome-jev (OmniJev)OmniJev Papers, open reproductions and independent evaluations behind System One models and Jev. JavaScript ★ 132
awesome-jev-typesafevalentynkit Typed decisions with TypeSafe's Jev, the first System One model. JavaScript ★ 115
awesome-jev (kraayenjon)kraayenjon A curated list of Jev use cases, projects, SDKs, and resources. Jev is TypeSafe AI's System One model for fast, typed decisions in software — Choice, Score, and Noul with calibrated probabilities. ★ 81
awesome-jev (AppitStudio)AppitStudio Curated Jev resources and runnable examples for typed AI decisions. Python ★ 66
awesome-jev (heyjunpenn)heyjunpenn A verified, community-maintained catalog of 485 open-source projects built with Jev. TypeScript ★ 56
awesome-jev-zhyzfly Jev / TypeSafe System One 中文精选列表:官方资料、SDK、爆款应用、Agent 工具、开源复现与独立评测,附中文上手指南,每日自动收录 GitHub 热门项目。 HTML ★ 50
awesome-jev-use-caseswalidboulanouar Awesome list of TypeSafe AI Jev use cases: 74 demos ranked by likes, 150+ GitHub repos, limits, cost and API examples. CC0, sponsored by AY Automate. ★ 31
awesome-jev (BeatAPI)BeatAPI We only curate source-reviewed JEV-related projects with 100+ GitHub stars — integrations, tools, open models, and experiments. Live gallery: beatapi.io/awesome-jev. JavaScript ★ 24
jev-hubmizzlelover JEV HUB · X 上关于 TypeSafe AI「系统一模型」Jev 的长文与演示视频聚合(保留原链与作者)| 谁是专家 出品. CSS ★ 22
jev-radareveryinfra 📡 全网最全 · The world's most comprehensive tracker of the Jev (TypeSafe AI System One) ecosystem — 220+ documented cases · 108 confidence-graded entries · verified & rescanned every 3 hours · API access guide included. ★ 18
awesome-jev-usecasesanandi1989 Evidence-backed index of real-world Jev (TypeSafe AI System One) use cases: repos, patterns, benchmarks, and measured results. ★ 15
awesome-jev-usecases (aliaihub)aliaihub Evidence-backed use cases, patterns, and guidance for building with Jev, TypeSafe AI's System One model. Every claim is labeled and sourced. ★ 15
awesome-jev (Frank-ZY-Dou)Frank-ZY-Dou Public examples of Jev used for robot control, 3D modeling and adjacent control tasks, with sources and archived media. ★ 10
fable-jevimMamdouhaboammar ⚡ Sub-100ms cognitive reflexes for autonomous coding agents. Powered by TypeSafe AI's Jev & get-fable. TypeScript ★ 9
awesome-jev (ckaraca)ckaraca A curated list of tools, integrations, and experiments built on Jev, TypeSafe AI's System One model for fast, typed decisions. Python ★ 8
awesome-jev (MrJev)MrJev Selective list behind a 10-star bar, with hands-on reviews at mrjev.com recording what each tool sends and where. Python ★ 8
awesome-jev-livewh000wh000 Awesome Jev — evidence-graded index of TypeSafe System One: SDKs, MCP tools, agents, apps and open models. 20 languages, rebuilt every 2 hours. Python ★ 8
awesome-jev (daftAI2026)daftAI2026 TypeSafe System One / Jev community directory — GitHub projects & posts around typed decisions (typesafe.ai). TypeScript ★ 5
awesome-jev (tanxarx)tanxarx All things awesome related to Jev. ★ 5
11 · Articles & threads50 entries

Coverage, write-ups, and X threads.

ProjectDescriptionLangStarsLinks
AI that does not talk Practical guide: playground, Python and JS SDKs, raw HTTP, and the agent skill.
AIAvatarKit turn-end gate Voice-dialog turn-end detection using Jev scores after speech.
AINews: Jev, a System One Model that only decides Latent Space's launch-day roundup: over 100x faster and 200x cheaper than small frontier LLMs.
Browser Use + Jev Gregor Zunic's flight-search demo with a dynamic DOM action space.
Computer use built on Jev Aaron Levin: 155x cheaper than Opus 5, about 20x faster, and it generalizes across operating systems.
ConsoleChaosRacing driven by Jev Racing UI wired to Jev driving decisions.
DuckDB Jev classifier DuckDB extension that classifies rows in CSV, Parquet, or DuckDB tables with Jev, about 10 seconds per 1,000 rows.
Early Jev tools roundup Thread cataloguing the first wave of Jev tools: MCP servers, routers, reviewers, and browser agents.
Ground Truth news-framing extension Browser extension that classifies an article's framing, type, topic, and loaded language with Jev.
Hacker News launch thread 1,800-point thread debating whether typed decisions replace LLM calls for classification, routing, and scoring.
He says he co-invented ChatGPT. His new AI will not write a word Dev.to walkthrough of the Vercel AI SDK evaluate integration.
Hide posts on X with natural language Marcel Pociot's browser extension that collapses posts based on a Jev judgment.
Hook panel A/B tester Near-real-time scoring of TikTok and Instagram hooks against about 100 personas.
Internal classifier field note Matched-precision comparison against a private fine-tuned classifier.
Jev as an agent safety monitor Test report using Jev to check each agent action first: most attacks caught, almost no false blocks.
Jev gomoku harness Local tactics shrink 225 moves to about 40 candidates, then Jev picks among tiered options.
Jev in 34 seconds Short video explainer of how Jev's typed-decision loop works.
Jev in a Grammarly-style Mac app Desktop writing app using Jev for fast structured writing judgments.
Jev plays Minecraft (r/accelerate) Work-in-progress demo of Jev driving Minecraft, including fleeing zombies at night.
Jev Typewriter launch Steve Krouse's playable 16-judgment demo and video.
Jev vs Mistral and Gemini for event validation Head-to-head test at validating local event listings, with cost and latency.
Jev vs Qwen on Cerebras Video comparison against a structured-output LLM baseline.
jev 同士に五目並べで対戦させた Jev vs Jev gomoku with source and timing logs.
jev-rabbit PR review bot Work-in-progress PR reviewer with plain-English Jev rules.
Jev: System One models explained The Neuron's explainer on AI decisions without a chatbot.
Jev: System One models explained (DataCamp) Third-party write-up of the System One primitives, pricing, and vendor workflow evals.
Jev: The Language Model That Will Not Talk Anthony Maio's essay on what a model that cannot generate text is for.
Kalshi prediction-market bot Jev trades 15-minute and 1-hour BTC, ETH, and SOL markets on Kalshi.
Launch thread by Diogo Almeida TypeSafe's founder on why RLCD-trained decision models are a shorter path to value than chat models.
Mini-Vibe Check: Jev judged everything I have written in 0.7 seconds Every's Mike Taylor runs his whole archive through Jev.
Model router built with Jev Ephraim Duncan's demo where Jev decides which model should serve a request.
Model router CLI Task plus subscription list in, Jev picks which model or agent should handle it.
One judge call vs twelve dimension scores One direct Jev question per row against 12–14 Jev-scored dimensions with locally fitted weights on three classification tasks: 5,477 test rows, 25,174 Jev calls, $1.43. Decomposition wins on Japanese NLI (0.9076 vs 0.8373) but flags about 25× more hard benign rows as attacks (37.2% vs 1.5%).
OpenCode browser use powered by Jev Preview of fast browser use with Jev and OpenCode's browser CLI.
SEO audit cost study driven by Jev triage Technical SEO audit cost study from Boring Tools Kit where Jev ranks striking-distance fixes and content gaps by calibrated probability.
skillbox + Jev skill routing MCP skill router where Jev picks the relevant skills instead of a long agent search.
Spanish AEPD corpus test Jev versus a hand-built regex on 544 public data-protection resolutions: 98.2% agreement for about five cents.
Stagehand + Jev browser use Observe the accessibility tree, Jev chooses the next action, Stagehand executes.
StarCraft Brood War WASM MCP demo Brood War in WASM exposed as an MCP server, with Jev playing and still losing to a Zerg rush.
Support ticket classifier Jev labels category, urgency, and human-versus-auto handling for support tickets.
Tabletop MMORPG action mapper Eval of Jev turning free-text player intent into typed server actions: 96% agreement, 317 ms median.
Typed decisions, not chat Independent walkthrough separating TypeSafe's published claims from public evidence.
TypeSafe AI debuts model for machines that plays Doom The Register on the launch, the Doom demo, and the $40M seed round.
TypeSafe Jev: the first decision-only model class Release-week technical roundup: API, evals, adapter, and skill.
TypeSafeのJevを正しく驚く Japanese walkthrough of what Jev is and is not.
Vercel fx: Jev as a command safety reviewer Guillermo Rauch: Jev reviews every fx command, faster and more accurate than a chat model.
Verdict (Open-jev) launch thread Hemant Kumar on his 151M ModernBERT reproduction: 0.83% adaptive calibration error, 3.0% of predictions flip when the option list is reversed, 35.6ms on CPU, with the failed use cases reported alongside the wins.
ViZDoom Jev agent Two decision channels on ViZDoom, navigation at 5 Hz and combat at 12 Hz, with an 18-kill test run.
What is Jev? Short practical intro with a Python ticket-triage example.
Wiki-link clicker demo Page-level demo where Jev picks which candidate link to click toward a goal.