Jev did not make Claude Code cheaper. Its own benchmark says so. A developer's code review of the jev-gateway router for Claude Code found that a single ternary in src/adapters/messages.ts forces the gateway into "hint" mode for every real Claude Code request, because thinking and caching are always on. The gateway's own jev-gateway-bench, 120 sessions across Claude Code 2.1, shows routing cut input tokens 48% and time 25% on a bugfix task but raised input tokens 61% and time 83% for Opus 5 on a feature task, and the author's logging proxy measured a 47,000-token tool roster being re-sent each turn to return a 4-token decision. The gateway's README states it should be expected to improve tool picks on large tool lists, "not lower cost or latency. Six videos in five days wired Jev into Claude Code and called it the cheapest agentic coding loop available. I installed the gateway too. Then I did the thing none of those videos did, which is open the code. One ternary in src/adapters/messages.ts , line 99, answers the entire question: steer: thinking || cached ? "hint" : "tool choice" If thinking is on, or the conversation is cached, the gateway is only allowed to hint. Every real Claude Code request carries both. So hint mode is not a degraded fallback you hit occasionally. Inside Claude Code it is the only mode there is. So what does a hint actually buy you? Jev is TypeSafe's decision model. No text generation, just a choice, a score or a yes-no probability, in 70 to 500 ms, at $0.042 per million input tokens. jev-gateway sits in front of Claude Code, looks at your tool roster, and tells the model which tool it thinks you want. I did three things: read the gateway's adapter and launcher, read the benchmark the gateway author published alongside it, and put a logging proxy in the gateway's seat in front of my own Claude Code to count what a router would actually receive. The install is honest, by the way. bin/clients.mjs sets ANTHROPIC BASE URL and nothing else, so your Pro or Max login keeps working and no API key is involved. The gateway's own README says it plainly: "Expect better tool picks on large tool lists, not lower cost or latency." Nobody quoted that line either. In hint mode the gateway appends a block after everything the client sent, on the client's own blocks, so the cached prefix stays byte identical. The text is a