Analysis updated 2026-05-18
Have an AI summarize every document in a folder without risking the host machine.
Extract structured information from a batch of PDF files.
Ask an AI agent questions about a Word document without converting it first.
Run analysis scripts in an isolated sandbox instead of your main system.
| run-llama/sandboxed-lit | johunsang/semble_rs | azw413/glass | |
|---|---|---|---|
| Stars | 83 | 86 | 79 |
| Language | Rust | Rust | Rust |
| Setup difficulty | moderate | easy | moderate |
| Complexity | 3/5 | 2/5 | 4/5 |
| Audience | developer | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires an OpenAI API key and the microsandbox VM runtime.
sandboxed-lit is a small command-line tool written in Rust that lets you point an AI agent at a folder of files and ask it questions about them, while keeping the agent confined to an isolated virtual machine so it cannot affect the rest of your system. The isolation comes from microsandbox, a lightweight VM technology. When you run sandboxed-lit, it creates or reattaches to a contained environment with limited CPU and memory, and mounts your chosen directory into that environment at a fixed path. The AI agent running inside can list files, read them, and execute shell commands, but only within that sandbox boundary. What makes it useful for document work is the file reader. Plain text files are returned as-is, but PDFs, images, and Office documents are routed through LiteParse, a separate tool from the same organization that extracts structured content from those formats. This means the agent can read a PDF or a Word document and reason about its contents without you having to convert it first. The agent itself uses OpenAI GPT models via a Rust SDK called agent-sdk. You give it a prompt on the command line and it runs until it has completed the task, streaming its progress to the terminal with colored output. Someone would use this to have an AI summarize documents in a folder, extract information from a batch of PDFs, or run analysis scripts in a safe environment. The tech stack is Rust with an OpenAI API key required.
A Rust command-line tool that lets an AI agent answer questions about a folder of files while confined to an isolated sandboxed VM.
Mainly Rust. The stack also includes Rust, microsandbox, OpenAI API.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.