Show stories

Live mirror
30 storiesupdated 0s agoView source snapshot
  1. Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations(github.com/arnegiacomo ↗)
    157comments
  2. Show HN: Capsule – Single-file web apps that save their data into SQLite(withcapsule.app ↗)
    111comments
  3. Show HN: Pizza Bot – An inbox for AI agents that work in the background(github.com/pizza-bot-app ↗)
    2comments
  4. Show HN: Hacking a $20 4G wireless hotspot into a texting device(bkovac.github.io ↗)
    30comments
  5. Show HN: DeadLock OS – A Linux terminal puzzle game(crazygames.com ↗)
    discuss
  6. Show HN: HonestSky, a free iOS weather app without ads or subscriptions(apps.apple.com ↗)
    discuss
  7. Show HN: Panel – A research workspace where the agent can build its own panes(github.com/greentfrapp ↗)
    11comments
  8. Show HN: Check if your IP has appeared in a residential proxy network(haveibeenproxied.com ↗)
    30comments
  9. Show HN: Ordewell – turn one goal into an ordered plan of coding-agent tasks(github.com/ordewell ↗)
    29comments
  10. Show HN: Redis City – Explore how Redis works in an interactive 3D model(poltora.dev ↗)
    25comments
  11. Show HN: Loss. a tiny satire about AI progress(workatloss.com ↗)
    7comments
  12. Show HN: SCIP MIP solver bindings for Go, ported from russcip(github.com/egoisutolabs ↗)
    discuss
  13. Show HN: farseer.space – fly anywhere in the universe in your browser(farseer.space ↗)
    1comments
  14. Show HN: Sass – Rust and WASM(github.com/zoosky ↗)
    discuss
  15. Show HN: DaiDocs, AI memory as a plain-text file format, not a service(github.com/kerneta ↗)
    1comments
  16. Show HN: Macros with a Behringer FCB1010 MIDI Pedalboard in macOS(github.com/jamesryanatx ↗)
    21comments
  17. Show HN: Kinesis – Control your Mac with the Meta Neural Band(github.com/callbacked ↗)
    45comments
  18. Show HN: Warp – Run DeepSeek v4.1 Flash with 5 GB of RAM at 3.77 tok/s(github.com/sqliteai ↗)
    1comments
  19. Show HN: Open-source passive NFC tag that signs with ECDSA, verified on-chain(github.com/mwbpnftechnology ↗)
    discuss
  20. Show HN: Pelican-bicycle alternatives(gally.net ↗)
    45comments
  21. Show HN: Nari Qwen3-TTS and Qwen3-ASR – High accuracy, low latency and cost(narilabs.com ↗)
    31comments
  22. Show HN: AirmailAI, a BYOK LLM chat app with a browser extension backend(airmailai.net ↗)
    6comments
  23. Show HN: Let agent read files with secrets while redacting values for LLM contex(github.com/daniel-sc ↗)
    1comments
  24. Show HN: TrailVid – Cinematic Travel Animations(trailvid.com ↗)
    discuss
  25. Show HN: Omni – Open-source workplace agent, built on Postgres
    discuss
  26. Show HN: TabPFN-3.5, a Tabular Foundation Model for messy real-world tables(priorlabs.ai ↗)
    1comments
  27. Show HN: I ported COLMAP (photogrammetry) to the browser in WASM and WebGPU(offlinetools.io ↗)
    discuss
  28. Show HN: I built a tiny camera that knows where it is(mightycamera.com ↗)
    4comments
  29. Show HN: Extract original images from a PDF in the browser(imissfiles.com ↗)
    discuss
  30. Show HN: An open source safety layer for AI agent actions(github.com/ctrlrun ↗)
    1comments

Show HN: Ordewell – turn one goal into an ordered plan of coding-agent tasks

47 pointsby 9h agogithub.com
24 comments
8h agoHN ↗

i would love a deterministic program that can confidently make plans for lower-cost models like deepseek. ofcourse the LLM part wont be deterministic, but its a lot easier to measure quality like this. you could argue an AGENTS.md is this, but from experience its not enough to make non-frontiers act have a high success rate.

8h agoHN ↗

Fair — AGENTS.md is prose the model has to re-interpret every session, and that reinterpretation is exactly where weaker models lose the thread. Here the plan is parsed and enforced as structured data: tasks with declared dependencies and one prompt each, so the per-step job is smaller and the plan isn't up for renegotiation. Nothing in that needs a frontier model I just haven't benchmarked it against deepseek-class runners, and the runner is pluggable if you want to be the one who does.

7h agoHN ↗

What sort of determinism do you have in mind?

7h agoHN ↗

