Earlier quoted context omitted.
I expect the opposite, where if you are not exploiting your newly freed time with more work, you will be left behind. This is the premise of the comic Power Nap . https://www.powernapcomic.com/powernap/
Well, at some point it's up to us to say 'no.' Weekends have not always been a widely accepted ritual[1]. They only became one because of collective action. Dedicating any and all of your free time to work only becomes a norm if we let it. [1]: https://www.goodwinrecruiting.com/eight-hour-workdays-and-40...
Nanobot: Ultra-Lightweight Alternative to OpenClaw
121–130 of 133 posts
Re: Nanobot: Ultra-Lightweight Alternative to OpenClaw
#122Watching the OpenClaw/Molbot craze has been entertaining. I wouldn't use it - too much code, changing too quickly, with too little regard for security - but it has inspired me. I often have ideas while cleaning around, cooking, etc. Claude Code (with Opus 4.5) is very capable. I've long wanted to get Claude Code working hands-free. So I took an afternoon and rolled my own STT-TTS voice stack for Claude Code. The voic…
repo?
The main non-trivial parts are proper state machine / concurrency management, and AirPods interaction; in particular, detecting a stem click while the microphone is active. I worked around this by having the mic-off-to-mic-on transition use a media player Play event, and mic-on-to-mic-off do silence detection. It's super hacky but actually works surprisingly well.
Currently looking into using `AVAudioApplication.setInputMuteStateChangeHandler(_:)`, like AirMute [1] does, so that I don't have to rely on silence detection and can manually terminate the voice command with a second click.
If you want to roll your own version of what I described today, it should be pretty easy to do so based on what I wrote if you have a Max x5-x20 plan and feed it to Opus. Bonus points, you get to customize it to your exact needs.
Re: Nanobot: Ultra-Lightweight Alternative to OpenClaw
#123Watching the OpenClaw/Molbot craze has been entertaining. I wouldn't use it - too much code, changing too quickly, with too little regard for security - but it has inspired me. I often have ideas while cleaning around, cooking, etc. Claude Code (with Opus 4.5) is very capable. I've long wanted to get Claude Code working hands-free. So I took an afternoon and rolled my own STT-TTS voice stack for Claude Code. The voic…
Nice setup! If you ever want to add Telegram alongside WhatsApp, check out tgcli - it's a pure Rust Telegram CLI (no TDLib, no C/C++ deps). https://github.com/dgrr/tgcli It does sync, messages, send, search (FTS5), stickers, forum topics, and has socket IPC for automation. Install via cargo or homebrew. Seems like it'd fit nicely into what you're building.
Re: Nanobot: Ultra-Lightweight Alternative to OpenClaw
#124Watching the OpenClaw/Molbot craze has been entertaining. I wouldn't use it - too much code, changing too quickly, with too little regard for security - but it has inspired me. I often have ideas while cleaning around, cooking, etc. Claude Code (with Opus 4.5) is very capable. I've long wanted to get Claude Code working hands-free. So I took an afternoon and rolled my own STT-TTS voice stack for Claude Code. The voic…
On one hand, I think this project is super cool and something I would use and/or would have loved to build myself for my own use. On the other hand, it makes me wonder if we’re just heading for a future where everyone is just always working, at all times, even while doing other things. “Wow look at our daughter taking her first steps! She’s doing so… wait hold on… No, Claude. I said to name the class “potatoes”, not…
For context, I'm a PhD student. Work-life balance is already... elusive.
Re: Nanobot: Ultra-Lightweight Alternative to OpenClaw
#125I started building my own version and before I even think about letting it loose, every facet needs to be designed and thought out. I have more tests than these lightweight libraries have code.
To me I don’t care about the size, I care about not getting wrecked.
Re: Nanobot: Ultra-Lightweight Alternative to OpenClaw
#126Earlier quoted context omitted.
> Specifically when the document number reaches around 10k+ Where are you getting this? just read the paper and not seeing it -- interested to learn more
The RAG GP used suffered from semantic collapse.
Re: Nanobot: Ultra-Lightweight Alternative to OpenClaw
#127Re: Nanobot: Ultra-Lightweight Alternative to OpenClaw
#128Watching the OpenClaw/Molbot craze has been entertaining. I wouldn't use it - too much code, changing too quickly, with too little regard for security - but it has inspired me. I often have ideas while cleaning around, cooking, etc. Claude Code (with Opus 4.5) is very capable. I've long wanted to get Claude Code working hands-free. So I took an afternoon and rolled my own STT-TTS voice stack for Claude Code. The voic…
Re: Nanobot: Ultra-Lightweight Alternative to OpenClaw
#129Earlier quoted context omitted.
>There's people saying AI isn't living up its hype / valuation, I don't see many saying "utterly useless". There's more people saying AI doesn't live up to the hype. The people who are saying it's utterly useless is still quite large on HN. It's just that most of them are midway through changing their story because reality is smashing them in the face. >And there's plenty who worship at the altar of Claude. I mean wh…
> There's more people saying AI doesn't live up to the hype. It is possible they are correct and nothing you have written suggests otherwise. > The people who are saying it's utterly useless is still quite large on HN. Are these people's opinions less valid than your own? Are you angry your opinion might be a minority on this one website? > It's just that most of them are midway through changing their story because r…
Those of us who want to explore what people are doing have to wade through piles of comments saying the same thing, with very little difference from comment to comment.
That said, the opinion is quite valid. I think many people will continue to have no use for agents.
Re: Nanobot: Ultra-Lightweight Alternative to OpenClaw
#130Watching the OpenClaw/Molbot craze has been entertaining. I wouldn't use it - too much code, changing too quickly, with too little regard for security - but it has inspired me. I often have ideas while cleaning around, cooking, etc. Claude Code (with Opus 4.5) is very capable. I've long wanted to get Claude Code working hands-free. So I took an afternoon and rolled my own STT-TTS voice stack for Claude Code. The voic…
I would be happy to create such a system myself though I don't have Airpods. I have Beats Flex and perhaps I could somehow control the input with double volume up and down clicks. Or just use my phone somehow. Would you be willing to write more about your setup, perhaps a blog post?