frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Bento - An entire PowerPoint in one HTML file (edit+view+data+collab)

https://bento.page/slides/
520•starfallg•5h ago•111 comments

Show HN: DeepSQL – A self-hostable DBA agent for Postgres and MySQL

https://deepsql.ai/
36•venkat971•2d ago•19 comments

Show HN: Web swing through midtown NYC

https://www.swingnyc.com/
53•shahahmed•4h ago•23 comments

Show HN: HN Hall of Fame – browse 3,100 legendary Hacker News links

https://www.orangecrumbs.com/hall/
160•oyster143•5h ago•36 comments

Show HN: The Daily FM – Turn any source into a daily podcast

https://thedaily.fm/
2•carimura•6m ago•1 comments

Show HN: Millwright – Rust-based, self-hosted LLM router

https://github.com/Northwood-Systems/millwright
4•AndrewLiu96•1h ago•2 comments

Show HN: ReadKinetic – a free, local-first speed reader for your own books

https://www.readkinetic.com/app/
95•SamuraiLion•15h ago•60 comments

Show HN: Agent in 9 Lines Python

https://gist.github.com/tosh/6e91a9dbf08dd630c535e7345ac7f0b5
16•tosh•7h ago•6 comments

Show HN: Szr: A safer command output reduction for coding agents

https://github.com/devr-tools/szr
2•alxxjohn•2h ago•1 comments

Show HN: A new kind of FPS aim trainer

https://openaim.pramit.gg/
79•pmazumder•15h ago•42 comments

Show HN: Stele – A self-maintaining knowledge graph for AI coding agents

https://stele-ai.dev/
3•serkanyersen•3h ago•2 comments

Show HN: PDF tools that run in the browser, no upload

https://pdfcdf.com
5•sofiurrr•5h ago•1 comments

Show HN: Infinite Programmer ASMR

https://hackerman.specr.net/
2•vunderba•3h ago•0 comments

Show HN: A self-running space economy SIM in Rust and Bevy

https://github.com/Kalcode/spaceprojectsim
106•kalcode•1d ago•30 comments

Show HN: Onus – self-hostable vuln scanner combining 8 tools into one report

https://github.com/maverickaayush/ONUS
2•maverickaayush•4h ago•0 comments

Show HN: Computable – Buy, sell, and redeem GPU for the exact weeks you want

https://www.getcomputable.com/
45•yuansong98•23h ago•25 comments

Show HN: blackbar-nano – local PII detection and redaction on CPU

https://github.com/safetype/blackbar-nano
2•My24HR•4h ago•0 comments

Show HN: CodeAlmanac – Karpathy-style codebase wiki from your conversations

https://github.com/AlmanacCode/codealmanac/
58•divitsheth•1d ago•20 comments

Show HN: Brew doctor` for Skills and MCP loadouts

https://github.com/dbreunig/drskill
2•dbreunig•5h ago•0 comments

Show HN: AI resume spam ruined hiring so I built a tool to keep the bots out

https://permanym.com
2•romanhn•5h ago•1 comments

Show HN: Justif – Knuth-Plass justification and microtypography for the web

https://justif.lyall.co/
188•lyall•5d ago•38 comments

Show HN: EcoTrace – Lightweight carbon footprint and energy tracker for Python

https://github.com/Zwony/ecotrace
2•Zwony•5h ago•0 comments

Show HN: MutexCam – Global Camera and Mic Control on Mac for Zoom, Teams, Meet

https://mutex.cam/
2•superquizonline•5h ago•0 comments

Show HN: The Email Game – AI agents compete over cryptographically signed emails

https://theemailgame.com/
2•RyanJensen•5h ago•1 comments

Show HN: I built 20,795 grad-advisor profiles from OpenAlex public data

https://labcompass.app
3•boazraz•5h ago•0 comments

Show HN: Veracium – agent memory keeping third-party claims from becoming facts

https://github.com/veracium-ai/Veracium
3•qspencer•5h ago•1 comments

Show HN: Yorishiro – a macOS terminal where AI agents live

https://github.com/sktkkoo/Yorishiro
2•hakumei•5h ago•0 comments

Show HN: Made a App to Turn Any Podcast into a Website

https://audioenhancer.com/
3•wbemaker•5h ago•1 comments

Show HN: BBRv3 for gVisor's netstack, visualized in the browser using WASM

https://ccsim.apoxy.dev
3•dilyevsky•5h ago•0 comments

Show HN: Anakin – API for your AI agents to access the most difficult websites

https://anakin.io
4•mohitprateek•5h ago•0 comments
Open in hackernews

Show HN: Millwright – Rust-based, self-hosted LLM router

https://github.com/Northwood-Systems/millwright
4•AndrewLiu96•1h ago
Hey HN,

With the news of OpenRouter possibly being acquired and proliferation of hosted LLM routers (i.e. Ramp Router, Vercel’s AI Gateway), I saw the need for a self hosted solution focused on cost savings, transparency, and performance. So, I built an open sourced router with a simple CLI interface that can easily sit between coding agents and GenAI workloads.

For the curious and lazy, at the moment, Millwright has the tools for,

- Providers: OpenAI-compatible APIs, Anthropic, Amazon Bedrock

- Routing: policy-controlled model roles (cheap, mid, frontier), cheapest healthy route selection

- Protocols: OpenAI Chat Completions, Anthropic Messages, text and tool translation

- Cache Affinity: role-scoped session lanes without serializing concurrent agent traffic

- Spend Tracking: per-team costs, cache usage, model/provider mix, request traces

- Cost Analysis: measured usage and modeled candidate economics (HTML, Markdown, JSON)

- Reliability: bounded failover, circuit breakers, timeouts, concurrency limits

- Setup: interactive provider, model, and pricing configuration without storing provider secrets

- Deployment: one Rust binary, Docker, SQLite or PostgreSQL

Full disclosure: parts of the codebase were built with AI coding agents. All feedback is welcome, I’d especially value feedback on the routing policy, provider coverage, and anything that would block you from self-hosting it. Feel free to open feature/request and/or contribute as well.

Comments

eckelj•1h ago
thank you! i find this very interesting, especially the Cache-aware concurrency .
AndrewLiu96•1h ago
No worries! Thank you for checking it out. The cache-aware concurrency was a ton of fun to implement