Live data from Hacker News

Show HN: Benzi – A Code Intillegence/Harness Beating Claude Code and CodeGraph

benzi.fly.dev

1–6 of 6 posts

Re: Show HN: Benzi – A Code Intillegence/Harness Beating Claude Code and CodeGraph

#3
post #2

Wait is this a harness? Can I use it to replace Codex? All I see is just the benchmark page, where's the project page?

harness is only available as a VS extention for now (no headless. MCP release soon as well), you can get it here: https://marketplace.visualstudio.com/items?itemName=variantt...

here is the about page: https://benzi.fly.dev/about

and github landing page: https://github.com/oooscoos/Benzi

Re: Show HN: Benzi – A Code Intillegence/Harness Beating Claude Code and CodeGraph

#5

nice to see more harness benchmarks that arent just swe-bench. how does benzi handle really large monorepos, does the code graph scale or do you chunk it

thank you!! and it scales. the same operation runs no matter the size of repo. once you have paid the cold start price, it updates incrementally (AI or user writing code).

Re: Show HN: Benzi – A Code Intillegence/Harness Beating Claude Code and CodeGraph

#6
Token cost and wall clock time are practical pain points for SWEs, but the bigger intellectual pin point is that the dang bot has to reconstruct the code structure actually READING the code as TEXT.

like do we NOT KNOW what functions are? how they could change variables? or what in an "if/else" would do? Now think about a compiler, does it not ALREADY DO ALL THAT? just it compiles to machine code - not something an AI can use. Benzi is built to bridge that gap. Fully language agnostic and model agnostic, it compiles the deterministic intellgience for instant O(1) lookups, so your artifical intellgience can do the real SWE work. Tree-sitter is the only dependency.

Please let me know what you think and star on GitHub if you like it