ZeroNoise Logo zeronoise
Post
Jev’s Control-Plane Pattern Gets a Real Harness
4 min read
153 docs
Jev’s launch produced a clearer coding-agent architecture: fast typed decisions and state machines around slower generative models, reinforced by portable instructions and sandboxed execution.

🔥 TOP SIGNAL

The useful Jev signal today is an implementation pattern, not a replacement-model claim: put a typed control plane in front of the coding model. Jev returns a predefined choice, score, or null decision; Riley Brown used that contract to route a simple request to Nano and an app-architecture request to Sonnet while the downstream model handled files and code.

Matthew Berman shows the same split from another angle: Astra/Codex built a simulated world, Jev made the characters’ decisions, and Jev sits between the prompt and the model that actually answers it rather than coding from scratch. Riley’s 500-email demo finished in roughly 12–13 seconds; his comparison of 0.4 seconds/$0.00004 per Jev decision versus roughly 10 seconds/$0.03 for a traditional LLM is vendor-reported economics, not a coding benchmark.

⚡ TRY THIS

  • Route the hot path by schema. Define a finite choice set, a score scale, or a binary null question; ask several questions over the same state, then hand the resulting task to the appropriate generative model. Kody’s Jev integration maps directly to ticket triage, urgency/escalation, “enough detail to file an issue,” and ready-to-ship scoring, with choice, score, and null questions in one call. For a quick prototype, use Riley’s prompt shape: Create an app that uses Jev. Use Jev. Look up the docs. Jev’s 64,000-token input limit makes payload discipline part of the design.

  • Make UI autonomy hierarchical, not flat. In ThePrimeTime’s Bellatro prototype, start with a structured “god view,” ask one typed question such as What is your next move in Bellatro?, expose only the actions relevant to the current screen, then decompose play hand into a lower-level card-selection loop. Use name/target payloads and the enabled flag instead of raw cursor clicks; log the executor, and remove stale fields such as a misleading reason value. Prime found the raw snapshot consumed roughly 20,000–21,000 input tokens, then reduced it to hand, score, plays/discards, jokers, tarot cards, chips needed, and hand values.

  • Make capabilities portable, not sessions. Riley Brown is centralizing skills, plugins, and keys so he can switch among Codex, GrokBot, Claude Code, Muse, and other platforms; he later says his agents share skills, plugins, and memory, with model switching even in an iMessage agent. Treat this as a portability experiment rather than a production benchmark, but copy the direction: one versioned capability layer with thin host adapters.

  • Trigger outside the chat and measure each lane. Kody’s subscriptions support platform-level and custom events, which Kent C. Dodds uses to wake a bot from email and Discord. Pair that event layer with Ben Tossell’s harness/token tracker, which splits usage by agent and model, before tuning prompts or adding more autonomy.

📡 WHAT SHIPPED

  • Claude Code 2.1.277 adds AGENTS.md fallback. If a folder has no CLAUDE.md, Claude Code now checks and uses AGENTS.md; the behavior is toggleable in /config. It is implemented as a built-in Claude Code mod, with custom project-instruction mods planned. Simon Willison says this removes his one-line CLAUDE.md wrapper workaround, while Romain Huet calls it ecosystem convergence around a shared standard. Study the mods source, especially the AGENTS.md implementation.

  • Jev is now exposed directly in Kody Koala. The integration is aimed at fast typed decisions over shared state, including classifying mixed tickets, deciding whether a PR is ready to ship, and assigning a rough quality score. LangChain says Jev reports up to 200× faster inference and 400× lower cost than comparable LLMs on classification tasks; treat that as a reported model claim, not an independent benchmark.

  • OpenClaw adds a local-to-sandbox handoff. In the latest OC, ask the agent to Run this [web app] in crabbox and show me [vnc / a portal]; the flow now works when development starts locally, across Linux, macOS, and Windows boxes, with CUA support as well. Steinberger also describes a Discord-connected roboclaw team server that tracks current and past sessions, while a collaborator cleans (“deslops”) sessions before the PR lands.

  • AgenticLinux packages the agent workstation as an immutable system. The new bootc desktop ships with Docker Engine, Docker Sandboxes, llmman, and OpenClaw; its root is read-only, updates are atomic from Docker Hub, and rollback is built in. The GitHub repo is worth studying for the deployment boundary around local agents.

  • API-tooling architecture is up for revision. Armin Ronacher proposes a more direct MCP shape—codemode plus OpenAPI plus RAG over OpenAPI documentation—pointing to the OpenAPI-only Radius skill as evidence and arguing that MCP can be layered on top but was not designed for this boundary. Separately, gog now has an MCP server.

🎬 GO DEEPER

  • Riley Brown — JEV: How It Works and What You Can Build: watch the model-router and choice/score/null walkthrough; it is the cleanest explanation of why the decision layer belongs outside the coding model.
  • Matthew Berman — We need to talk about Jev...: the hybrid-world demo makes the boundary concrete—Astra/Codex builds the environment, Jev handles repeated in-loop decisions, and a router chooses where each request goes.
  • ThePrimeTime — 🚨 TRYING JEV: The new STYLE of AI!!!: this is the useful teardown rather than a polished demo: state reduction, executor bugs, action validity, and the eventual behavioral-tree/state-machine design.

Editorial take: The frontier model should spend its budget on hard reasoning; the harness should own routing, state reduction, action validity, portable instructions, and sandbox handoff.

Jev’s Control-Plane Pattern Gets a Real Harness
Back to details
Skipped contexts (45)
Simon Willison's Weblog
Simon Willison's Weblog
Simon Willison's Weblog
Simon Willison
Simon Willison
ThePrimeagen
ThePrimeagen
ThePrimeagen
ThePrimeagen
ThePrimeTime
Kent C. Dodds 🐨
Kent C. Dodds 🐨
Kent C. Dodds 🐨
geoff
Peter Steinberger 🦞
geoff
geoff
Riley Brown
Riley Brown
Theo - t3.gg