There are a lot of ways to slice the problem of getting the agents to complete a goal without getting lost, and the right solutions are somewhat problem-specific. For the projects I've done 35B Qwen is about the smallest that seems to make useful progress in a general purpose harness while 4B Qwen is workable with a task-specific harness. At the lower end the plan has to be traditional search/planner techniques in code not something the model has any control over, of course that limits the kinds of problems that fit. The high end coding models are perfectly capable of making a functional 1-off harness for those jobs so it ends up not being that bad to implement.

7h agoHN ↗

Yeah it's exactly what I've seen as well. Ordewell is close to your high end case: a frontier model builds the plan once, then it's fixed, the executing model can't reinterpret it. Won't get you to 4B, but should help a small model that only has to execute, not plan and execute at once.

6h agoHN ↗

Have you quantified the performance on any particular benchmark?

6h agoHN ↗

I thought about it but where the tool shines are large undefined tasks, which are complex to quantify and test (not as easy as implementing a simple bug fix that you can test directly). Even if I were to find such test dataset it would probably require a lot of money to reach statistically significant results. Either way, the framework is inspired a lot from Matt Pocock, and is pretty much established.

6h agoHN ↗

I’ve had success with writing eg shell scripts that have a deterministic scaffold for the thing I’m actually trying to do, then call off to the agent for only the things that actually need it. For example I was trying to find a race condition flaky bug in my code, so the shell for loop ran the build N times, and called out to the agent to analyze the build logs if the tests failed, then the shell would ping me on slack when it was done, so the whole thing could run in the background.

I’ve been thinking more about how this deterministic + agents style could work, it’s kinda like the analogy of factories in the 1800s going from the central shaft to electric motors on each desk (where the central shaft in this case is a chat window, and the motor on a desk is calling the llm api from wherever you want just like a normal api call)

Of course, maybe in a few months the agents would just be reliable enough to do the shell part on their own too, but we’ll just have to wait and see

6h agoHN ↗

I like your analogy. The main problem though is context and keeping it clean as much as possible as long a parallelization. This is what drove to build this tool: having control of everything that the LLMs will do, controlling all with one main planner that orchestrates the rest. This way we can have cheaper LLMs with a short context window used (less intelligence degradation) while still obtaining the same objective. And again, you can have a clear picture of everything structured as tasks. until we can get to rely on huge swarms of agents (tasks) being directed on the planner alone I don't see how we can get a better framework.

6h agoHN ↗

I've been working on a pi extension to do this, after frustration with getting the best current local models to stay on track, and just to deal with their relative slowness; gist is that it uses pi hooks to keep the model deterministically on track and beads-rust issue tracking tool to keep everything organized.

A SOTA model writes the initial prompt, and creates the beads issues; then a continuous iteration of plan(local) -> review (sota) -> implement(local) -> review (sota). Until the sota reviewer model is happy with the implementation.

And can mostly just let-it-run; e.g. overnight since local models with mac unified memory are slow.

Still early days, but have had reasonably good success with a Defender (1981) clone and now I'm having it work on a Prince of Persia clone (both Go/ebiten).

Note: I think this is only possible now because Qwen3.8-Flash-Next and 27b are incredibly good models.

- https://github.com/Dicklesworthstone/beads_rust

5h agoHN ↗

very interesting, the concept is the same. I see they flagged Opus as the suggested planner, which makes a lot of sense. Thanks

5h agoHN ↗

I just can’t get excited about any of these meta-frameworks.

Doesn’t everyone get by now that any advance just gets rolled in to Claude and Codex a few months later, then the downstream competitors a few months after that?

4h agoHN ↗

indeed, but I also value the freedom of using whichever provider I want and not get locked into Claude Code alone for instance. I want to use both Opus, DeepSeek and GPT 6 at the same time, not just the 2/3 models Anthropic offers. What I am trying to build is something that gives you absolute control, agnostic of the subscription/API you will use.

4h agoHN ↗

Btw you can configure Claude code to use any provider or model you want

7h agoHN ↗

I opened the page looking for a differenciator, but everything about the project is AI-written (including author replies in these comments).

7h agoHN ↗

so why did it get upvotes and a place on coveted frontpage?

7h agoHN ↗

Fair, and I won't pretend otherwise. I heavily used AI to help write the docs and code. The thing is though... I designed it and I stand behind it.

5h agoHN ↗

FWIW, replying to people with AI generated replies is (at least to me) extremely disrespectful. Please don't do it without consent from the other party. If you expect someone (who isn't a bot) to make the effort to read what you wrote then please make the effort to write it yourself.

7h agoHN ↗

To me that's not the embarrassing part... unmaintainable would be. Using AI for coding and writing doc is standard practice now, not using it would be insane.