frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Restoredrill – proves your Postgres backups restore

https://github.com/ahmadpiran/restoredrill
26•ahmadpiran•2h ago•8 comments

Show HN: RealDiff – runtime behavior diffing for pull requests (six languages)

https://github.com/issacnitin/RealDiff
32•issacnitin•3h ago•4 comments

Show HN: The load-bearing vocabulary of Claude

https://louisabraham.github.io/load-bearing/
126•Labo333•8h ago•56 comments

Show HN: AiTells, a Vale style package for AI-written prose tells

https://github.com/krishnasunkam/vale-ai-tells
2•krishnas2020•29m ago•0 comments

Show HN: My Claude quota ran out in 10 minutes, so I made a tool to find out why

https://github.com/kelviq/tare
2•sachinneravath•36m ago•0 comments

Show HN: ASOGrade – App Store keyword research using Apple Search Ads demand

https://asograde.com
3•ashwinn11•58m ago•0 comments

Show HN: IdeaKache – Ideas Worth Holding Onto

https://ideakache.com
4•jcowcher•1h ago•1 comments

Show HN: Proval – Self-hosted code review agent for GitLab, Forgejo, and GitHub

https://github.com/seoes/proval
3•dowonseo•2h ago•1 comments

Show HN: Meridian(PH#1) A better way to recognize developer contributions

https://github.com/Meridiona/meridian
5•meridiona•1h ago•0 comments

Show HN: PwnPad – hardware hacking platform built for practical learning

https://github.com/twelvesec/PwnPad
2•therepanic•1h ago•0 comments

Show HN: I built a site to share and find Claude Code passes

https://claudecoupons.com
2•alexander-g•1h ago•0 comments

Show HN: Warp – Run the 313B GLM-5.3-Flash on a MacBook with 8GB RAM

2•marcobambini•1h ago•0 comments

Show HN: KinoPipe – FFmpeg as a service for AI agents (typed ops, no shell)

https://kinopipe.com/
3•nicniclapanique•1h ago•0 comments

Show HN: Atlas – observability for startup operations via self-building agents

https://www.atlasjoins.ai/
2•csbhagav•1h ago•0 comments

Show HN: Feisty Duck's Cryptography and Security News Aggregator

https://www.feistyduck.com/news/
2•ivanr•1h ago•0 comments

Show HN: Backprompter – create, test, and deploy agents without a back end

https://backprompter.com/
3•aj-srivastava•1h ago•0 comments

Show HN: A virtual race car that drives only while someone pays for fuel

https://fuelup.lol/
3•bombashell•1h ago•2 comments

Show HN: Kitewing marketing site, inspired by Braun industrial design ca. 1968

https://www.kitewing.ai/
2•hglaser•1h ago•0 comments

Show HN: Relay Tetris

https://minivac.greg.technology/tetris/
2•gregsadetsky•1h ago•0 comments

Show HN: ThunderPhone v2 – a new architecture for voice AI

https://thunderphone.com
4•kolchinski•1h ago•0 comments

Show HN: Git for Designers

https://opacity.com/
2•x7ikmet•2h ago•0 comments

Show HN: Revenue Agents that monitor churn, upsell, and deal risk

https://www.rimplo.com/
2•Hoss-Elkhateeb•2h ago•0 comments

Show HN: TermDrop – Stream a local file to a remote server with one curl command

https://termdrop.sh/
2•npartin•2h ago•0 comments

Show HN: Kupendo – Dating and networking app for the African diaspora

https://www.kupendo.co/
2•GodsentIzzy98•2h ago•2 comments

Show HN: Banana Peel – OpenRouter for browser agents

https://bananapeel.com/
2•ygabriel27•2h ago•1 comments

Show HN: bAIseball.org – Google for historical baseball stats

https://baiseball.org/
4•jaypinho•2h ago•1 comments

Show HN: Spore – run local models on your own hardware, use them from anywhere

https://sporeintel.com/
3•chrisischris•2h ago•2 comments

Show HN: All my mail accounts in one read-only MCP server, usable from my phone

https://github.com/wildsurfer/your-mail-mcp
4•yesplease_boats•2h ago•0 comments

Show HN: Bhowra Ink – C# HTML-to-PDF Under 1 MB, Azure Functions Consumption

https://bhowra.com/bhowra-ink.html
4•dillu_spur•2h ago•1 comments

Show HN: Turn ad-hoc subagents into durable, accountable AI teams

https://github.com/ringlochid/oh-my-subagents
2•ringlochid•2h ago•0 comments
Open in hackernews

Show HN: ThunderPhone v2 – a new architecture for voice AI

https://thunderphone.com
4•kolchinski•1h ago
Hi folks, Alex here from ThunderPhone. Today we're launching v2.

Voice AI has been a hot topic for the past year or two, both for automating phone calls and for adding voice features to apps.

Most of the voice agents deployed have been using a "3 step pipeline": a transcription model to turn user speech into text, an LLM to generate a response in text, and a TTS model to turn the response text into audio.

But the performance of these 3-step voice agents has often been so-so, largely for 3 reasons:

1) Voice agents have to be fast, usually requiring non-thinking LLMs to handle the conversation. Non-thinking LLMs make mistakes, leading to dumb behavior that derails conversations.

