frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations

https://github.com/arnegiacomo/fugleramme
314•arnemunthekaas•2h ago•67 comments

Show HN: Hacking a $20 4G wireless hotspot into a texting device

https://bkovac.github.io/modem-thing/
44•bobili1234•1h ago•3 comments

Show HN: Capsule – Single-file web apps that save their data into SQLite

https://withcapsule.app/
53•bashtian•1h ago•18 comments

Show HN: Panel – A research workspace where the agent can build its own panes

https://github.com/greentfrapp/panel
11•greentfrapp•57m ago•2 comments

Show HN: Jexxa: High Speed on Device Dictation

https://jexxa.org
6•sankde•50m ago•10 comments

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

https://github.com/ordewell/ordewell
10•ac-ciano•1h ago•4 comments

Show HN: Check if your IP has appeared in a residential proxy network

https://haveibeenproxied.com/
5•microcode•31m ago•3 comments

Show HN: Loss. a tiny satire about AI progress

https://workatloss.com/
6•pbobak•39m ago•0 comments

Show HN: Redis City – Explore how Redis works in an interactive 3D model

https://poltora.dev/redis
142•poltora•2d ago•22 comments

Show HN: Lume – an open-source terminal you can drive from your phone

https://uselume.dev/
2•hugomyb•1h ago•0 comments

Show HN: Bulkgrid – Search websites and GitHub repositories from your AI agent

https://bulkgrid.com
2•ceglh•1h ago•0 comments

Show HN: A live Git diff view cli to stay on top of what agents are doing

https://github.com/stagas/livediff
4•stagas•1h ago•1 comments

Show HN: Infinite Shaders

https://shaderfrog.com/infinite
2•andrewray•1h ago•0 comments

Show HN: Prokop – Open-source AI coding workspace with cross-project memory

https://github.com/capek-dev/prokop
3•danielbilekq•1h ago•3 comments

Show HN: Macros with a Behringer FCB1010 MIDI Pedalboard in macOS

https://github.com/JamesRyanATX/fcbnerd
82•fretlessjazz•15h ago•20 comments

Show HN: ScaleUp City Simulator

https://city.scaleupcto.com/
4•robotrobot•2h ago•5 comments

Show HN: Nari Qwen3-TTS and Qwen3-ASR – High accuracy, low latency and cost

https://narilabs.com/blog/nari-labs-leads-coval-voice-ai-benchmarks/
88•toebee•22h ago•29 comments

Show HN: Pelican-bicycle alternatives

https://gally.net/temp/20260914pelican-alternatives/index.html
126•tkgally•1d ago•45 comments

Show HN: Neobrutalism.dev – Just added Base UI support and added new color theme

https://www.neobrutalism.dev/
157•samke-•22h ago•74 comments

Show HN: A Zoomable Equal-Area Map Projection that interpolates to Mercator

https://www.benjoffe.com/map
2•benjoffe•4h ago•0 comments

Show HN: Kinesis – Control your Mac with the Meta Neural Band

https://github.com/callbacked/kinesis
117•callbacked•1d ago•43 comments

Show HN: Jinfer – AI inference engine for the JVM. AI in a jar

https://qxotic.ai/
3•mukel•8h ago•0 comments

Show HN: Pushie – Get notified with a simple webhook

https://pushie.net
21•vasanthv•1d ago•13 comments

Show HN: Fly.exe – An EON systems like virtual fruit fly uploaded to computer

https://github.com/Ibtisam-Mohammad/Fly.exe
23•Ibti_sam•22h ago•4 comments

Show HN: Analyzed 400 routes and driving a Tesla beats flying 65% of the time

https://flyortesla.com/insights
3•drewlem•10h ago•4 comments

Show HN: I built Otis, a minimal AI agent that runs local models out of the box

https://triangllabs.ai/otis
19•petrenk0n•1d ago•4 comments

Show HN: What Just Pinged Me?

