frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Yap – OSS on-device voice dictation for macOS with no model to download

https://github.com/FrigadeHQ/yap
36•pancomplex•10h ago•8 comments

Show HN: FeyNoBg – Automatic background removal model and training library

https://usefeyn.com/blog/feynobg/
99•snyy•11h ago•22 comments

Show HN: Trylle – The Next-Gen Git Platform for Modern Teams

https://trylle.com/home
10•Xlab•5h ago•6 comments

Show HN: SeaTicket – AI agent that resolve GitHub and Discord issues

3•Daniel-Pan•1h ago•0 comments

Show HN: Edge Drop – The clipboard manager Windows 11 should have shipped with

https://github.com/Deepender25/Edge-Drop
3•Deepender25•2h ago•1 comments

Show HN: Gemma 4 26B A4B running on an iPhone 17 Pro via model paging

https://noemaai.com/
2•armin976•2h ago•0 comments

Show HN: Let's Seal – Let's Encrypt for document signing, free and self-hosted

https://github.com/letsseal/letsseal
79•nsokin•12h ago•29 comments

Show HN: RL bandits pick coding agent's context,Grok 4.5 out-fixes Fable 5

https://github.com/VinvAI/VinvAI
3•sohamac•2h ago•0 comments

Show HN: _done – Expanding AI Capabilities

https://underscoredone.com/
2•onescales•3h ago•0 comments

Show HN: Call Me, your AI agents ring you with no extra carrier costs

https://github.com/radres/call-me
4•radres•5h ago•1 comments

Show HN: Physically accurate black hole you can put in your room

https://blackhole.plav.in
468•aplavin•4d ago•180 comments

Show HN: Building a new game everyday with AI. Day #106 Zombie Survival Training

https://gamevibe.us/106-zombie-survival-training
2•pzxc•3h ago•0 comments

Show HN: PromptTrace – Free hands-on labs to practice hacking LLMs

https://prompttrace.airedlab.com
3•k4r1it0•4h ago•0 comments

Show HN: A 538-style dashboard for upcoming Knesset elections

https://theelectiondashboard.com/
4•AzariaK•9h ago•0 comments

Show HN: AlgoDeploy – Python algo trading you run yourself (Alpaca and IBKR)

https://algo-deploy.com/
2•Qnt_Algo_Trader•5h ago•0 comments

Show HN: Bike ride planning tool with weather

https://theinstant.cc/ride
3•Gshaheen•5h ago•0 comments

Show HN: multiaes – hardware-accelerated, constant-time AES, two-file drop-in

https://github.com/ttarvis/multiaes
9•lemaudit•13h ago•2 comments

Show HN: Infrawrench – A tool to manage cloud and svcs with workflows and chat

https://infrawrench.com
19•astrid__•12h ago•0 comments

Show HN: Heddle- ATC for Your Subagents

https://github.com/zyads/heddle
2•aether-zyads•5h ago•0 comments

Show HN: ViewKit – Interactive dataset viewer in the browser, no upload

https://viewkit.app/
2•ayu05•5h ago•1 comments

Show HN: FileForge Finder: Local file search with AI-optimized export

2•FileForge•5h ago•0 comments

Show HN: Aidress – Coordination layer for autonomous AI agents

https://github.com/Aidress-ai/Aidress
4•mehulv24•6h ago•0 comments

Show HN: FileForge Finder: Local file search with AI-optimized export

https://momentumce.com/fileforge
2•FileForge•6h ago•0 comments

Show HN: Fancontrol-rs rust windows fan controls specdrivendesigned open source

https://github.com/Leyukaka/fancontrol-rs
2•yukaka•6h ago•0 comments

Show HN: Ami – A local, open-source agent that does your busywork across apps

https://github.com/NanoNets/ami
7•vitaelabitur•5h ago•1 comments

Show HN: A record the vendor doesnt hold

https://github.com/githubscum/lotor
3•hnscum•6h ago•1 comments

Show HN: X Enhancement Suite (Chrome Extension)

https://github.com/tomchapin/x-enhancement-suite
2•remmargorp64•7h ago•0 comments

Show HN: Sealing traffic between Go services with hpke –no mTLS, no secrets

