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

Cross-Model Review Loop for AI Coding Agents Catches Critical Planning Flaws
A developer built a cross-model review system where a second AI model reviews plans from coding agents before execution, catching critical flaws like rollback failures and security holes. The tool is MIT licensed and includes a TUI dashboard.

Chrome Extension Adds Live Preview to Claude Code Web
A Chrome extension called Claude Code Preview adds live preview functionality to Claude Code Web, similar to Lovable and other 'vibecoding' sites, allowing side-by-side viewing of deployments.

ProofShot: CLI for AI Agents to Verify UI Code with Browser Recording
ProofShot is a CLI tool that lets AI coding agents open a browser, interact with pages, record sessions, and collect errors, then bundles everything into a self-contained HTML file for review. It works with any AI agent via shell commands and is packaged as a skill.

SkillMesh: MCP-Friendly Router for Large Tool Catalogs Reduces Context Size by 70%
SkillMesh is an MCP-friendly router that retrieves only relevant expert cards for AI agent queries, reducing context size by 70% and improving tool selection. It supports Claude via MCP server, Codex skill bundles, and OpenAI-style function schemas.