Towards a harness that can do anything
51–60 of 121 posts
Re: Towards a harness that can do anything
#52What's with this "harness" word people have been trying to adopt lately? Are we all going rock climbing?
Re: Towards a harness that can do anything
#53Something I am convinced of though, there probably isn't a single `best` harness for all tasks. Different workloads will likely perform better with certain combinations of model + harness, especially when we are talking about token budgeting and cost tracking.
Ambiance feels like a great base “kernel” to build those variants on top of, rather than the one true harness.
Re: Towards a harness that can do anything
#54What's with this "harness" word people have been trying to adopt lately? Are we all going rock climbing?
Re: Towards a harness that can do anything
#55Re: Towards a harness that can do anything
#56Re: Towards a harness that can do anything
#57Why force the LLM to use files over vector database or key-value stores, just because it's a design principal for UNIX (which is designed for human users, not LLMs.)
Re: Towards a harness that can do anything
#58What's with this "harness" word people have been trying to adopt lately? Are we all going rock climbing?
It parses the LLM output for tool calls, executes the command, and puts the output back into the LLM input. That's all there is to it.
Re: Towards a harness that can do anything
#59Earlier quoted context omitted.
> Awesome work! This is really impressive. I gave a GitHub star. { aislop pitch} > Again, great work. i can bet you didnt actually read the op. i hate these comments so much. selfish and rude.
I did indeed read every word. And read the code. Don't be rude.
(That being said, "the most powerful AI agent file-editing tool in the world" is a bit of a stretch.)
Re: Towards a harness that can do anything
#60I kind of have a different idea of agents. I totally believe in a deterministic scaffold but I really think that an agent should be as deterministic as possible - the more code, the better. Think of a typical loop we may ask of Claude Code today (assume we are not using TDD): run some test suite with fail fast mode, diagnose if the failure is due to recent feature changes (pass reference to backend/frontend, github i…
One of my policies for agentic coding is to spend much effort in developing tests, coded tests not LLM based vibes. My projects have around 1:1 LOC between code and tests. Tests are like skin, when the skin is pricked it hurts, agents need to feel pain too. OP's idea "everything is a text file" is good and I use it too. My plans are saved as task.md files, numbered and named. Work items are checkboxes inside the file…