boolkeys 5 hours ago
Moltcraft is an isometric pixel-art dashboard that connects to Moltbot (an AI agent orchestration tool). Your agent sessions become pixel characters in a living world — they walk around, mine tokens, complete tasks. Click them to chat, check token usage, read conversation history.

*Why I built this:* I run multiple AI agents (Claude, GPT) across Telegram, Discord, and cron jobs. Monitoring them was painful — multiple terminals, JSON logs, manual `curl` commands. I wanted something that makes the invisible visible. A world where I can glance at the screen and know what's happening.

*Technical choices I'm happy with:*

- Zero npm dependencies. The frontend is pure HTML/CSS/JS — no React, no build toolchain. The "framework" is vanilla DOM manipulation and Canvas. - One command to start: `npx @ask-mojo/moltcraft`. Auto-detects your gateway config. - Procedural audio via Web Audio API (ambient sounds, click effects — no audio files shipped). - Day/night cycle synced to real time. Weather particles. It's surprisingly meditative. - Optional Cloudflare tunnel built in for remote access.

*What it connects to:* Moltbot manages AI agents — spawning sessions, routing messages across channels (Telegram, Discord, WhatsApp, Slack), scheduling cron jobs, managing skills/tools. Moltcraft is the visual layer on top.

*What's next:* Community buildings, better mobile support, plugin system for custom data panels.

Try it: `npx @ask-mojo/moltcraft`

Code: https://github.com/askmojo/moltcraft

Demo video: https://youtu.be/Kz5efD4eZjU

Would love technical feedback — especially on the rendering approach (I went with DOM + CSS transforms for the isometric grid instead of Canvas/WebGL, curious if anyone has opinions on that).