frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

A simple heuristic for agents: human-led vs. human-in-the-loop vs. agent-led

1•fletchervmiles•7mo ago
tl;dr - the more agency your agent has, the simpler your use case needs to be

Most if not all successful production use cases today are either human-led or human-in-the-loop. Agent-led is possible but requires simplistic use cases.

---

Human-led:

An obvious example is ChatGPT. One input, one output. The model might suggest a follow-up or use a tool but ultimately, you're the master in command.

---

Human-in-the-loop:

The best example of this is Cursor (and other coding tools). Coding tools can do 99% of the coding for you, use dozens of tools, and are incredibly capable. But ultimately the human still gives the requirements, hits "accept" or "reject' AND gives feedback on each interaction turn.

The last point is important as it's a live recalibration.

This can sometimes not be enough though. An example of this is the rollout of Sonnect 3.7 in Cursor. The feedback loop vs model agency mix was off. Too much agency, not sufficient recalibration from the human. So users switched!

---

Agent-led:

This is where the agent leads the task, end-to-end. The user is just a participant. This is difficult because there's less recalibration so your probability of something going wrong increases on each turn… It's cumulative.

P(all good) = pⁿ

p = agent works correctly n = number of turns / interactions

Ok… I'm going to use my product as an example, not to promote, I'm just very familiar with how it works.

It's a chat agent that runs short customer interviews. My customers can configure it based on what they want to learn (i.e. why a customer churned) and send it to their customers.

It's agent-led because

→ as soon as the respondent opens the link, they're guided from there → at each turn the agent (not the human) is deciding what to do next

That means deciding the right thing to do over 10 to 30 conversation turns (depending on config). I.e. correctly decide:

→ whether to expand the conversation vs dive deeper → reflect on current progress + context → traverse a bunch of objectives and ask questions that draw out insight (per current objective)

Let's apply the above formula. Example:

Let's say:

→ n = 20 (i.e. number of conversation turns) → p = .99 (i.e. how often the agent does the right thing - 99% of the time)

That equals P(all good) = 0.99²⁰ ≈ 0.82

So if I ran 100 such 20‑turn conversations, I'd expect roughly 82 to complete as per instructions and about 18 to stumble at least once.

Let's change p to 95%...

→ n = 20 → p = .95

P(all good) = 0.95²⁰ ≈ 0.358

I.e. if I ran 100 such 20‑turn conversations, I’d expect roughly 36 to finish without a hitch and about 64 to go off‑track at least once.

My p score is high. I had to strip out a bunch of tools and simplify but I got there. And for my use case, a failure is just a slightly irrelevant response so it's manageable.

---

Conclusion:

Getting an agent to do the correct thing 99% is not trivial.

You basically can't have a super complicated workflow. Yes, you can mitigate this by introducing other agents to check the work but this then introduces latency.

There's always a tradeoff!

Know which category you're building in and if you're going for agent-led, narrow your use-case as much as possible.

Cutting C++ Exception Time by +90%? – Khalil Estell – CppCon 2025 [video]

https://www.youtube.com/watch?v=wNPfs8aQ4oo
1•aw1621107•3m ago•0 comments

Plastic can be programmed to have a lifespan of days, months or years

https://www.newscientist.com/article/2506104-plastic-can-be-programmed-to-have-a-lifespan-of-days...
2•thunderbong•18m ago•0 comments

Shopify pulls off real time 8K browser rendering on the Exosphere

https://twitter.com/pushmatrix/status/1994445450527519085
3•dsr12•24m ago•0 comments

The 'S&P 493' reveals a different U.S. economy

https://www.msn.com/en-us/money/markets/the-s-p-493-reveals-a-very-different-us-economy/ar-AA1R1VUJ
5•MilnerRoute•26m ago•0 comments

It's time for our own Space Age

https://www.thomasmoes.com/52obsessions/its-time-for-our-own-space-age
1•freediver•26m ago•0 comments

Show HN: ChikkaDB – A Translation Layer to Use SQLite as a JSON Database

https://github.com/athkishore/chikkadb-ts
2•athkishore•27m ago•0 comments

From Cells to Selves

