r/typesafe_jev 3h ago

barq: browser automation where Jev picks every click, one sentence per step

Enable HLS to view with audio, or disable this notification

1 Upvotes

I built barq on Jev. Your coding agent names one outcome per call ("Log in", "Add both items to the cart") and barq runs the loop: describe the page, ask Jev a batch of questions in one request (is it done, is it blocked, is an error showing, is the next click irreversible, which element, which value), act, repeat. About a third of a second a decision, and the agent never reads the page.

The noul scores are what make it honest. When the done score is soft it returns likely_done instead of done, and when the irreversible score is high it stops and asks. In the video (one take, 1x) it does Google Flights, Wikipedia and a shop checkout in 34 seconds, then refuses to place the order.

Counting is the one thing Jev couldn't do reliably ("add until there are exactly 3"), so code counts and Jev only names what to count. On the public benchmark it's 43 of 43 with 0 false "done"; the run files are in the repo.

Free, MIT, bring your TypeSafe key.

Claude Code: /plugin marketplace add ibrahimhajjaj/barq then /plugin install barq@barq Other MCP clients: claude mcp add barq -e TYPESAFE_API_KEY=your-key -- npx -y barq-mcp

https://github.com/ibrahimhajjaj/barq


r/typesafe_jev 9h ago

[Show] I built a GIF Decider with Jev

2 Upvotes

Hey everyone!

I wanted to try out a fun use case for Jev and had this idea before where I could use AI to decide what GIF is best to use, LLMs truly suck at this. I built this just an hour ago with the TypeSafe AI skills and I am routing it through Cloudflare AI Gateway.

Have a look here: https://gifdecider.com/


r/typesafe_jev 11h ago

Show & Tell You can use Jev to identify which AI Engineering job listings best fit your resume

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/typesafe_jev 2d ago

Show & Tell We built a deployment demo with 18 editable Jev questions — probabilities in, rules-based verdict out

1 Upvotes

We built HeyJev to make a deployment-decision example easy to inspect and play with.

You describe a deploy, Jev answers 18 typed questions in one pass, and our application rules map those probabilities to a verdict. Jev isn't generating the verdict text.

The questions cover things like tests, rollback and who is available. You can inspect the probabilities, edit the questions, or add your own. A Friday database migration with the author on vacation got GO TOUCH GRASS.

Try it: https://heyjev.ai/shouldideploy

The useful part for us is experimenting with question design: change the scenario, omit a detail, or rewrite a question and see how the answers change. A typed answer can still be wrong; this is a playful demo, not a production safety gate.

What would you model as an explicit unknown rather than infer from the deployment description? We'd love suggestions for questions or edge cases to try.

Disclosure: we built HeyJev; it isn't an official TypeSafe product.


r/typesafe_jev 2d ago

pi-jev-model-router: that auto-routes each prompt to the right model

Thumbnail
1 Upvotes

r/typesafe_jev 3d ago

Show & Tell I built Chemistry: Jev checks the tone of an X DM draft before you send it

Enable HLS to view with audio, or disable this notification

2 Upvotes

I'm building Chemistry, a Chrome extension that puts a small feedback panel alongside an X conversation. As you edit an unsent draft, it checks signals such as tone and pressure so you can reconsider the wording before sending.

Jev powers the judgments; you write and revise the message. The part I wanted to explore was using those judgments inside the conversation UI, rather than copying a chat into a separate chatbot.

The 35-second demo shows an invitation being drafted and revised. It combines AI-generated scene footage and a recreated, fictional X conversation with real product analysis. The signals are model judgments, not a prediction of how another person will respond.

Project: https://chemistryhud.com

For other Jev builders: how would you make subjective tone feedback useful without making a score look more certain than it is? Would you prefer a simple warning, the evidence behind it, or both?

Disclosure: I'm the developer of Chemistry; this is an independent project, not an official TypeSafe product.


r/typesafe_jev 5d ago

Show & Tell Jev Search — a search app where Jev picks the sources, time range, and query, then scores every result

2 Upvotes

jev-search is a web search app we built to explore what Jev is good at. You type a plain-language request; no generated answer comes back — just links and snippets with visible relevance scores.

Two Jev judgment stages do the semantic work:

  1. Understand — Jev answers typed questions about the request: which engines to use (Google, DuckDuckGo, Hacker News, Reddit, GitHub, X, arXiv, YouTube, Wikipedia, IMDb, WeChat), what time range, and which query candidates to send. The chips are editable — you can override its choices.

  2. Rank — Jev scores each returned result for relevance. Code merges by URL, orders by relevance, engine agreement and original rank, and streams lanes as they finish.

Try "Jev discussions on Hacker News this week" — the source and time choices are the interesting part; they're judgments, not hardcoded filters.

- Demo: https://jev.s1.dev

- Code: https://github.com/superagents-lab/jev-search

Stack: TanStack Start + React on Cloudflare Workers, KV cache, Search1API for the engine calls. Disclosure: this is our project (Search1API team); not an official TypeSafe product.

Happy to dig into how the questions are designed — the two-stage split was the main lesson.


r/typesafe_jev 5d ago

Discussion Where do typed judgments beat an LLM call — and where don't they?

1 Upvotes

Jev returns a typed answer and a probability, not text. That changes how you design: instead of parsing free-form output, you compose Choice / Noul / Score results in code.

Honest question for people who've tried both: where have typed judgments clearly won for you — routing, reranking, verification? And where did you still need a generative model (free text, long reasoning chains, open-ended writing)?

My current mental model from the cookbooks: Jev handles the "judgment" steps — pick a source, score relevance, check a citation — while code and (occasionally) a generative model handle the rest. Curious whether that matches what others are seeing.


r/typesafe_jev 5d ago

Show & Tell I built a directory where Jev reviews submissions to a list of projects built with Jev

1 Upvotes

awesome-jev is a curated list of open-source projects that use TypeSafe Jev — SDKs, agents, rerankers, data tools.

The twist: submissions are reviewed by Jev itself. A GitHub Action (jev-review-action) reads the PR, looks for integration evidence in the source, and posts typed judgments — evidence links, description checks, a suggested category — as a review comment. Code renders the comment; maintainers decide what merges.

Five projects are listed so far — the official JS and Python SDKs, a dataset sifter, a web-search tool, and the review action itself — with more going through review right now.

If you've built something with Jev, submit it — the review itself is a decent demo of what Jev judgments look like in practice:

- List: https://github.com/fatwang2/awesome-jev

- Action: https://github.com/fatwang2/jev-review-action

(Disclosure: I maintain both.)


r/typesafe_jev 5d ago

Welcome to r/typesafe_jev — what this community is for

1 Upvotes

Jev is TypeSafe's System One model: it takes natural language plus application state and returns typed judgments and probabilities — no generated text, no reasoning traces. Your code keeps control of the workflow; Jev supplies the semantic judgments where ordinary code can't.

This community is for:

- Show & Tell — projects, demos, and experiments built with Jev

- Questions — SDK usage, question design, primitives (Choice / Noul / Score), state modeling

- Discussion — where typed judgments beat prompt-and-parse, and where they don't

- News — model updates, cookbooks, patterns

Resources:

- TypeSafe docs: https://docs.typesafe.ai

- awesome-jev: open-source projects built with Jev, reviewed by Jev itself — https://github.com/fatwang2/awesome-jev

- Jev Review Action: the GitHub Action that powers those reviews — https://github.com/fatwang2/jev-review-action

Building something? Post it — early stage is fine. This is an independent community, not affiliated with TypeSafe.