Posted by david927 1 day ago
Ask HN: What are you working on? (June 2026)
It creates its own copy of your workdir for the agent to play in, and then you pull changes out ala git diffs or commits.
$ yoloai new mybugfix . -a # launch default sandbox in . and also attach the terminal
# Work with the agent...
$ yoloai diff mybugfix # See what it did
$ yoloai apply mybugfix # Bring out commits and/or uncommitted changes.
$ yoloai destroy mybugfix
And it's FOSS: https://github.com/kstenerud/yoloaiI've also recently setup Hermes to be a bit of a project manager for my side projects and it's worked quite well. Gave it a little CLI to see my todos, projects, and "areas" (ongoing long term things). Then it bugs me once in a while when a project is going stale. One of the nicest things is being able to add stuff to the past so if I did work on something but it wasn't associated with a todo I just let it know and then it'll backdate that.
I'm also building a modern HTTPS-only transport utility called curb. It's an alternative to curl and wget. It's written in Go using only the standard library. curb can stream output or download files and picks the right behavior based on what the server returns and whether the output is going to a human or a pipe. It also has a '--vet' mode that runs the body through security sieves; this is meant to add some protection and friction for the 'curl | sh' use-case. https://gocurb.dev
This has been in the works for many years! The project originally started as web forms driving After Effects templates on a Windows server, and has now evolved to a point where the web technology landscape has matured enough to build a full-on motion graphics editor right in the browser, using WebGPU and WebCodecs.
Recently I've been trying to expand it from just coding focused to any kind of agent workflow. So now there are cron and webhook triggers, and more general agent tasks that aren't necessarily coding focused (https://github.com/jonwiggins/optio/blob/main/docs/persisten...).
I think next I want to try and add features for long term memory for agents, but haven't decided on a good way to do it.
I wanted an easier way to do tasks with AI agents wit easy deployment flaw, simple config. work is still in progress.