Interesting. Would love a comparison to pi.dev (Not Ohmypi) How does this perform in day to day coding tasks, outside of benchmarks?
https://github.com/dirac-run/dirac#-evals README has eval of 8 tasks over 7 agents (including both pi and omp). Pi-mono costs second lowest across the 8 tasks (after Dirac) but occasionally misses produces incomplete changes. Interestingly, 2 tasks where pi missed some changes both were the tasks that benefitted from AST symbol understanding (e.g. find all instances of things that refer to this symbol and change thos…
Show HN: OSS Agent I built topped the TerminalBench on Gemini-3-flash-preview
21–30 of 167 posts
Re: Show HN: OSS Agent I built topped the TerminalBench on Gemini-3-flash-preview
#22Very interesting! I've often thought static analysis could really help agents (I wrote this last summer: https://martinalderson.com/posts/claude-code-static-analysis... ), but despite being hyped for LSPs in Claude Code it turned out to be very underwhelming (for many of the reasons that they can be annoying in a "real" IDE, ie static analysis starts firing mid edit and complaining and cached analysis getting stuck).…
Wrt LSP, it uses the default LSP mechanism of the ide provider. For AST, it uses tree-sitter WASMs (ships them with the package), and maintains queries ( https://github.com/dirac-run/dirac/tree/master/src/services/... ) To keep performance fast, it stores the symbols DB (using sqlite) in the workspace's directory and incrementally updates it based on timestamps. Then it uses this DB to resolve symbol queries
Like even "full" Visual Studio and Resharper have issues with this. Eg, you start editing file x, 'intellisense' runs, says there are loads of errors... because you haven't finished editing yet.
Re: Show HN: OSS Agent I built topped the TerminalBench on Gemini-3-flash-preview
#23Re: Show HN: OSS Agent I built topped the TerminalBench on Gemini-3-flash-preview
#24Re: Show HN: OSS Agent I built topped the TerminalBench on Gemini-3-flash-preview
#25Any ideas?
Re: Show HN: OSS Agent I built topped the TerminalBench on Gemini-3-flash-preview
#26Re: Show HN: OSS Agent I built topped the TerminalBench on Gemini-3-flash-preview
#27I keep trying to use dirac-cli with codex and it won't work: Error: Codex API error: Codex API request failed: 400. Any ideas?
In my tests, it worked using gpt-5.4 for me and I assumed gpt-5.5 is not available to me because I am on the free plan
Do you have the subscription that allows 5.5? If so, I can look into what changed in API. Sorry I rarely use openAI so it is a bit of an untrodden path
Re: Show HN: OSS Agent I built topped the TerminalBench on Gemini-3-flash-preview
#28Stared it. will try it later. one question though, to make it simpler for me, in what tasks does this model shine, how do you improve the score? I already use some skills to cut down CC costs, like caveman, rtk cli and a few others. just want to understand
Re: Show HN: OSS Agent I built topped the TerminalBench on Gemini-3-flash-preview
#29how well does it do on frontier models like Opus 4.6?
Re: Show HN: OSS Agent I built topped the TerminalBench on Gemini-3-flash-preview
#30Can't OpenCode reach the same just developing this as a feature or plug-in? Like anchored edit?