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

GSD-Lite: A State Machine for Claude Code That Enforces TDD and Prevents Test Skipping
GSD-Lite is an open-source MCP server that adds a 12-state workflow machine to Claude Code, enforcing test-driven development with specific anti-rationalization prompts and separate agent contexts for execution, review, and debugging.

nervx: CLI tool reduces Claude Code token usage by analyzing codebase structure
nervx is a pip-installable CLI tool that parses repositories with tree-sitter, builds a SQLite graph of functions and imports, and generates a NERVX.md structural map. It automatically adds instructions to CLAUDE.md that teach Claude to use nervx navigation, reducing grep searches by 65% and output tokens by 48% in testing.

Open-source Claude Code skill diagnoses AI adoption roadblocks
An MIT-licensed Claude Code skill analyzes where companies get stuck with AI adoption—tooling, culture, or measurement—and builds 90-day plans with named owners. Based on interviews with 100+ founders and board members.
Claude Garmin MCP Server: Real Fitness Data for Smarter Training Advice
An MCP server that connects Claude Desktop to Garmin Connect, exposing 8 tools (recovery readiness, HRV, VO2max, etc.) for data-driven training plans.