Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Will AI Replace Your Doctor? Dr. Zeke Emanuel and AMA President Dr. John Whyte(youtube.com ↗)
    1comments
  2. A Large Database Does Not Mean Large Shared_buffers(keithf4.com ↗)
    discuss
  3. Size-Specialized Memory Allocation(go.dev ↗)
    discuss
  4. What's Scarier Than Agents Taking over Internet? CEO Cartel Trying Take over AI(fractalsofchange.substack.com ↗)
    discuss
  5. AI Cheating Is on the Rise(vals.ai ↗)
    discuss
  6. Unplug America(engageq.notion.site ↗)
    discuss
  7. Suzanne Ciani's Buchla Cookbook(echo.orpheusinstituut.be ↗)
    discuss
  8. OpenAI discloses six new AI safety incidents(axios.com ↗)
    discuss
  9. The Return of Sail Power: Cargo Ships Are Turning Back to the Wind(gcaptain.com ↗)
    discuss
  10. How the Strategic Petroleum Reserve Works(construction-physics.com ↗)
    discuss
  11. What Would Canada's Associate Membership of the EU Look Like?(wsj.com ↗)
    discuss
  12. Cert/CC covers up Google's data retention fraud(medium.com/istokovicsgyorgy79 ↗)
    discuss
  13. A dead man's switch with client-side crypto and an offline decryptor(etergis.com ↗)
    discuss
  14. Show HN: Hacker News, a little more focused(beehivesoftware.xyz ↗)
    discuss
  15. Recursive Meta-Intelligence(twitter.com/profbuehlermit ↗)
    discuss
  16. Unlocking the Brain's Potential, with Gül Dölen [video](youtube.com ↗)
    discuss
  17. Where Yesterday's Decisions Run Today(medium.com/gurvinder372 ↗)
    discuss
  18. AgentLane: Git-native coordination for coding agents(github.com/thetrueshags ↗)
    1comments
  19. Ask HN: How long before we will have a major AI driven cyberincident?
    discuss
  20. Bringing Correctly Rounded Math to Production with LLVM-Libc(devblogs.microsoft.com/cppblog ↗)
    discuss
  21. When the fractional part of a float fixes your shader(crocidb.com ↗)
    discuss
  22. Otis – a minimal AI agent that runs local models out of the box(triangllabs.ai ↗)
    1comments
  23. Researchers have created a mouse with a partly human brain(economist.com ↗)
    discuss
  24. Duotone icon library with 1k icons and 250 flags for React with RTL support(github.com/andrsrxn ↗)
    discuss
  25. Show HN: Nullsec – server-blind encrypted paste(pntr.dev ↗)
    discuss
  26. Future of computing is here – OmaVision on Omarchy [video](youtube.com ↗)
    1comments
  27. Paramount 'Leaks' Study Saying California Will Suffer If Its Merger Is Blocked(techdirt.com ↗)
    1comments
  28. Mockfreeli – paste a YouTube link, get 5 license-free songs that sound like it(mockfreeli.org ↗)
    discuss
  29. The US Gov Graph – a complete map of the federal government(civlab.org ↗)
    3comments
  30. What If You Could Do It All Over?(newyorker.com ↗)
    1comments

AgentLane: Git-native coordination for coding agents

2 pointsby 46m agogithub.com
1 comments
34m agoHN ↗

the scale of the projects at my local hackathons have been increasing a lot since most people started using agents to generate code but i also found that collab was made a bit difficult because things can progress so fast and drift or agents don't work together well and overwrite each other's code or work with a different context. i put together a simple orchestrator that just uses git to manage the execution but after a bit more use i realised that it's more useful to me past hackathons and tried it out running multiple agents on my own project and it handled it unexpectedly nicely.

i already have my own workflow setup and the initial idea was to get random people who likely all have different workflows all aligned so intentionally wanted to leave out things like the harness. the coordination lives in an orphan branch and workers claim paths then execute on their work independently.