Pneuma: An AI-Generated Desktop Environment Where Software Materializes from Descriptions

Pneuma is a desktop computing environment where software doesn't exist before you need it. You boot to a blank screen with a prompt, describe what you want—like a CPU monitor, game, notes app, or data visualizer—and a working program materializes in seconds.
How It Works
Your input goes to an LLM, which generates a self-contained Rust module. That gets compiled to WebAssembly in under a second, then JIT-compiled and executed in a sandboxed Wasmtime instance. Everything is GPU-rendered via wgpu (supporting Vulkan, Metal, and DX12). If compilation fails, the error is automatically fed back for correction, with a ~90% first-attempt success rate.
Architecture and Features
- Microkernel architecture: Agents run in isolated WASM sandboxes with a typed ABI for drawing, input, storage, and networking
- Agent persistence: Once generated, agents persist—you can reuse them, they communicate through IPC, and you can share them through a community agent store
- System stability: An agent crash can't bring down the system
- Agent capabilities: Agents can run side by side, persist to a local store, and be shared or downloaded from the community store
Current Status and Future Goals
Currently runs as a desktop app on Linux, macOS, and Windows. The longer-term goal is to run on bare metal and support existing ARM64 binaries alongside generated agents, creating a full computing environment where AI-generated software and traditional applications coexist. Built entirely in Rust.
Philosophy
The creator built this because they believe the traditional software model—find an app, install it, learn it, configure it—creates unnecessary friction. If a computer can generate exactly the tool you need when you need it, and keep it around when it's useful, why maintain a library of pre-built software at all?
A free tier is available (no credit card required), and there's a video on the landing page showing it in action. The creator is interested in feedback on the concept, UX, and whether this is something developers would actually use.
📖 Read the full source: HN LLM Tools
👀 See Also

Opendesk: MCP + SOM algorithm for AI desktop control via Claude Code
Opendesk gives AI agents eyes and hands on your desktop via an MCP server with a custom SOM algorithm. Integrates with Claude Code or any agentic harness for mouse/keyboard control, learning, replay, and scheduling.
Gigacatalyst: Embed an AI Builder in Your SaaS to Let Users Create Custom Workflows
Gigacatalyst lets you embed an AI-powered app builder into your SaaS. Non-technical users describe workflows in natural language, and the system generates governed apps using your APIs, data model, and design system — with auth, tenant isolation, and version control built in.

Multi-Agent Debate App Built with Claude, ElevenLabs, and Flux
A developer built a debate app where Claude generates arguments for two personas on any topic, with an AI judge scoring and picking a winner. The app adds voice via ElevenLabs and images via Flux to create a debate show experience.

Claude to PDF Chrome Extension Exports Long Conversations with Formatting Intact
A developer has released a free Chrome extension called Claude to PDF that captures full conversation history from Claude AI chats and preserves code blocks, LaTeX math, and table formatting when exporting to PDF.