Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Googlebook: The laptop your Android phone has been waiting for(blog.google ↗)
    discuss
  2. Australia considers banning the use of smart glasses in government buildings(reuters.com ↗)
    discuss
  3. You're Already a Meat Proxy(twitter.com/obie ↗)
    discuss
  4. Et Tu, MacBook? Unprivileged Keystroke Inference via Built-In IMU Side Channel(arxiv.org ↗)
    discuss
  5. DeepSeek is training a 2T-parameter model and plans to build an 8T-parameter one(twitter.com/wallstengine ↗)
    discuss
  6. OpenAI Weighs Funding Round at over $1.2T Valuation(bloomberg.com ↗)
    discuss
  7. HP Googlebook 14c(hp.com ↗)
    discuss
  8. Beyond Ukraine: Why Europe is preparing for a wider conflict(cnn.com ↗)
    discuss
  9. LM Studio is a free desktop app to run local LLMs on your own computer(lm-studio.net ↗)
    1comments
  10. Leaving US Big Tech in a Week(yves.vg ↗)
    discuss
  11. A never-ending childhood of malaria(ourworldindata.org ↗)
    discuss
  12. Show HN: Jev-CLI – CLI wrapper for JEV typesafe AI model(github.com/joshlong145 ↗)
    discuss
  13. Amazon blocks Meta's Muse AI assistant in new standoff over agentic shopping(geekwire.com ↗)
    discuss
  14. DBison: Free Modern Database Explorer(dbison.app ↗)
    discuss
  15. Kimi Code Desktop(kimi.com ↗)
    discuss
  16. Longitudinal survey finds little evidence that social tech predicts satisfaction(phys.org ↗)
    discuss
  17. Show HN: I built Founder.best Product Hunt alternative for LLM product discovery(founder.best ↗)
    1comments
  18. Raspberry Pi blocks changing RAM chips(raspberrypi.com ↗)
    3comments
  19. Your cloud survived everything except the real world – AWS(theregister.com ↗)
    discuss
  20. A Doomsday Scenario for American AI(thefp.com ↗)
    discuss
  21. SpaceX Restricts Airspace over McGregor Facility Ahead of Tesla Roadster Event(driveteslacanada.ca ↗)
    discuss
  22. Stanford, Silicon Valley, and the pursuit of power [video](youtube.com ↗)
    discuss
  23. A build graph that rolls dice(fzakaria.com ↗)
    discuss
  24. JevBench: Benchmark for Jev-Class Models(benchmarkheaven.com ↗)
    discuss
  25. A functional test cannot be failed on biological grounds(leoferres.blog ↗)
    discuss
  26. Ask HN: Is it impossible to disable Siri on macOS 27?
    discuss
  27. Show HN: JevGeni, the fruit-fly claw machine overator(jevgeni.vercel.app ↗)
    discuss
  28. Planly(github.com/drkokorev ↗)
    2comments
  29. There is no way to get ChatGPT to stop injecting your location in context(chatgpt.com ↗)
    2comments
  30. OpenAI Codex Is Retiring the Last Model That Behaves Like an Assistant(vincentschmalbach.com ↗)
    1comments

Show HN: Local-coder – Build a team of coding agents with local models

2 pointsby 1h agogithub.com
1 comments
1h agoHN ↗

I thought I’d share this side quest I’ve been working on as it’s been a bit of fun.

It started when taking the train to work and regularly hitting internet dead zones, so I initially downloaded Ollama and OpenCode to see if I could keep building while offline.

The first iteration was an installer that worked out what models I could reasonably run locally (as I wasn’t really sure what my machine would be able to do).

After that, I kept running into cases where an agent would say it had completed a task with a detailed description of the changes it had made but the file hadn’t actually changed.

The project then expanded into an Orchestrator inside OpenCode. It decides how complex a task is and delegates parts of it to subagents, potentially using different local models. Depending on the task, agents can then explore, plan or research something before passing to a coding agent.

The coding agent updates then gets passed to a verifier and complex changes can also go through a separate reviewer.

So, for simple task:

Coder -> Verifier

or for something more complex:

Explorer -> Planner -> Coder -> Verifier -> Reviewer

There’s also a Researcher when more knowledge is needed.

It’s still an experiment as I’m not sure yet how far this approach can push smaller local models.