https://whatjustpingedme.com
24•furyofantares•1d ago•0 comments

Show HN: 1080p is 920px tall – 1k real browser viewports

https://screensize.net/reports/viewport-stats
41•zenpe•1d ago•20 comments

Show HN: Bodily Oddities

https://vester.si/bodily-oddities/
340•vesterde•4d ago•214 comments

Show HN: Hazzel – a tiny coding agent, Bring your own keys

https://github.com/mukundzha/hazzel
6•mukundzha6•14h ago•0 comments
Open in hackernews

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

https://github.com/ordewell/ordewell
10•ac-ciano•1h ago

Comments

ramon156•31m ago
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.
ac-ciano•20m ago
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.
formvoltron•3m ago
What sort of determinism do you have in mind?
ac-ciano•28m ago
Ordewell author here.

What I kept hitting wasn't coding agents writing bad code. It was one agent trying to hold a whole change in its head. I'd give it a multi-step goal, it would start work, and its misreading of the first step only surfaced once the fourth one was on disk. The plan itself was never anywhere I could read it, so there was nothing to correct — only something to undo.

So I built Ordewell: the plan is a typed artifact here, not agent state. You describe a goal, a planner explores your repo read-only and comes back with an ordered list of tasks, each carrying its own runner, model, thinking effort and mode. You rewrite prompts, add or delete tasks, rewire dependencies, or swap the model on one task — before anything runs. Then each task runs as one real agent session, and the board holds the rest: done, running, blocked, left. Manual steps sit in the same list as checkboxes.

Four things that may be worth your time even if the tool isn't:

- One task, one session, one small context. The planner's sizing rule is explicit: each slice must fit one fresh session's context window, or it gets split. A task then starts clean and is handed only what it needs — its own prompt, a window of the plan marked "you are here", and a short tail of its direct dependencies' output. Nothing else from the run, and nothing from another task's transcript. A long session doesn't announce that it has lost the thread — it just keeps going, which is the part that costs you. Writing the plan down is what buys the alternative: no session has to carry it.

- The planner isn't asked not to write — it's prevented. Every research command is lexed the way a shell lexes it (quotes, backslashes, command substitution) and classified per segment into run / ask-once / refuse. The refuse tier returns before the approval seam is reached, so there is no prompt that unlocks it and no system-prompt wording that talks it into one. Anything reaching outside the workspace asks once. The read-only-planner / writing-runner split is the whole architecture.

- Completion is decided by evidence; the judgement calls are decided by you. Each task gets a unique marker, and it's done when that marker appears in the runner's output, with the exit code retained beside it as separate evidence. The model is never asked whether it thinks it succeeded — a clean exit without the marker fails loudly. The planner also classifies each task up front as autonomous or human-in-the-loop, and a human-in-the-loop task stops before the step you can't take back: it prints what it's about to do and why, and waits for approve or reject.

- There's no extra API key. Claude Code, Codex and OpenCode can each be the planner as well as the runner, on the subscription you already pay for. Enable more than one and the planner assigns a different one per task — the argument being that a security refactor and a README update do not deserve the same model. Other agents are a plugin manifest, not a code change.

What it is not: the planner is still an LLM and writes bad plans sometimes — the whole bet is that a bad plan is cheap when you can see and edit it, and expensive when it's hidden. The command classifier is a classifier, not a sandbox; container it if you want a hard boundary. The marker proves the agent finished and claimed the work, not that the code is correct — that's what your tests are for. TUI needs tmux; VS Code and the HTTP daemon don't. Node >= 20.

    npm install -g ordewell && ordewell
    code --install-extension ordewell.ordewell
The second line is the VS Code panel; it carries its own core, nothing to install from npm.

Apache-2.0, no paid tier, nothing to sign up for. Docs and a demo at https://ordewell.ai

What I'd most like to hear: whether the per-task model assignment is real value or a knob nobody wants, and where the read-only planner boundary is too strict to be useful.