Top
Best
New

Posted by david927 1 day ago

Ask HN: What are you working on? (August 2026)

What are you working on? What have you been curious about lately?
308 points | 1123 commentspage 45
SamPatt 1 day ago|
I have a Pebble Time 2, which is an open source watch. I built a voice operated AI assistant for it.

It's hosted on a VPS, connected over Tailscale, and has a realtime TTS server (Piper).

The Pebble has built in transcription, so my app takes the transcript, hits the server endpoint with three possible paths:

1. Deterministic response

The server looks for certain triggers from the transcript like "Add task," "Complete task," "Set a timer," etc that will run a simple function on server and write / retrieve to a database, no LLM call needed. It then responds with the TTS output and the watch speaks. This path is nearly instant.

2. Fast response

If no trigger is found, then it hits a gpt5.6 Luna endpoint, which decides if it can answer the query itself, or if it needs to defer to the big brother model. If it can handle a query itself, it usually responds to simple questions in less than 8 seconds. It's also good about properly deferring, very close to 100% after a few weeks.

3. Deferred response

The VPS hosts a Hermes installation, and for more complicated tasks or for ongoing projects the Luna router sends it to the Hermes agent. This is typically quite slow, as you'd expect, but remarkably capable. I built the voice app to cache a few lines like "this will take some time" which will automatically trigger if the router indicates it's deferring, and then will respond with the full response from Hermes once it's finished (sometimes minutes later).

Pebble has a quiet mode, and my app will only display the text response if it's on, otherwise all responses are run through the TTS. Piper is so fast that this adds almost no time to the response.

In only a few weeks this has become the primary way I set up tasks, review and close them, set timers and reminders, log my weight, check in on the progress of projects I'm running on Hermes, and ask simple day to day AI questions.

Since Pebble is open source, AI tools are very good at building it, and it's trivially easy to set it up so that you can just ask the model to deploy it live. It's an awesome experience to tell it to change something, and two minutes later, that change is on your wrist.

Very fun project!

namanyayg 1 day ago|
I had no idea you could do something like this through the Pebble!

I pre-ordered mine last year but it looks like it's not going to come before September :(

As soon as it gets here I think this is the first project I'm going to attempt. It'll be helpful you've got any resources or source code for the Pebble STT and TTS parts. (I already have my own hermes that I want to hook it up to)

SamPatt 1 day ago||
The Pebbble transcription is part of their SDK and very easy to use programmatically, also it's quite accurate (not perfect but good enough that I turned confirmation off).

The TTS is Piper installed on the same VPS as Hermes.

Happy to answer questions or share code. I might publish the device app eventually. I hope your Pebble arrives soon, it's a great device.

hamilton_app 1 day ago||
A vibe-coded front-end to Google Health Connect that displays all health metrics that Health Connect holds in one gui.

It's an attempt to get round the fact that various health apps and vendors pick and choose what they share or show from other sources.

ultra_nick 1 day ago||
https://conceptionary.app/

I've been working on an AI Tutor or Primer that automatically generates Duolingo style curriculums. Planning to apply to YC after the next big feature release.

The current website is a rushed out MVP. It takes a significant amount of data science and prompt engineering to generate good courses, so it's taking me a bit longer to build the true vision.

jfil 1 day ago||
I'm working on writing up pages for projecthammer.org, the new website where I'll host my database of Canadian grocery prices. It's getting interest from more academics and needs a more formal home.

I've been curious about ways in which politicians who are in the minority/out of power can still make progress on issues that matter to them.

bsp580 1 day ago||
Singularity (https://apps.apple.com/us/app/singularity-dock-anchor/id6791...), a tiny menu bar app that stops the macOS Dock from jumping between monitors. There's no API to pin the Dock to one screen, so it just keeps your cursor off the bottom edge of the others and the Dock has nowhere else to appear. No Dock icon, no sub
kreig 22 hours ago||
Hermes agent assistant for homelab server maintenance backed by the (still cheap) DeepSeek v4 Flash 0731:

- Stack enhacements

- Updates/upgrades

- Security audit

- Prometheus/Grafana monitoring and alerting

- Backups

Basically a sysadmin for my own local cloud.

enduser 1 day ago||
Since January I've been working on a storytelling system that fuses what I think is the best of interactive fiction / MUDs with the strengths of LLMs. The world model is entirely deterministic, but the LLM interprets the player and narrates the game and NPCs.

Also hacking on something similar to YC's QM but designed for small non-profits to ease as much back office work as possible.

Jernesstar 1 day ago||
A graph-based code editor https://miralume.dev
emehex 1 day ago||
I'm working a new Fantasy Football league/format that is category-based (like hockey/baseball) in an attempt to make games more "watchable". The problem with traditional Fantasy Football, is that half of the game (defence) is ignored, while not very economically-valuable positions, like RB and TE, are elevated far past their real world relevance. This new system is my attempt at fixing both problems!
More comments...