2) Today's voice AI stacks typically rely on a single transcription model to turn what the user says into text. This step loses a ton of information from the audio, and if the transcription model makes a mistake, the LLM often has no way to recover. This also leads to a lot of dumb behavior that breaks calls.

3) Natural conversation handling is a hard problem - filtering out noise like background voices, knowing when to allow the AI to be interrupted by a "uh, wait" but not by an "uh-huh", etc. - this also leads to awkward conversations.

The "bitter lesson-pilled" solution to all of these is most likely going to be a "full duplex" model that receives and emits audio at all times, allowing for fluid back-and-forth, while also calling a smarter model behind the scenes. OpenAI appears to have been the first to make real progress towards this architecture with their latest GPT-Live release, but that tech is not yet ready to plug into phone calls.

In the meantime, we've stitched together a stack that improves the performance of phone calls far beyond what's possible with a 3-step pipeline.

The ThunderPhone stack combines a few insights:

1) Grabbing signal from audio in more than one way, including running multiple transcription models at once, and piping audio directly into LLMs. This hugely reduces mistake rates, especially on challenging problems like data entry, multilingual calls, etc.

2) Combining thinking and non-thinking LLMs: in a conversation, it's natural to respond to some things more quickly than others, and sometimes even say things like "oh, let me think about that" - to indicate that it'll take longer to get back to someone with a final answer. ThunderPhone does the same thing.

3) This is less unique to us but we've stitched together a very big swarm of small (and in a few cases large) models to help make conversation handling more natural, even in hard environments like loud places, speakerphone, etc.

We've made the ThunderPhone stack available at 3 price points - 2c/min, 5c/min, and 9c/min, each with their own level of capability.

The 2c/min model ("Spark") is the cheapest on the market to our knowledge, and is smart enough to handle simple transactional calls.

Bolt at 5c/min is a middle ground, and the fastest model we offer.

Storm at 9c/min (+3c/min for extra intelligence) is our flagship model, able to handle even quite complex calls with very few mistakes. With extra intelligence turned on, it sets the record on the Big Bench Audio benchmark at 99.4% accuracy.

ThunderPhone is mostly aimed at B2B applications, but is also useful if you want to do something like setting up a smart voicemail for yourself, or calling around restaurants to make a reservation, calling around pharmacies to find a prescription, etc. for personal use.

Let me know if you have questions - happy to answer anything about ThunderPhone except a few "trade secret" specifics, and about the voice AI space more broadly, including where we think the tech is going.

And comment here or email me at alex@thunderphone.com if you want to get set up with some credits to try it out.

Alex