What Is a Harness?

(earendil.com)

117 points by tosh3 hours ago

19 comments

  • Syntaf1 hour ago
    I’ve been working on a harness for accounting agents at my job recently and it’s been a pretty interesting experience.<p>We originally started with building a CLI tool so our LLMs could more easily interact with our platform. I cannot recommend enough the value of having an internal CLI. It’s both fun to build and extremely useful for agents.<p>We paired this with skills initially, but found that the way folks built skills was often too prescriptive and limited to the authors own specific function in the company. A 2k line long skill suffers from the same gaps as we do, if an agent is just following a laundry list it’s less likely to reason about the request it’s doing.<p>So we instead asked ourselves: what if we just _let_ the agent reason about the work to be done and only provided the tools + guardrails to gather context and perform accounting work?<p>Turns out frontier models are GOOD at what they do, they outperformed our highly prescriptive skills and were able to work across a larger set of tasks even without instruction on how to do those tasks.<p>It’s a breath of fresh air from the decade of CRUD I’ve worked on, harness engineering is very neat.
    • ljm6 minutes ago
      I&#x27;ve been building a harness (on top of Pi for that matter) and have had similar experiences. Pi itself helps a lot with it being extensible by design but it&#x27;s definitely been a challenge to make certain things work in an expected way.<p>The native app I&#x27;m building on top, which I hope people who are less technical (or not technical at all) will use, is even more interesting because it&#x27;s not <i>just</i> supposed to shell out to the CLI for everything and needs its own state.
    • newsomix9xl54 minutes ago
      Can you post a generic version of code for this somewhere (e.g. codeberg or whatever)?<p>I find your description intriguing but I&#x27;d like to see it to make sure I understand it.
    • pdhborges1 hour ago
      So you still have CLIs but they have I presume an help command that describes the capabilities right.<p>Could you give an example of an accounting guardrail you created?
      • dpritchett55 minutes ago
        I’ve also found that Claude and friends are eerily good at using classic Unix CLI tools so I build mine in the same style, not unlike the `gh` CLI from GitHub, though with an agent-first design shape.<p>Usually I’m returning TSV as a default format and I add a `help-all` subcommand to list every available command at once when needed. Another thing that helps is adding just-in-time context-sensitive hints, such as: user has just run a list query with at least one result. Add a one-liner to the response explaining the command shape for getting the detail view of the first response.<p>In terms of skill files, I like to have my CLI generate them dynamically at runtime by walking their own current command tree and then feeding that through a text template.<p>Examples from a public project: <a href="https:&#x2F;&#x2F;github.com&#x2F;radiusmethod&#x2F;gitlab-kiosk&#x2F;blob&#x2F;main&#x2F;skill&#x2F;SKILL.md.tmpl" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;radiusmethod&#x2F;gitlab-kiosk&#x2F;blob&#x2F;main&#x2F;skill...</a>
      • Syntaf35 minutes ago
        Yeah the CLI can provide schema for commands via the usual ‘—help’ syntax, so agents are able to discover + explore commands on their own.<p>As for an example: if our agent wants to book a journal entry to cash accounts for a client, it MUST provide receipt and directly link the transaction from the clients bank feed, if it attempts to do so without the requisite information we deny the tool call and ask the agent to escalate back to the client for proof of receipt.<p>Often times this results in the agent not doing the work and instead sending a message back to the client asking for proof of the transaction.<p>For humans on our platform there may be valid situations where we’d want to allow this, but for our agent this is a hard guardrail thus why it’s not just standard validation for any JE posting on our platform.
        • pdhborges32 minutes ago
          <p><pre><code> if our agent wants to book a journal entry to cash accounts for a client, it MUST provide receipt and directly link the transaction from the clients bank feed </code></pre> And that rule is encoded in the CLI?
          • Syntaf29 minutes ago
            It’s actually encoded in an abstraction that we call “gates” which run before any tool call an agent makes, this allows us to prevent the tool call from happening and return a cited code + explanation on why their tool call was not executed<p><a href="https:&#x2F;&#x2F;docs.agno.com&#x2F;tools&#x2F;overview" rel="nofollow">https:&#x2F;&#x2F;docs.agno.com&#x2F;tools&#x2F;overview</a>
  • xrd49 minutes ago
    Does anyone have a suggestion for a harness that is good at handoff?<p>When I say handoff, I mean:<p><pre><code> * handoff from a terminal CLI to webui (on a phone)? * handoff from one team member, to another? * handoff from one communication modality, like writing a prompt in a TUI, to email? * handoff from one model to another, or one provider (openrouter)( to another (llama.cpp) </code></pre> Does such a thing exist?<p>I used to think that a PR would be a good place to centralize all this. Who cares what IDE, or developer, or location. But, now I feel like an agent harness might contain that better.<p>Why do I want handoff? I keep losing context of where my harness is running. Sometimes I am inside an isolated VM. Sometimes I&#x27;m on my laptop, sometimes I&#x27;m on my home machine with the big GPU for local models. If I could spin up a harness that could identify itself inside my tailscale network, then I could probably have a single web UI which allows me to keep all that context straight.<p>I&#x27;m tempted to experiment with Pi to configure such a thing. But, perhaps there are patterns out there already with a harness I have not considered.
    • ds_opseeker9 minutes ago
      Sounds like you want an orchestration.<p>Let&#x27;s assume handoff happens when one &quot;agent&quot; finishes its work on one task, i.e. &quot;submit a PR&quot;.<p>At that point you want to exit the agent&#x2F;clear context etc (any context the next actor needs should be in the handoff artifact).<p>And the orchestrator calls the next agent with the artifact.<p>Claude can do this with subagents. If you want to get more serious, I&#x27;d look at &quot;durable workflows&quot; and check out what the pi people have to say: <a href="https:&#x2F;&#x2F;earendil-works.github.io&#x2F;absurd&#x2F;" rel="nofollow">https:&#x2F;&#x2F;earendil-works.github.io&#x2F;absurd&#x2F;</a> <a href="https:&#x2F;&#x2F;earendil-works.github.io&#x2F;absurd&#x2F;patterns&#x2F;pi-ai-agent&#x2F;" rel="nofollow">https:&#x2F;&#x2F;earendil-works.github.io&#x2F;absurd&#x2F;patterns&#x2F;pi-ai-agent...</a><p>you should also look at dbos <a href="https:&#x2F;&#x2F;www.dbos.dev&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.dbos.dev&#x2F;</a><p>And then do a search for these terms on HN and get some idea of their shortcomings vs a &#x27;real&#x27; orchestration tool like Airflow or Dagster
  • theturtletalks2 hours ago
    Harnesses are the next frontier. If LLMs are electricity, harnesses are the “electronics.” Right now, it’s like an AC vs DC between Claude and ChatGPT, but once that settles, the harnesses will be the actual value providers.<p>And Pi is the best harness because of the amazing extension system. You can build extensions that turn Pi into a stock trader, software factory, anything. I tried switching to another harness but none have extension functionality as good as Pi.<p>Even if there is a new harness or agent project, I tell Pi to dig into the codebase and then make me an extension that brings that functionality into Pi. I did it with Prime Intellect’s and Deepseek’s harnesses and those are built on Pi.
    • amelius2 hours ago
      &gt; If LLMs are electricity, harnesses are the “electronics.” (...) the harnesses will be the actual value providers.<p>Don&#x27;t get ahead of yourself. Harnesses are not exactly rocket science and will be a commodity.<p>The real value providers here are the hardware, then the LLM as a distant second, and at a much larger distance the harness.
      • conmod2782 hours ago
        <a href="https:&#x2F;&#x2F;www.latent.space&#x2F;p&#x2F;attention-interface" rel="nofollow">https:&#x2F;&#x2F;www.latent.space&#x2F;p&#x2F;attention-interface</a><p>Labs are now post-training models with Harness so that Harness now gets absorbed into the weights.
        • layer857 minutes ago
          I’d say that harnesses almost by definition are the parts that you want to keep customizable. That won’t get absorbed into the weights.
        • goosejuice1 hour ago
          My naive intuition is that as harnesses converge on shape and models improve the first party advantage will mostly disappear.
      • gritzko1 hour ago
        Either part can be branded a &quot;commodity&quot; or a &quot;sovereign privilege&quot; depending on supply and demand.<p>Solar goes all the way up =&gt; power is commodity.<p>Some hyperscaler goes bankrupt =&gt; hardware is commodity.<p>Models get real good =&gt; output is a commodity, no profitable problems to solve anymore.<p>Open source models get good =&gt; models are commodity.
      • theturtletalks2 hours ago
        I was saying more the custom skills and extensions that make the harness not a commodity. Yes people will use Claude Code, Codex, or Pi but their customizations will make their harness unique and more powerful.
      • romanhounds2 hours ago
        [dead]
    • mpawelski2 hours ago
      &gt; Harnesses are the next frontier. If LLMs are electricity, harnesses are the “electronics.”<p>I really though this comment was a satire ...
      • wwalexander1 hour ago
        E = mc^2 + AI
      • _superposition_1 hour ago
        In a sense they are the last frontier imo. At some point a harness will be built that can modify itself to fit the needs of the majority of people&#x27;s workflows and evolve with them.
        • layer846 minutes ago
          Then people will want to share and exchange their evolved harnesses. Ways will be found to modularize certain aspects to enable mixing and matching.<p>I’m thinking of how in cyberpunk, people are replacing their cybernetic enhancements all the time. You could alternatively bioengineer your own body towards the desired outcomes, but that’s more constrained by the trajectory your body has already taken, whereas the promise of cybernetic parts is that they are more independently replaceable. (Probably an illusion in practice, but I’m talking about the fictional ideal.)<p>As another analogy, monolithic software tends to quickly become hard to change significantly, whereas a plugin architecture tends to be more flexible and modular, and people can share and combine their various plugins.
      • grey-area2 hours ago
        Sadly, many people have bought into the cult that LLMs will lead to AGI. I guess if that is your worldview then all this babbling about new frontiers makes more sense.<p>They probably used an LLM to come up with this bizarre metaphor.
        • jbstack41 minutes ago
          I find it difficult to understand people who are wildly skeptical about LLMs leading to AGI (assuming we can even agree on what that means). Consider:<p>- They can already reason better than many humans and are still improving all the time<p>- Harnesses are improving all the time<p>- We&#x27;re already exploring things like long term memory, long term goals, and other things that humans have which LLMs traditionally lack<p>- An AI agent can read and reason about every piece of AI research ever published, including looking for insights that humans may have missed. A team of humans could never do this even if they dedicated their whole lives to it.<p>- They can design and execute experiments on a mass scale to determine what does and doesn&#x27;t work<p>- Large AI labs have more than sufficient resources and motivation to throw at the problem, and are in fact doing this.
        • theturtletalks2 hours ago
          Did I even mention AGI? All I’m saying is that we’re hitting a plateau with how good models are while harnesses are untapped potential. And with Pi, you can swap models like electricity companies. Yes for now, the electricity is better with some companies but this will stabilize.<p>And no I came up with the metaphor all on my own, send me the chat of you getting the LLM to come up with it. Why not argue based on merit instead of strawman and ad hominem attacks?
          • grey-area2 hours ago
            I’m afraid it’s a terrible metaphor, starting with the fact that LLMs are nothing like electricity, and the relation of harnesses to them is nothing like that of electronics to electricity, save perhaps one is a prerequisite of the other.<p>Harnesses (and the concept of agents before them) presuppose competence in LLMs which simply doesn’t exist.
            • rasputin2431 hour ago
              “Just as electricity transformed almost everything 100 years ago, today I actually have a hard time thinking of an industry that I don’t think AI will transform in the next several years” - Andrew Ng
              • Avicebron1 hour ago
                Is it just a coincidence that he works in the space and will directly benefit if this is true?
            • theturtletalks1 hour ago
              I didn’t come with the electricity idea, it was Sam Altman saying it will be like a utility down the line and metered[0]. What would the “electronics” be in your opinion?<p>0. <a href="https:&#x2F;&#x2F;www.businessinsider.com&#x2F;sam-altman-ai-utility-electricity-water-openai-2026-3" rel="nofollow">https:&#x2F;&#x2F;www.businessinsider.com&#x2F;sam-altman-ai-utility-electr...</a>
              • grey-area1 hour ago
                Altman is a salesman selling flimflam to people who should know better.<p>His idea of metering is predicated on the thing he’s selling being AGI, it is not, and all his predictions have turned to dust.<p>Also that isn’t how metaphors work - they illuminate by comparison, if the comparison is not close they are not useful.
                • theturtletalks41 minutes ago
                  If it is metered and like a utility, Sam Altman will not benefit alone. All the models will have plateaued and you can swap for any of them. Then the only differentiator is the harness.<p>I don’t believe in AGI, but that doesn’t mean I don’t find AI useful. I just understand that the correct harness can take them to the next level.
            • qarl213 minutes ago
              &gt; presuppose competence in LLMs which simply doesn’t exist.<p>Then how do you explain the wild success at using them for development?
        • sph1 hour ago
          &gt; Sadly, many people have bought into the cult that LLMs will lead to AGI<p>You can never tell if the goomba opinion of the forum will agree we have reached AGI (seen that happen on a few threads lately) or will readily call that a ludicrous proposition.
      • PepegaRoach1 hour ago
        [dead]
    • jrflo2 hours ago
      I&#x27;ve never used Pi but I don&#x27;t see why you can&#x27;t use stock codex or claude code for the same purpose, what makes Pi special? I&#x27;ve built plenty of custom harnesses on top of claude code and codex using custom skills or simple markdown instructions and subagents. Never had any issues or limitations with that approach.<p>I do agree that harnesses are going to extend AI capabilities a lot in the next year, but after reading Pi&#x27;s page I don&#x27;t see anything that makes it particularly special in terms of functionality, other than being more provider-agnostic.
      • throwup2382 hours ago
        For one you can ask Pi to create a TUI extension, so along with the agent interface you can add whatever custom TUI you need, such as portfolio stock tickers, alerts, whatever you want.<p>Many of my harnesses eventually turn into customized UIs around the chat interface.
      • lebek2 hours ago
        Codex and Claude historically had more bloat in their system prompt and tools. Pi is minimal by design so more adaptable. But to be fair Claude Code is moving in the Pi direction with a small system prompt.
      • ni10c2 hours ago
        Author here. I think our website could be much clearer - but Pi is fundamentally easier to mold than other harnesses. It’s not magic but it strikes the balance well of letting you shape it extensively without letting you break it.
        • gritzko1 hour ago
          A harness is the bottom layer of a <i>pie</i> that gets fed into the model. In my project, I count 7 more layers on top of it <a href="https:&#x2F;&#x2F;replicated.live&#x2F;blog&#x2F;wiki" rel="nofollow">https:&#x2F;&#x2F;replicated.live&#x2F;blog&#x2F;wiki</a> They all affect consistency, coherence, token efficiency. Probably we need some broader term. Like &quot;information architecture&quot;, &quot;knowledge architecture&quot;? It&#x27;s not just shoveling Markdown to nvidias, after all.
    • jacobgold1 hour ago
      &gt; <i>...once that settles, the harnesses will be the actual value providers.</i><p>The words &quot;once that settles&quot; are doing historic levels of work here.<p>No human on earth has a clear idea whether model technology will settle tomorrow or 100 years from now.<p>There&#x27;s every reason to expect architectural breakthroughs will keep being discovered and causing nuclear blasts of forward progress.
    • Aardwolf1 hour ago
      If LLMs are oxen, harnesses are... the harnesses
      • qarl21 hour ago
        Yeah. This is pretty clearly the origin of the usage.<p>The harness facilitates the work animal doing work for you.<p>Not climbing harnesses to keep you safe.
    • GodelNumbering2 hours ago
      This is a plug, but relevant. I recently added a &#x27;build native tools on the fly&#x27; functionality to Dirac (<a href="https:&#x2F;&#x2F;github.com&#x2F;dirac-run&#x2F;dirac" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;dirac-run&#x2F;dirac</a>) that works like:<p>1. You can use the &#x27;&#x2F;new-tool&#x27; and tell what kind of tool you want (including whether it should be task-scoped, workspace-scoped, or global), the model builds it, the harness runs validation and other tests until the tool is ready<p>2. The model decides that in such and such task, it would be helpful to have a tool like this, it can build a task-scoped tool.<p>In either scenario, the tool catalog is rebuilt, and the new tool is instantly available in the next turn.
      • _superposition_1 hour ago
        This type of modification of the harness on the fly to fit the need is the future. The only thing left after that is the mobile front. I think static app store type software as we know it is a thing of the past. You&#x27;ll only ever need one self modifying app.
    • grim_io1 hour ago
      I don&#x27;t think so.<p>What I can see is a world where we end up with a Chromium-shaped harness, a fully featured standard implementation everyone builds against, because doing every single thing yourself would be crazy.<p>The antithesis to Pi, if you will.
    • timbowhite2 hours ago
      Pi&#x27;s most popular extensions, by download count:<p><a href="https:&#x2F;&#x2F;pi.dev&#x2F;packages?type=extension" rel="nofollow">https:&#x2F;&#x2F;pi.dev&#x2F;packages?type=extension</a>
    • sejje2 hours ago
      What did you bring over from prime-agent? (I use prime-agent as my daily since it launched)<p>I primarily like how it manages sessions, and how agents can easily reference other sessions.
      • theturtletalks2 hours ago
        Something like this since Prime Intellect uses RLM under the hood:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;manojlds&#x2F;pi-rlm" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;manojlds&#x2F;pi-rlm</a>
    • oceansky2 hours ago
      I want to move from Claude Desktop to Pi, but I found it a little unfriendly. Any tips to set it up?
      • theturtletalks2 hours ago
        Pi doesn’t have a UI like Claude Desktop. It also doesn’t work with the Claude subscription, only API key and pricing.<p>So if you do want to use it, use the Codex sub. Once you install it, run Pi and &#x2F;login and you’ll get login with ChatGPT. From there, Pi can tweak it’s settings if you ask. Check out their extensions (or ask Pi) and that will take you most of the way there.<p>What hiccups were you having?
        • goosejuice1 hour ago
          &gt; It also doesn’t work with the Claude subscription, only API key and pricing.<p>Not out of the box, but you can add agent sdk. I&#x27;m not sure how great the results will be though.
      • zukzuk2 hours ago
        I haven’t tried it myself yet but I’m under the impression that Hermes Agent might be what you’re looking for?
      • ni10c2 hours ago
        Can you be more specific regarding unfriendliness?
    • epolanski51 minutes ago
      Both Claude and codex are unappealing, crap, generic agents that you have 0 control over.<p>Don&#x27;t understand what people see in them.
    • Topfi2 hours ago
      Please tell me this is satire, it reads like straight from the depths of LinkedIn where a while loop is seen as the second coming…
    • hliyan2 hours ago
      Are human HN commenters now starting to speak in a dialect of Claudish?
    • lebek1 hour ago
      The harness is just another codebase for the model to write and optimize. The value is still very much in the model.
    • irishcoffee2 hours ago
      How does Pi compare to vscode? Admittedly that is the only “agent&#x2F;harness” I’ve ever used.
    • cyanydeez2 hours ago
      what have you built other than a harness?
      • theturtletalks2 hours ago
        I built a software factory and am now building a stock trader using opencandle extension[0] and a custom extension. For inspiration for how to tweak Pi, check out OMP, Prime Intellect, and Deepseek harnesses.<p>0. <a href="https:&#x2F;&#x2F;github.com&#x2F;Kahtaf&#x2F;OpenCandle" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Kahtaf&#x2F;OpenCandle</a>
        • dominotw1 hour ago
          &gt; Prime Intellect<p>looking at the website. i can&#x27;t really tell if they have benchmarks and measuremnts on how all that improves capablities over just using regular agent withtout all that
    • dominotw2 hours ago
      i think its the opposite. claude code apparently removed hundreds of lines of system prompt because its not relavent anymore with newer models.<p>also i think its hard to build general harnesses if they were trained on specific harness architecture.
      • theturtletalks2 hours ago
        Yes but Pi has had a minimal system prompt since inception. Skills and Pi extensions let you make a hyper specific harness for specific use cases. For general conversation, harnesses are overkill most times.<p>There’s evidence of harnesses making a smaller, weaker model perform better than SOTA and some benchmarks ban harnesses because it becomes too easy.
        • tokai2 hours ago
          All agentic editors&#x2F;frameworks have skills and extensions and plugins?
  • freepiai36 minutes ago
    I think a harness is kind of anything around the intelligence that allows the intelligence to be applied towards something, some sort of task. A great (if off-color) example I remember hearing was how Steven Hawking was brilliant, but really needed that computer setup to be able to apply his intelligence. It really stands out to me as such a clear visual example of what a harness actually is.<p>Anyway I&#x27;ve been building my own harness on top of pi- www.freepi.ai (it&#x27;s based on Pi, but now I have an OpenAI compatible endpoint so I&#x27;m thinking of it more like free-api :-) ). Basically ad+training supported so I can offer completely free inference. It&#x27;s really important to me that we don&#x27;t have harnesses and intelligence trapped in a &quot;have and have not&quot; world. If we don&#x27;t all have access to intelligence we will end up in a dark place.<p>Thats again where the visual of Steven Hawking and the wheelchair really stand out in my mind. It&#x27;s not enough to have the raw intelligence, we need a really good wheelchair too.
  • childofhedgehog2 hours ago
    Clear, relevant, and easy to understand. Thank you for writing this up, I’ll be sharing this link with all my non-tech friends!
    • ni10c2 hours ago
      Author here. Thanks - I appreciate the feedback
  • tosh2 hours ago
    i also like the backpack analogy<p>the harness is what you take with you on a trip&#x2F;task<p>whatever you take with you is not free (system prompt, tools, skills …)<p>some models are really good even if you bring almost no skills, tools or system prompt<p>the harness is the complement to the model<p>the better the model the more minimal the harness can be<p>harnesses like pi [0] and smol [1]are on the more minimal end of things<p>[0] <a href="https:&#x2F;&#x2F;github.com&#x2F;earendil-works&#x2F;pi" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;earendil-works&#x2F;pi</a><p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;smol-env&#x2F;smol" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;smol-env&#x2F;smol</a>
    • lebek2 hours ago
      Not a bad analogy because the bigger your backpack the slower you walk. With models a big context and tool set degrades performance. So you want the smallest harness&#x2F;backpack that can do the job.
  • stacktraceyo1 hour ago
    To me, Before agentic programming a harness was like a mini framework in the app. Like for testing mostly. You’d set up the harness and configure it for your test and it would take care of boilerplate setup &#x2F; optional reporting &#x2F; benchmarks ect. Still works for both - but yea need a new word I guess
    • asim1 hour ago
      From a naming terms yes, the closest equivalent of the past is the term &quot;framework&quot;. Having written a Go service framework that&#x27;s how I perceived it and as I started to work on agents, anything related to that became an &quot;agent harness&quot;. I guess naming and terms change with different paradigms.
  • tingletech2 hours ago
    A harness is &quot;the code that gives a model an operational environment&quot; according the the framing in <a href="https:&#x2F;&#x2F;github.com&#x2F;shareAI-lab&#x2F;learn-claude-code" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;shareAI-lab&#x2F;learn-claude-code</a> -- which is a build your own python claude code tutorial shareAI made after the code leak a few months back.
  • JBAnderson51 hour ago
    I have a similar mental model to the climbing harness. I think of LLMs as horses and harnesses as the saddle, reins, etc that you put on your horse. You might configure your harness for an individual rider or you might hook together several horses to pull a carriage.
  • jascha_eng2 hours ago
    The ai hype word for 2026 after agent in 2025 for any LLM powered application.<p>Well kind of, I wouldn&#x27;t be surprised to see that some things marketed as agents are actually good old deterministic software.
    • sph1 hour ago
      It&#x27;s really funny (and a bit obnoxious) to watch the vocabulary from the outside. In 2023 everybody learned the word <i>moat</i>, then it&#x27;s been <i>agent(ic)</i>, from last year there&#x27;s more talking about <i>harnesses</i> than at a bungee jumping convention. The mot du jour is <i>frontier</i>.<p>It truly proves like there&#x27;s a handful of thought leaders on Twitter that everybody follows blindly and start to copy down to the lexicon and parrot everywhere else.
  • thelastgallon2 hours ago
    Is harness load-bearing?
  • cyode27 minutes ago
    Great example of writing about AI that maintains a human voice. Starting off the post with a picture of the author + nod to real-world experience (climbing) is a reasonably strong “this is not slop” signal.
  • dwheeler1 hour ago
    Another AI harness is Goose, which is OSS and housed under the Linux Foundation (LF) Agentic AI Foundation (AAIF):<p><a href="https:&#x2F;&#x2F;github.com&#x2F;aaif-goose&#x2F;goose" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;aaif-goose&#x2F;goose</a><p>Full disclosure: I work at the LF, but not the AAIF.
  • jpitz1 hour ago
    Harnesses are hands.
  • myegorov1 hour ago
    Written using a harness? Too verbose to be read.
  • webdoodle2 hours ago
    I thought this was the next evolution of the smartphone. One so smart that it does all the thinking for you. You don&#x27;t even have to be conscious, you just do whatever it tells you too. Oh wait, that&#x27;s what they do already.
  • driftproofhq2 hours ago
    [flagged]
  • lovelybunch34 minutes ago
    [dead]
  • jchip3031 hour ago
    [dead]