Nine coding harnesses vs. your laptop
Posted by nasutton12 1 day ago
Comments
Comment by OleksandrC 1 day ago
Comment by crossroadsguy 1 day ago
I've been so far using pi like this:
> pi --offline --no-extensions --no-skills --no-prompt-templates -nc -nt --thinking low --system-prompt "$(cat <custom purpose path for system/role prompt>)
Purpose was to reduce token usage to an absolute minimum (zero extra token) as often I use this per use API keys (and not my GLM key, which let's say, is a bit "different" when it comes to conversations).
Are there any other tools specifically designed for such tasks? Even though hax looks like the absolute bare minimum one can go while still being usable.
I wish there was also tools that would refuse and reject (or prevent) models from inserting "thinking" messages into responses. They keep appending those and that very soon that part starts snowballing on steroids.
Comment by mischief6 1 day ago
it grew out of annoyance of dependencies on js runtimes, probably similar to you. mine additionally works on solaris and esp32.
could be interesting to collaborate!
Comment by d3Xt3r 1 day ago
If anyone's aware of a smaller agent than this, hit me up!
[1] https://gist.github.com/fourlexboehm/a60e4ef9306744483731cd1...
Comment by nasutton12 1 day ago
Comment by Systemerror7A69 1 day ago
So the points about it being a well behaved unix tool, installing it via brew and it not being react are points I - love - to see.
Thank you for making it, I will definitely try it out.
Comment by altruios 1 day ago
A lot of people have multiple files for their injected system prompts (a.la openclaw or hermes), I think it would be a good idea to either add or modify this point to be able to handle multiple file injections (system_prompt_append_folder or the like). Fitting that shape would make it easy to compare to those systems and make it easier for people to transition from those systems to yours.
Comment by mring33621 1 day ago
Comment by alex_john_m 1 day ago
"it spreads up to 50% between nights, so nothing between the lean arms is a finding."
Comment by entrope 1 day ago
Comment by arjie 1 day ago
Comment by nxobject 1 day ago
Comment by toasty228 1 day ago
Comment by crossroadsguy 1 day ago
So I keep Pi for just one case - when I have to easily strip everything out for some work. Anything heavier and OpenCode or Claude are ones. I am sure I can make Pi behave as I've suggested above the "N harnesses within 1 harness" and I even tried but it simply started getting out of hand and using the harness started becoming the frustrating hobby.
As for OMP, I just don't understand why would anyone use that not Pi or other "full-fledged" harnesses.
Comment by weiran 1 day ago
The trick with pi is to extend it yourself as you use it. It’s pretty easy to do.
Comment by toasty228 1 day ago
pi used 2-3x the tokens of codex. pi with subagent pkg used 8x-10x the tokens of codex.
I don't see how adding bloat to pi would make it more token efficient if the baseline is so poor to start with
Comment by kadoban 1 day ago
If it's missing guidance that would help, system prompt additions might help.
8x-10x the tokens is wild, is this for some tiny artificial benchmark? That's just too much extra for something not to be just broken.
Comment by toasty228 1 day ago
Comment by kadoban 1 day ago
Most things you can mess with the big effect is like, oh a thousand tokens ended up in the ~system prompt, or 10% extra or fewer work based on extra tool calls or churning through thinking or whatever.
Harness stuff if it's 8x worse that's like, it's fucked and broken, something went _wrong_.
Comment by crossroadsguy 1 day ago
Then I began to customise it to be as good as Claude but eat less taken. I got tired and I had not even scratched the surface. Gave up.
I finally realised, at least for me, Pi's best use case is - strip even the little "extra" Pi comes/starts with and then use it just like that if you have a task/work that is appropriate for that bareness.
Comment by julesrms 1 day ago
I know Juggler's very new, but there's so much churn going on in this area that it's hard to know where I should be pushing it. It's hard to guess whether juggler's strengths would played well with a particular test like this, or made it look bad, all feedback about the kind of parameters people are interested in is useful to know when I'm deciding what to optimise.
Comment by kouteiheika 1 day ago
Well, everyone and their dog has a custom harness now (including myself!), and more often than not they're just... pretty much the same, just with a slightly tweaked UI and different defaults? The harness needs to either be one of the popular ones, or have some sort of a unique feature which actually differentiates how it runs, not just how it looks/controls like.
For example, one of the unique features of my harness is that the filesystem is completely virtualized and all filesystem I/O is part of the session. This means that any files the agent modifies aren't actually modified on disk until the user uses `/apply`, and rewinding the session also rewinds the state of the disk, and this works for all I/O and all tools (including anything spawned by the `bash` tool), and also supports at-will forking of the session including the filesystem state. This means that the agent can run fully YOLO and won't be able to nuke your disk, and it also means that there's no need to use git worktrees and such because multiple agents can just run in the same directory at the same time without an issue.
Essentially, what I'm trying to say: I'd love to see more experimentation in the harness space which doesn't just involve "a different GUI".
Comment by aktau 1 day ago
What are the mechanics of this? You mentioned bash so I asssume you don't "control" all the tooling. Is it running in a VM with an overlay filesystem that takes snapshots at every file interaction? Or perhaps outside a VM but containerized with a FUSE-based overlay filesystem?
Comment by kouteiheika 1 day ago
Comment by julesrms 1 day ago
I've had the same "virtualised filesystem" in my TODO list for a long time, but can't decide whether it's a game-changing workflow that everyone will want, or a maintenance burden that I'd regret adding... Could go either way!
Comment by nasutton12 20 hours ago
Comment by kouteiheika 1 day ago
Same. But there's a trick to it, in a way: vibe code it first, test it out yourself, and then decide whether it should be reverted or kept and deslopped/properly shipped.
> I've had the same "virtualised filesystem" in my TODO list for a long time, but can't decide whether it's a game-changing workflow that everyone will want, or a maintenance burden that I'd regret adding... Could go either way!
For me personally it's a game-changing workflow, because it means I don't have to sandbox (e.g. with a Docker) my agents while still being able to run full YOLO. Essentially have my cake and eat it too. If the agent does something stupid I can just rewind. And I don't need to spend as much effort continuously reviewing what it does, because I can just do it right at the end on the `/apply` screen.
(But this only applies if the filesystem is actually fully virtualized, as opposed to the git-based checkpointing that so many harnesses have, which to me is pretty much useless because it doesn't actually give me any guarantees. That is: the agent running `rm -Rf /*` should be a non-event that doesn't do anything to my filesystem, and can only nuke the agent's view of the filesystem.)
Of course, this could just be me, and other people may not really care. But then, is your objective to make the best possible harness for you and people like you, or for everyone? In my case it's the former.
Comment by sejje 1 day ago
i think headlong as well
Comment by blurbleblurble 1 day ago
Comment by owebmaster 20 hours ago
It seems we need a place where harness creators can pay for that work. There are more people talking about their own harness in this post than talking about the post.
Comment by nasutton12 1 day ago
Comment by tontinton 1 day ago
Comment by frafra 1 day ago
Comment by tontinton 1 day ago
Comment by nopurpose 1 day ago
Comment by tontinton 1 day ago
Comment by larodi 1 day ago
Comment by suprjami 1 day ago
The only other thing anyone is using is Qwen 3.8 Flash Next, only by memory-rich people.
Depending on which benchmarks you believe, these models (and the Ornith 1.5 finetune of Qwen 35B-A3B) are competitive at about Opus 4.5 to 4.7 level. That matches my experience in real tasks over the last few months.
Not bad for something you can run at home for a couple of thousand dollars.
Comment by nasutton12 20 hours ago
Comment by suprjami 18 hours ago
Comment by nasutton12 17 hours ago
i was steering chad in the opposite direction. one model & one set of silicon -> taken to the max. swap out your CHAD_MODEL and it still runs, you just leave the drafter and the kernels behind.
Comment by noir_lord 1 day ago
It's fine for that (and I happen to have a 24GB VRAM GPU anyway since I game on the same PC).
It's neat but for me not world changing.
It's also just fun to be able to poke stuff and see what it can and can't do (but I could see how it could also become a time trap in cases where it gets kinda close and you want to fix that).
Comment by Scarjit 1 day ago
Wouldn't trust it for long form coding, but for shorter stuff it's really good.
Comment by snek_case 1 day ago
Comment by lrvick 1 day ago
Comment by humbleferret 1 day ago
I'd love to see a tiny, reproducible benchmark repo that anyone can drop on their own hardware and then run against all harnesses at once to compare the per turn prefix token count, time to the first token, experienced tokens/sec (and prefill), cache reuse % and a pass rate on a deterministic set of small tasks. I think it could also be useful to have some way to share results and hardware for others to compare.
Comment by nasutton12 18 hours ago
uv run python benchmarks/matrix/run.py setup. i'd happily take your hardware's numbers!
Comment by montyanne 1 day ago
“Chad” initially looked interesting but the minute I saw the ai-written markdown and giant commit I just left. I just can’t bring myself to read someone elses’ slop, regardless of performance.
If all a developer hand writes is a truthy and readable markdown document, I really don’t care if the rest of the project is vibe coded, but I struggle to get interested in AI generated summaries and docs.
Comment by CGamesPlay 1 day ago
Comment by ramon156 1 day ago
Comment by imtringued 1 day ago
Comment by montyanne 1 day ago
Comment by hexley19 16 hours ago
Comment by swiftcoder 1 day ago
Comment by nasutton12 20 hours ago
Comment by asdfsa32 1 day ago
Comment by embedding-shape 1 day ago
Comment by gramie 1 day ago
Also, Alt-Left Arrow doesn't return me to the previous page (Hacker News) and I have to use my mouse.
Comment by nasutton12 1 day ago
Comment by teekert 1 day ago
Comment by throwa356262 1 day ago
https://m.youtube.com/watch?v=c_fQoDkULl0 (see around 8:00)
Comment by nottorp 1 day ago
Mind, this is more of an exception, at least for my work, but still, what do you do with 32k tokens?
Edit: i resumed a quickie that basically added a 10 line function in one spot, and even that is 50k tokens...
Comment by nasutton12 18 hours ago
Comment by grigio 1 day ago
Comment by bozhark 1 day ago
Comment by NooneAtAll3 1 day ago
Comment by nasutton12 1 day ago
Comment by wip0 1 day ago