Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. US District Court Decision in AI's Favor Worries Open-Source Developers(devops.com ↗)
    discuss
  2. Show HN: Judge HN Threads with Jev(hnjudge.vercel.app ↗)
    discuss
  3. How Blacksmith runs more than 10M CI jobs a day(blacksmith.sh ↗)
    discuss
  4. Explaining the Postgres Meme(avestura.dev ↗)
    discuss
  5. Small AI models let drones autonomously identify and attack battlefield targets(arstechnica.com ↗)
    discuss
  6. Googlebook OS hands-on: It's Android, stupid(9to5google.com ↗)
    discuss
  7. Using Jev as an LLM Linter for OMP (Pi) Agent(github.com/goulinkh ↗)
    discuss
  8. The current balance of power in open models(interconnects.ai ↗)
    discuss
  9. Goodnotes releases new AI notetaker(goodmeet.com ↗)
    discuss
  10. Grok 4.7(x.ai ↗)
    discuss
  11. Automatically Retrofitting JIT Compilers(infoq.com ↗)
    discuss
  12. Show HN: Replay an AI Coding Session and Inspect Its Requests(ishamf.dev ↗)
    discuss
  13. A restored PDP-11/83 serving this page on 211BSD Unix(pdp1173.com ↗)
    1comments
  14. Ask HN: What is the most interesting project you are working on?
    1comments
  15. Show HN: All of FreeCAD 1.1.3, every workbench and FEM, running in the browser(virtastic.app ↗)
    discuss
  16. 46% of Open-Source AI Agents dropped from rankings in 28 weeks(theagenticleaderboard.com ↗)
    1comments
  17. Goolsbee: The Fed Can't Keep Waiting Out Oil Shocks(wsj.com ↗)
    1comments
  18. Design Drought(lmnt.me ↗)
    discuss
  19. Show HN: Timewaster – They waste your time. Return the favor(timewasterapp.com ↗)
    discuss
  20. IvoryOS – Orchestrate an Autonomous Lab(ivoryos.ai ↗)
    discuss
  21. Show HN: 7 Coder Words – A puzzle game for computer science nerds(kenamick.itch.io ↗)
    discuss
  22. I shipped 2,000 pull requests through production last month [video](twitter.com/poteto ↗)
    discuss
  23. You Can Detect If Code Is Being Run Inside a Terminal(nelson.cloud ↗)
    discuss
  24. We Have So Many Questions(lab.cloud ↗)
    discuss
  25. Pinned-Value Goods(arun.is ↗)
    discuss
  26. Using TypeSafe AI in Bug Bounty(lampysecurity.com ↗)
    discuss
  27. Tobi: Persistent terminal sessions across your devices(tangled.org ↗)
    discuss
  28. Trump Says His Contested Arch Would House Drones and Snipers(nytimes.com ↗)
    1comments
  29. Bootstrap scripts for ML workloads on a few GPU cloud providers(github.com/tudormunteanu ↗)
    discuss
  30. Vibe – Local Audio and Video Transcription App(thewh1teagle.github.io ↗)
    discuss

Show HN: Self Improving AgentOrchestrator Skill

3 pointsby 1h 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.
1h 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)