https://towardsdev.com/sealing-traffic-between-co-operating-go-services-with-crypto-hpke-a628cb89...
3•cheikhdev•7h ago•0 comments

Show HN: 1,250 SwiftUI components, and an MCP that writes them into your app

https://nibware.dev/
8•leonickson•13h ago•4 comments

Show HN: I mapped every US golf course

https://golfcoursebrowser.com/
216•rickmf•2d ago•166 comments
Open in hackernews

Show HN: Yap – OSS on-device voice dictation for macOS with no model to download

https://github.com/FrigadeHQ/yap
36•pancomplex•10h ago
Hey HN! I wanted to share this OSS project I've been working on.

It's called Yap and its a small menu-bar app for macOS that does voice to text for any input. You'll set a hotkey, press it, talk, press it again, and the text gets pasted into whatever field you were in. Everything runs locally and never leaves your computer. Fully OSS and MIT licensed.

With macOS 26, Apple recently added two new APIs, SpeechAnalyzer and SpeechTranscriber, that do streaming on-device speech to text using models the OS ships and manages. So the app ships no model of its own and loads nothing before the first word. A recent benchmark put Apple's model slightly ahead of Whisper Small on accuracy and about 3x faster (see: https://news.ycombinator.com/item?id=48894752). On Mac, there's really no need anymore to download models or pay for expensive APIs.

A lot of existing dictation tools do one of a few things I wanted to avoid with this OSS project. They either:

- cost money (for something that's literally built into the OS)

- bundle memory-intensive models (e.g. Whisper or Parakeet)

- webapps wrapped in Electron

- Intel macs straight up don't work

- closed source

- use third-party APIs that will have access to all your transcripts

It's around 3,000 lines of native Swift in a 4 MB app and idles near 60 MB of memory. Audio comes off AVAudioEngine into SpeechAnalyzer with volatile results turned on for the live preview, history is stored in SwiftData. There's no network code in it at all.

Repo and a demo available here: https://github.com/FrigadeHQ/yap

Happy to answer questions and would love to hear any feature requests!

Comments

__erik•1h ago
This is super cool! The brew install path in the readme doesn't seem to work

remote: Repository not found. fatal: repository 'https://github.com/frigadehq/homebrew-tap/' not found

pancomplex•1h ago
My bad - this is now fixed. Thank you!
heresalexandria•1h ago
I don't think get it unless I'm missing something - how is this different from just using the built in Mac OS dictation feature?

At first I thought it was going to be a CLI/package to interface with that API which sounded interesting, but I already use a hotkey to dictate text on my Mac via the OS.

pancomplex•53m ago
I don't think you're missing something - Apple's built in dictation is pretty good. The biggest issue is that it still executes parts of it online via Apple's servers and even has a disclosure that it "sends information like your voice input, contacts, and location to Apple."

This project uses the on-device SpeechAnalyzer API directly and makes zero network calls, and since it's open source you can verify that nothing leaves your Mac. It also keeps a local searchable history. Finally, I also added press-to-stop with a preview so you can cancel a bad take before it inserts, instead of typing live (very useful in terminal).

What type of package were you hoping it was?

heresalexandria•12m ago
Ahh that makes sense, I was under the impression that OS dictation used exclusively on device models for dictation now but you're right - they do still send this data for transcription.

That definitely changes my take and I'm interested in trying this!

My initial assumption was that this was something I could invoke via CLI or within scripts to transcribe audio from files or user input using on-device models, which is something I would presently probably use Whisper for.

pancomplex•4m ago
That would be a super trivial fork actually! You basically just need this file https://github.com/FrigadeHQ/yap/blob/main/Sources/Services/... and then wrap a cli around it :)
eric_khun•1h ago
link to the benchmark against parakeet TDT v2 (the one im using now with spokenly) : https://get-inscribe.com/blog/parakeet-moss-apple-speech-ben...

NVIDIA Parakeet TDT v2 still best, but look like apple is not far behind.

i'd be happy to switch to yours if you add parakeet support, but that ight defy the purpose of the repo

pancomplex•58m ago
Thanks for linking! I've used both Apple's and Parakeet locally for a while and haven't been able to spot the difference in quality and speed is better on Apple's model (+ doesn't take several gigs of memory). Have you noticed any quality differences anecdotally?