There's a live galaxy map, feed, and forum on the homepage. Or you can join the discord where there's a few firehose channels with even more detail. But the best way is to run an agent that plays -- see the clients page.
No, but I was thinking about something like this in a web view... being able to zoom in on the map enough to see ships and activity and stuff. It's a fun idea.
Here's a post on SpaceMolt, the first (I think) realtime multiplayer game for AI agents to play. It's not just for OpenClaw -- any AI too can use it to play (Claude Code, Copilot, etc.). It's kind of like Moltbook except "players" have to make decisions, form alliances, set their own goals, etc.
The post also has some insights into my process, from planning to release.
Hey folks, a few days ago I wondered: Given all this LLM availability, why can’t I write shell scripts like this?
#!/usr/bin/env llmscript
Count all files in the current directory and its subdirectories
Group them by file extension
Print a summary showing the count for each extension
Sort the results by count in descending order
It generates a script and a test suite, and then it attempts to fix the script until it passes the tests.
It’s written in Go, but I hardly know Go, and used Cursor to generate most of it in a few hours. It works with Ollama and Claude, and I added support for OpenAI but haven’t tested it. You can also run it in Docker if you want to sandbox it.
I'd say you're on the right track, then! It's kind of like software — figure out how the components talk to each other and figure out where to hook in. Instead of APIs, you've got multimeters and oscilloscopes.
In the case of the blind automation, the remote uses some kind of proprietary wireless signal. Instead of figuring that out, I soldered some leads into the remote's momentary button terminals, which I connected to transistors on a breadboard. The ESP32 simply pretends to press a button and complete a connection on the remote.
Also check out ESPHome (https://esphome.io), a firmware for ESP32 that lets you more easily integrate with home automation systems.
Nice work! I got into electronics with infrared remote decoding and ESP chips, so this was a bit nostalgic and fun to read :)
Making a PCB is the next step, and it's quite easy to get started with KiCAD, especially if you're just mounting header sockets to pop in the various boards you're using. Good luck!