Terrarium: Open-Source Sandbox for Agentic Environments with Time Machine Rewind

Running multiple AI agents in production often leads to security headaches and configuration drift. One developer built Terrarium, an open-source sandbox that provides isolated environments for agents with a safety net: a time machine that lets you rewind container state when things go wrong.
Key Features
- Isolated "worlds" — agents operate in separate containers with security hardening out of the box.
- Reverse-proxy management — easy routing between worlds and external services via a built-in GUI.
- Time machine — if an agent corrupts state, simply rewind the container to a previous snapshot.
- Runs on any VPS or cloud with an attached disk — no special infrastructure required.
Quick Start
Clone the repo and launch:
git clone https://github.com/terion-name/terrarium
cd terrarium
make runThen access the management GUI at http://localhost:8080 to create worlds, configure routing, and set snapshot schedules.
Who It's For
Developers running multiple agentic workflows who need per-agent isolation, audit trails, and the ability to roll back from catastrophic agent decisions without rebuilding infrastructure.
📖 Read the full source: r/openclaw
👀 See Also

Developer Builds MCP Server for Claude WhatsApp Integration, Shares Challenges
A developer built an MCP server to give Claude access to real WhatsApp conversations, discovering that conversation context management was trickier than expected and required a database to track conversations.

GoModel: A Lightweight Open-Source AI Gateway Written in Go
GoModel is an open-source AI gateway that provides a unified OpenAI-compatible API for multiple providers including OpenAI, Anthropic, Gemini, Groq, xAI, and Ollama. It features a 17MB Docker image, 44x smaller than LiteLLM, with environment-variable-first configuration and built-in observability.

Codesight CLI reduces AI coding agent token usage by scanning codebases
Codesight is a zero-dependency CLI tool that scans TypeScript, Python, and Go projects to generate compact context files, reducing Claude Code exploration tokens by 12.3× on average according to benchmarks from real production codebases.

Crit: Local-first, single-binary CLI for reviewing agent plans and diffs
Crit is a single-binary CLI that opens files or diffs in a browser with a GitHub-inspired UI, allowing multi-round feedback loops with AI coding agents — no account needed.