Evan Barke

pneuma - An OS where software materializes from a prompt

by
Pneuma is a desktop computing environment with no pre-installed applications. You describe what you need and a working program appears in seconds. Want a CPU monitor? A game? A data visualizer? Just type it. Under the hood, your prompt generates a Rust program that compiles to WebAssembly and runs in a GPU-rendered sandbox (Vulkan/Metal/DX12). Agents persist, communicate with each other via IPC, and can be shared through a community store.

Add a comment

Replies

Best
Evan Barke
Maker
📌
I built pneuma because I kept running into the same friction: needing a quick tool, then spending 20 minutes finding an app, installing it, configuring it, only to use it once. I thought: if AI can generate working code reliably, why not just describe what I need and have it appear? The technical approach: an LLM generates a self-contained Rust module, rustc compiles it to WebAssembly in under a second, Wasmtime JIT-compiles it, and wgpu renders everything on the GPU. If compilation fails, the error is automatically fed back for correction. About 90% first-attempt success rate. Agents are sandboxed (one crash can't affect anything else), they persist so you can reuse them, and they can talk to each other. There's also a community store for sharing agents. Would love feedback on the concept and whether this is something you'd actually use day to day.