SDKs & clients
jev-cli
@fiale-plus★ 1TypeScriptMITupdated 2026-09-19▶ runnable
Unofficial CLI for the TypeSafe System One API (Jev) — designed for AI agents and anything that can execute a process.
fiale-plus/jev-cli ↗
Where it calls Jev
const baseUrl = global.baseUrl ?? process.env.TYPESAFE_BASE_URL ?? "https://api.typesafe.ai";
src/commands/doctor.ts:38
The link points at the commit we read, so the line number still holds.
What it asks Jev
These question sets are lifted from this project's source exactly as written.
from src/commands/doctor.ts:78
oktrue/false
Does this sentence describe a successful outcome?
Run it on your own text
The code
import { experimental_evaluate as evaluate } from 'ai';
const { answers } = await evaluate({
model: 'typesafe-ai/jev',
state,
questions: {
ok: { type: 'boolean', instructions: 'Does this sentence describe a successful outcome?' },
},
});
from src/tests/contract.test.ts:77
qtrue/false
Is it urgent?
Run it on your own text
The code
import { experimental_evaluate as evaluate } from 'ai';
const { answers } = await evaluate({
model: 'typesafe-ai/jev',
state,
questions: {
q: { type: 'boolean', instructions: 'Is it urgent?' },
},
});
Other projects in this category
- Jev-cu ▶ — 把 Computer Use 的「下一步点哪里」交给 Jev(TypeSafe System One):Jev 从界面文字候选中选元素、动作、完成度与风险,Codex Computer Use 负责读取界面与执行,本地策略门槛拦截敏感操作。只传文字,不传截图。
- advocaat ▶ — A small, type-safe client for asking AI questions about your data, powered by TypeSafe Jev.
- ruby_decision_model ▶ — Ruby client for decision models such as Typesafe Jev
- jev-axi ▶ — Agent-ergonomic CLI for TypeSafe's Jev: fast calibrated judgments (pick, rate, check, rank, triage, guard) from the shell
- mario-jev ▶ — A uv-managed Python prototype that plays NES Super Mario Bros. (level 1-1 by default).
- jev-game-tools ▶ — Experiments in driving real-time games with TypeSafe Jev: a fast
- typesafe-jev-workflow ▶ — A small async LangGraph workflow that sends a mocked email to TypeSafe's Jev model,
- jev_jsonschema ▶ — Run a JSON Schema through TypeSafe's Jev API, and get JSON back.