Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Aikido Altar: open-weight security model(aikido.dev ↗)
    1comments
  2. A study of sequence weighting at scale(janestreet.com ↗)
    discuss
  3. The Biopolitics of Intelligence(muskdeer.blogspot.com ↗)
    discuss
  4. Stop using your most expensive model for every decision(twitter.com/usebuddy ↗)
    discuss
  5. Show HN: PokerTools Arena – Local AI vs. AI Poker LLM Benchmark Table(github.com/pokertools-arena ↗)
    discuss
  6. One Canvas Many Hands(onecanvasmanyhands.com ↗)
    discuss
  7. Drone WMDs Don't Need Any New Technology(lesswrong.com ↗)
    discuss
  8. Scientists heard a knock at the door. It was a pelican in need of help.(washingtonpost.com ↗)
    discuss
  9. Using Jev to substitute inverse kinematics(twitter.com/caloriepaper ↗)
    discuss
  10. What turned out to be hard about the VulpieAI overlay(medium.com/vulpie.ai.support ↗)
    discuss
  11. Trust Fall: a small browser game about spending trust(ilands.ai ↗)
    discuss
  12. Meta's Muse Is Better at Surveilling Than Helping Me(wired.com ↗)
    discuss
  13. Networks Suspend Pool Coverage of Trump After White House Bans CNN(nytimes.com ↗)
    1comments
  14. Tokenizers v1(hf.space ↗)
    discuss
  15. This is why we play(xeiaso.net ↗)
    discuss
  16. When Galileo Calculated the Precise Dimensions of Hell in Dante's Inferno(openculture.com ↗)
    discuss
  17. Streamhouse: A shared data architecture for the age of AI(streamhouse.com ↗)
    discuss
  18. Squalk: A forum and chat built on Nostr(github.com/dtonon ↗)
    discuss
  19. Glux – Get your diabetes risk and a 90-day habit plan just for you(play.google.com ↗)
    1comments
  20. WWII Tank, Aircraft, and Ship Identification Guides(beautifulpublicdata.com ↗)
    discuss
  21. Make Math Automatic with Mathy(gmays.com ↗)
    discuss
  22. Skills for AI agents to remove or prevent slop in UI design and written content(github.com/kmaida ↗)
    discuss
  23. Completing Programming Adventures with Jev(tomasp.net ↗)
    discuss
  24. Rust has been the #1 language on Hacker News since 2019(orangecrumbs.com ↗)
    discuss
  25. Are we going to use the same Desktop UX forever [video](youtube.com ↗)
    discuss
  26. Show HN: Jev Chess – one shared board, the internet vs. a decision model(jevchess.com ↗)
    discuss
  27. Bessent Targets OpenAI Managers for Hugging Face Incident(bloomberg.com ↗)
    2comments
  28. Robotics Is Harder(whattotelltherobot.com ↗)
    discuss
  29. Show HN: Sunday Drive(sundaydrive.dev ↗)
    discuss
  30. A quick overview of atomics in C(lemire.me ↗)
    discuss

Show HN: Self Improving AgentOrchestrator Skill

3 pointsby 41m agogithub.com
3 comments
How do you Orchestrate your Agentic Development? I moved away from claude gaol based workflows and built something more custom, using ideas from AWS Kiro, SpecFlow and SpecStory. Been using it daily now. Wanted to be vendor agnostic and orchestrate between coding harness. Appreciate any feedback and your thoughts around this.
24m agoHN ↗

This is great to see. I've now fully embraced long-running agentic workflows with separate plan->generate->evaluate steps, all coordinated by an orchestrator. I've done this using Claude Code alone, which is very easy but costly using Fable alone. I've done this in a team-visible way using Linear and Cyrus https://specstory.com/tutorials/team-based-loop-engineering.

And lately, for cost savings I've been doing this via Claude Code orchestrated workflows that fan out to lower cost Pi.dev Kimi agents https://github.com/jakelevirne/pi-relay.

I think there's a lot to be said for having orchestrated goal-oriented workflows (loops/harnesses) that have their choice of agents. So it's nice to see that principle in play here. And strong goal/outcome definition is critical for success with these long running workflows, so helpful to see SpecFlow methodology baked in to the skill.

I think the biggest thing I've seen over and over as teams try to adopt this type of approach is weak testing/verification. Using agentic development it's very easy to have automated unit and integration testing. But what this approach really demands is acceptance testing and intent verification. Most people I know still do this part by hand, which means the loops can't be as long-running as they ideally would be. Have you thought about a deeper (more deterministic) verification approach, in addition to adversarial review from another agent?

(Note: I'm a SpecStory maintainer but didn't have anything to do with this Claramap Builder project)