devwithjev
reading now views
Submit a build

Browse builds

3 builds · page 1 of 1

Cadaverr in r/ClaudeCode@Cadaverr
Jev-kit: all the Jev stuff I've wired into Claude Code, now in one repo (guard hook, sub-agent sizing, file search, browser agent) I've been using TypeSafe's Jev with Claude Code for a couple of days and kept adding more use cases/ideas. So I've cleaned it up and put it in one repo. For anyone who doesn't know Jev; Jev is a small fast model that answers pick-one and yes/no questions (and more) in about 0.3s, which makes it cheap so you can put it inside your agents loop and make calls Claude would otherwise spend a turn on (eating away our already limited weekly usage). What's in it: A PreToolUse guard. Plain code checks let about 93% of tool calls straight through in ~33ms, the grey ones get one question to Jev. Catches stuff like cat on an env file or a find across the whole disk Sub-ag
0053Reddit posts·Agents & browserstimeabout 0.3sOriginal source ↗
StandardBus in r/typesafe@StandardBus
jev-browser: give it a task and a URL, Jev picks one action per step Fast and cheap browser use: Jev chooses one action per step from the clickable, typeable and selectable elements of the page, and scores how likely the goal is met or the run is stuck. Budgets, retries and stopping stay in code. Ships as an MCP server, CLI or library. Around 178 stars.
0052Reddit posts·Agents & browsersOriginal source ↗
Jazzlike_Musician_2 in r/AI_Agents@Jazzlike_Musician_2
Tried using Jev to check what an agent should remember We've been trying Jev for agent memory, mostly to catch cases where the saved note says more than the original conversation did. Think "we might use Postgres" turning into "we chose Postgres." Once that gets saved, the next conversation starts from a decision nobody actually made. We gave Jev the original text and a proposed memory, then used its judgments to decide whether to save it, skip it, or leave it undecided. We ran the same setup with Luna as a comparison. On 100 synthetic cases, using a .40 cutoff, Jev kept 39 of the 50 memories labeled worth keeping. Luna kept 41. Neither saved a candidate labeled skip or defer. Median gate latency was 250 ms for Jev and 1,593 ms for Luna, including network time. Then we checked what happen
0050Reddit posts·Agents & browserstime250 ms for JevOriginal source ↗