frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: spymux – Spy on your tmux panes

https://github.com/terror/spymux
4•crap•47m ago•1 comments

Show HN: European Tech News in 6 Languages

https://europedigital.cloud/en/news
26•Merinov•5h ago•30 comments

Show HN: Encore – Type-safe back end framework that generates infra from code

https://github.com/encoredev/encore
63•andout_•6h ago•44 comments

Show HN: TalkiTo – enabling voice and Slack for Claude Code and Codex CLI

https://github.com/robdmac/talkito
5•robbomacrae•2h ago•4 comments

Show HN: An easy-to-use online curve fitting tool

https://byx2000.github.io/curve-fit/
29•byx•1w ago•12 comments

Show HN: DBOS Java – Postgres-Backed Durable Workflows

https://github.com/dbos-inc/dbos-transact-java
102•KraftyOne•21h ago•47 comments

Show HN: Fun, Open-source Japanese learning Platform inspired by Monkeytype

https://github.com/lingdojo/kana-dojo
3•aladybug•4h ago•0 comments

Show HN: I made a simple time card calculator

https://www.mytimecardcalculator.com/
4•atharvtathe•8h ago•0 comments

Show HN: Agent Playbook – An open-source Storybook-like playground for AI agents

https://github.com/orlevii/agent-playbook
3•orlevii•7h ago•0 comments

Show HN: Pegma, the free and open-source version of the classic Peg solitaire

https://pegma.vercel.app
32•GlebShalimov•9h ago•48 comments

Show HN: I'm a CEO Coding with AI – Here's the Air Quality iOS App I Built

10•ahaucnx•17h ago•2 comments

Show HN: TranscribeAndSplit – AI that transcribes audio and splits it by meaning

5•hunglv•13h ago•0 comments

Show HN: Gerbil – an open source desktop app for running LLMs locally

https://github.com/lone-cloud/gerbil
35•lone-cloud•3d ago•9 comments

Show HN: Treasury – The personal finance app built for you (public beta)

https://treasury.sh/
5•junead01•14h ago•0 comments

Show HN: Cactoide – Federated RSVP Platform

https://cactoide.org/
67•orbanlevi•3d ago•28 comments

Show HN: Cancer diagnosis makes for an interesting RL environment for LLMs

44•dchu17•2d ago•20 comments

Show HN: I made an open-source Rust program for memory-efficient genomics

https://github.com/logannye/rosalind
16•logannyeMD•1d ago•0 comments

Show HN: Trace.taxi – easy agent messages visualization

2•thomasahle•19h ago•1 comments

Show HN: AI Bubble Monitor

https://aibubblemonitor.com
24•itsnotmyai•1d ago•4 comments

Show HN: I built a platform where audiences fund debates between public thinkers

https://logosive.com
41•mcastle•1d ago•38 comments

Show HN: V0 for Svelte (svelte0), a Svelte UI generator

https://svelte0.com/
5•dimelotony•19h ago•3 comments

Show HN: YAML Validator –A simple Docker-based YAML checker

5•pooyanazad•20h ago•0 comments

Show HN: Tusk Drift – Open-source tool for automating API tests

https://github.com/Use-Tusk/drift-node-sdk
56•Marceltan•3d ago•17 comments

Show HN: SkillGraph – Open-source agentic framework with skills instead of tools

https://github.com/tejassudsfp/skillgraph-backend
16•tejassuds•2d ago•2 comments

Show HN: Data Formulator – interactive AI agents for data analysis (Microsoft)

https://data-formulator.ai/
37•chenglong-hn•3d ago•12 comments

Show HN: LLM fine-tuning without infra or ML expertise (early access)

https://www.tinytune.xyz/
4•Jacques2Marais•22h ago•4 comments

Show HN: Agent-to-code JIT compiler for Z3-theorem-proving agents

https://github.com/stanford-mast/a1/tree/main/examples/z3_reasoning
6•calebhwin•23h ago•0 comments

Show HN: What Is Hacker News Working On?

https://waywo.eamag.me/
227•eamag•1w ago•51 comments

Show HN: US Publicly Traded Companies probabilities of default with public data

https://credit.quantra.io/
5•melenaboija•19h ago•0 comments

Show HN: Gametje – A casual online gaming platform

https://gametje.com
112•jmpavlec•3d ago•40 comments
Open in hackernews

Show HN: TalkiTo – enabling voice and Slack for Claude Code and Codex CLI

https://github.com/robdmac/talkito
5•robbomacrae•2h ago
Hey everyone, here is an open source project I've been working on to add voice input/output to terminal based coding agents.

One thing about the new terminal coding agents I really like is being able to multi-task but right now it's a bit like a Tesla on autopilot needing your hands still on the wheel. You need to be checking often if your input is required or if it's going off the rails. To be able to go fully hands free I wanted to add TTS and ASR. Then I added slack and WhatsApp hooks to TalkiTo as well.

It's fully open source with a BYOK philosophy and it's configured to work with any of the major ASR/TTS providers. It also supports local whisper and kokoro/kittentts if you want a decent free/private option.

It works by wrapping the coding agent and capturing the input/output. It does have an MCP server running but thats mainly for configuration - I found that using MCP to speak or listen was too slow. The upshot of the MCP server is you can type (or say) "talkito disable ASR" or "talkito change tts to kokoro".

Here is a demo video I made here: https://www.youtube.com/watch?v=pf8jFt0smqs

I like to think of it as similar to SuperWhisper but with TTS, the focus on coding agents and configurability.

Really curious to get feedback.

Thanks!

Comments

yodon•59m ago
This is likely a separate tool, but I suspect it is trivial to build given the framework you've set up...

What I most want is something that notices if Claude has been thinking for more than say 30 seconds, and if so sends me a slack message when the output is finished and ready to read.

Given that Claude is often thinking for 30 minutes, I context switch onto something else, and wish there were a way to get a notification so it isn't sitting idle waiting for me for ten minutes (or an hour, as sometimes happens)

robbomacrae•45m ago
You've hit the nail on the head of one of the main motivators of this project! I always context switch and miss when its done its task or sometimes forget completely..

So essentially at present when you setup TalkiTo with a Slack bot (instructions are shown by running `talkito --setup-slack`) it will do this its just its sending all the output to slack not just the final completion. I have verbosity levels and I could try tweaking them so that -verbosity 0 essentially does what you want ie filter everything except for prompts to the user. If you put in an issue on GitHub I'll get to it!

yodon•12m ago
Would you consider a lightweight app that just does notification?

Installing and running Whisper locally just to get notifications seems like more resource consumption than some of us are looking for.

Some will want one, some will want both.

robbomacrae•4m ago
Yeah that sounds reasonable. I've been thinking about how to make it more modular. I'll make it so that base TalkiTo doesn't need any heavy libraries.