Hacker News

New stories

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

AgentLane: Git-native coordination for coding agents

2 pointsby 47m 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.