Void-Box Update Adds Sandboxed OpenClaw-Telegram Integration via KVM Micro-VMs

What Void-Box Is
Void-Box is a capability-bound runtime for AI agents that combines agent skills with isolation. The core concept is: VoidBox = Agent(Skills) + Isolation. Skills are declared capabilities that only exist when bound to an isolated execution boundary.
Key Technical Approach
Instead of running agents in shared processes or containers, each execution stage runs inside its own KVM micro-VM. These micro-VMs are created on demand and destroyed after execution, providing explicit capability boundaries with no container runtime required.
New Update Details
The latest update adds a working example that runs OpenClaw connected to Telegram - fully sandboxed inside Void-Box. In this example, the workflow runs as a service (daemon mode) inside an isolated micro-VM.
The flow is:
- Telegram receives a message
- OpenClaw processes it inside the sandbox
- Execution happens within an isolated KVM micro-VM
Each interaction remains isolated within the VM boundary, with no leftover state, no side effects that leak between runs, and no shared filesystem mess.
Platform Support and Status
Currently supports Linux (KVM) and macOS. The project is still early, but the core pipeline and sandbox are functional.
Demo and Resources
A short video shows:
- The declarative workflow (YAML)
- The service booting inside a micro-VM
- Telegram receiving the response
Repository: https://github.com/the-void-ia/void-box
📖 Read the full source: r/LocalLLaMA
👀 See Also

My Agent Built Himself an Interoception System — Now He Has Desires

PocketBot: A Local AI Autopilot for iOS Using App Intents and On-Device Inference
PocketBot is an iOS app that runs a quantized 3B Llama model locally on iPhone's Neural Engine via Metal, using Apple's AppIntents and CoreLocation frameworks to create event-driven automations without cloud data transmission.

LLMSpend: Open-source cost tracker for Anthropic and OpenAI SDKs
LLMSpend is a Python library that adds cost tracking to Anthropic and OpenAI SDK calls with two lines of code. It provides local SQLite storage, CLI reporting, and a web dashboard without sending data externally.

Marky: A Lightweight Markdown Viewer for Agent-Generated Documentation
Marky is a desktop markdown viewer built with Tauri v2 and React that opens .md files from the terminal with live reload. It features CLI-first usage, syntax highlighting with Shiki, KaTeX math support, Mermaid diagrams, and workspaces for folders.