Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Linux Command Line Tricks that you do not know yet(lovethepenguin.com)
    discuss
  2. Show HN: Newdo – a todo list where the list is an output, not an input(beaverminds.com)
    discuss
  3. Grit your teeth and ship it(seangoedecke.com)
    discuss
  4. Discourse (open source forums) adds Discord-style voice and video calls(discourse.org)
    discuss
  5. Recursive self-improvement of AI research agents(arxiv.org)
    discuss
  6. Show HN: Analysis of Games from Chess Olympiad with Opus 5.5 and Stockfish(unremarkable.info)
    discuss
  7. Microsoft disrupts AI-assisted platform that compromised 12,000 accounts(arstechnica.com)
    discuss
  8. Why Tool AIs Want to Be Agent AIs(gwern.net)
    discuss
  9. Fearless SIMD v1.0 is here(linebender.org)
    discuss
  10. M6 Mac Mini uses soldered NAND storage again(macrumors.com)
    discuss
  11. Show HN: Yass – Yet Another Spec Syntax Enters Beta(github.com/shakefu)
    1comments
  12. Building a docs site that screenshots itself(semaloop.com)
    1comments
  13. There is no epidemic of loneliness, but there is an epidemic of scurvy(experimental-history.com)
    discuss
  14. Claude Code Hooks Explained: The Deterministic Layer Around Your Agent(blakecrosley.com)
    discuss
  15. Jevify skill – Gets your existing agents running on Jev
    discuss
  16. Show HN: use-citations – Claude Code skill for citation backed answers(github.com/sshah03)
    discuss
  17. Show HN: Daily-updated open dataset of flight fare history by route and month(github.com/deusacc)
    discuss
  18. CobaltC now has a compiler (for Linux)(github.com/strawberry9)
    discuss
  19. First Petabit-Class Transoceanic Subsea Cable(fb.com)
    discuss
  20. Ask HN: Engineers on highly polished products, how are you using agentic coding?
    1comments
  21. Which AI model should your team use for Ansible(steampunk.si)
    discuss
  22. Unreal Agent An async-first agent harness(github.com/unreallabsai)
    discuss
  23. Transformers now runs llama.cpp quants(huggingface.co)
    discuss
  24. Australia's giant data-centre boom(economist.com)
    1comments
  25. Avhash: BlurHash replacement, using a AV1 frame with container headers stripped(github.com/keithamus)
    discuss
  26. Show HN: Ceptile AI Search platform which combines web results with AI chat(ceptile.com)
    discuss
  27. Claude Opus 5.5 – Pelican Game(riba2534.cn)
    2comments
  28. I Gave My Life over to Meta's A.I. Agent and Was Blown Away(nytimes.com)
    1comments
  29. El Niño projected to cause 450k deaths in next six months(theguardian.com)
    1comments
  30. Mastering LLM Inference Optimization(machinelearningmastery.com)
    discuss

Benzi – Code Intelligence MCP/Harness beating Claude Code and CodeGraph

2 pointsby 1h agovarianttech.net
1 comments
1h agoHN ↗

GitHub: https://github.com/oooscoos/Benzi

Demo: https://varianttech.net/demo

Benchmarks: https://varianttech.net/benchmark

Roughly speaking, the way current AI coding agents/harnesses work is by either:

a) Pulling in appropriate text snippets of code across multiple files and handing them to the agent, or

b) Parsing code to make high dimenional embeddings to approximate a symptom map, and hand that to the agent.

Both of these approaches skyrocket the token count, add to wall clock time, contribute to context drifting, add to the model's thinking tokens to discover the structure of the program, and then FORGET most of it when Claude Code compacts, or ALL of it if it's a multifile refactoring because all line numbers shift and need re-grepping.

Benzi is built from the ground up to AVOID reading source code in the first place. It supplies the artificial intelligence model deterministic intelligence via tool calls. For example, when a model is about to make a code change, it could query "what functions feed this one?" -- half the time it isn't even necessary because the Benzi compiler already informs it of the blast radius before and after making edits, along with a complete static analysis check.

Benzi Sonnet reads far less source code (9,125 lines) than Claude Code Sonnet (20,704), DeepSeek's harness (43,598), and OpenCode (65K+ LOC -- disqualified due to repeated failure) to accomplish the same tasks faster and cheaper. (benchmark link in comments)

Benzi has truth tiers clearly seperating what can be analyzed with static analysis from what can't -- and then adding a runtime tracer on top to bridge the gap between the two (details in FAQ on github).

It also has several bonus features such as a runtime tracer, self-aware model upgrade mid task if it thinks the job is over its pay grade, context aware model written repro, and SEVERAL more.

It currently supports Python · JavaScript · TypeScript · Java · C# · C++ · C · Go · Rust · Ruby, and can handle HTML, CSS and JS -- deterministically. Claude Code clicks photos, Benzi resolves winners of CSS rules. The CodeIndex and the MarkupIndex are fairly well tested, and if something isn't working, the model is made aware of it first.

On the benchmarks side, 78.2% SWE-bench Verified for <10¢ a fix (using V4flash). This score is noteable because while the rest of the industry is leaning plugin-heavy and pouring millions of dollars into increasing context window sizes, Benzi's approach might prove to be economically more valuable while improving the model's code writing/comprehenion abilities.

Thanks for reading! please let me know what you think. I am aware the AI fatigue is real, but I hope you can see why indexing a repo > reading raw source code. Please go over the github readme before snap judgements..

Try feeding the live demo any random ahh repo you want. And ask it questions only real code intelligence could answer.