isn't that a tall claim?
Towards a harness that can do anything
91–100 of 121 posts
Re: Towards a harness that can do anything
#92Re: Towards a harness that can do anything
#93Earlier quoted context omitted.
The idea of morphing prompts to code and back is revolutionary. You may want to read earlier discussions https://news.ycombinator.com/item?id=48881112 And https://news.ycombinator.com/item?id=48051562 I
I am not sure if this is sarcasm - but just in case - https://github.com/sshwarts/skillscript does not offer a unified namespace for functions and prompts (agents) like https://github.com/zby/llm-do (currently in suspended development). There are now also the 'dynamic workflows' in Claude Code that are pretty interesting approach - they are like a compiled prompt in many aspects.
Thanks for dynamic workflow pointer. I don’t know if I like JavaScript for workflow definitions tho. IMHO sshwarts has the right idea on severely constrained workflow definition language. I plan to look closer into ADK2 workflows as well.
I’m not saying anyone did what you are doing, I’m saying multiple pieces are converging on that, at least in my imagination.
Re: Towards a harness that can do anything
#94This post is chock-full of soft ideas. They make no meaningful steps toward "a harness that can do anything". The suggestion is to replace a small node application with specific tooling, with a vm "to give it more capabilities". This is what Agent sandboxes are, already. Making the sandbox the harness, doesn't achieve a concrete goal.
Re: Towards a harness that can do anything
#95I 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…
Re: Towards a harness that can do anything
#96Earlier quoted context omitted.
I’m definitely on the deterministic code train as well. All of my success for long running tasks has been around wrapping the agentic harness (cc, codex-cli, etc.) in a deterministic workflow with deterministic gates. We need a name for this outer layer. In my mind that is the true harness because it constrains the agents failure mode. I think flow engineering has been proposed. Maybe it’s the agentic exoskeleton?
I believe they call it "loop engineering"
Re: Towards a harness that can do anything
#97Re: Towards a harness that can do anything
#98Re: Towards a harness that can do anything
#99How much do the labs post-train on the harness inputs & outputs? That's a critical piece to understand if a "generic" harness is at all possible
Re: Towards a harness that can do anything
#100I think domain specific harnesses are already surpassing generic harnesses. I also think software development is its own domain. My harness is a Claude Code plugin with its own brainstorming, adr, and planning skills with associated review and interview skills. Behavioral testing related to acceptance criteria is built in. Everything in my harness is gated to prevent ratholes. I recently inflated a docker container t…