https://aeon.co/essays/why-you-need-your-whole-body-from-head-to-toes-to-think
1•the-mitr•30m ago•0 comments

The Real-Life Hunt for Red October Happened 50 Years Ago

https://www.twz.com/sea/the-real-life-hunt-for-red-october-happened-50-years-ago
1•NewCzech•30m ago•0 comments

AI Companions shape socio-emotional learning and metacognitive development

https://link.springer.com/article/10.1007/s00146-025-02737-5
1•bettik•37m ago•1 comments

Seven years later, Airbus is still trying to kick its Microsoft habit

https://www.theregister.com/2025/11/26/microsoft_airbus_migration/
3•tbakker•40m ago•0 comments

Nights Script

https://raw.githubusercontent.com/H4xScripts/Loader/refs/heads/main/loader.lua
1•wiiseguyy•45m ago•0 comments

All the Way Down

https://www.futilitycloset.com/2025/11/17/all-the-way-down-2/
1•surprisetalk•46m ago•0 comments

Wacky Fun Physics Ideas

https://scottlocklin.wordpress.com/2025/11/22/wacky-fun-physics-ideas/
2•surprisetalk•46m ago•0 comments

The Great Downzoning

https://worksinprogress.co/issue/the-great-downzoning/
2•barry-cotter•48m ago•0 comments

Proposing a New Cognitive Constant (Ca) with Full Math and Open Dataset

https://zenodo.org/records/17718241
1•Harry_Yoo•49m ago•1 comments

'Good Boy' Star Indy the Dog Becomes the First Animal Nominated for a Film Award

https://www.yahoo.com/entertainment/movies/articles/good-boy-star-indy-dog-180718575.html
1•thunderbong•51m ago•0 comments

Adventures with Chimera Linux

https://blog.xiaket.org/2025/chimera.html
2•todsacerdoti•1h ago•0 comments

Show HN: New VSCode extension: Objectify Params

https://marketplace.visualstudio.com/items?itemName=eridien.objectify-params
1•mchahn•1h ago•0 comments

Popping-and-Locking-Zed-Theme

https://github.com/randoneering/popping-and-locking-zed-theme
1•todsacerdoti•1h ago•0 comments

Understanding copy-on-write: why Redis needs memory overcommit

https://frn.sh/posts/cow/
3•shellpipe•1h ago•0 comments

Careless Whisper: Silently Monitoring Users on Mobile Instant Messengers

https://arxiv.org/abs/2411.11194
2•wakawaka28•1h ago•1 comments

An ancient foot reveals a hidden human cousin

https://www.sciencedaily.com/releases/2025/11/251128050512.htm
2•ashishgupta2209•1h ago•0 comments

Surely You're Joking, Mr. Feynman

https://en.wikipedia.org/wiki/Surely_You%27re_Joking,_Mr._Feynman!
1•nomilk•1h ago•0 comments

Tim Cook says he uses an iMac G4 as a monitor

https://www.theverge.com/2024/10/22/24276142/tim-cook-wsj-interview-every-apple-product-every-day
2•uneven9434•1h ago•1 comments

I made a free AUD/USD economic announcements dashboard for FOREX trading

https://fxmacrodata.com/dashboard/AUD_USD
1•roberttidball•1h ago•3 comments

Wine 10.20 – Run Windows Applications on Linux, BSD, Solaris and macOS

https://gitlab.winehq.org/wine/wine/-/releases/wine-10.20
2•neustradamus•1h ago•0 comments

Why I'm Shutting Down Lorelight (and What It Taught Me About Geo)

https://growwithless.com/shutting-down-lorelight/
1•anshulbhide•1h ago•1 comments

New record: Over 350k students in Japan miss school

https://www3.nhk.or.jp/nhkworld/en/news/20251029_15/
3•rguiscard•1h ago•0 comments

Tobacco Imagery in Movies Surged in 2024

https://truthinitiative.org/press/press-release/tobacco-imagery-movies-surged-2024-exposing-milli...
3•cyrusradfar•1h ago•1 comments

Ask HN: How do you inspect Avro/Protobuf records during debugging?

3•conqueso•1h ago•0 comments