From 9cf33359f9159fd3901e8459f774cac68b3f088e Mon Sep 17 00:00:00 2001 From: robcholz <84130577+robcholz@users.noreply.github.com> Date: Sun, 8 Feb 2026 02:02:59 -0500 Subject: [PATCH] doc: updated README.md --- .github/workflows/ci.yml | 2 + README.md | 88 ++++++++++++++++++++++++++++++++++++++-- 2 files changed, 86 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0237c39..d1a5357 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,8 @@ on: - "**" paths-ignore: - "README.md" + - "CONTRIBUTING.md" + - "README.zh.md" - "docs/**" - "install" pull_request: diff --git a/README.md b/README.md index ae0dd78..9afeedd 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@
-The open source AI coding agent.
+Your ultrafast open source AI sandbox.
[![Crates.io][crates-badge]][crates-url] [![MIT licensed][mit-badge]][mit-url] @@ -40,16 +40,96 @@ curl -fsSL https://raw.githubusercontent.com/robcholz/vibebox/main/install | bas # Package managers cargo install vibebox + +# Or manually (bad) +curl -LO https://github.com/robcholz/vibebox/releases/download/latest/vibebox-macos-arm64.zip +unzip vibebox-macos-arm64.zip +mkdir -p ~/.local/bin +mv vibe ~/.local/bin +export PATH="$HOME/.local/bin:$PATH" ``` > [!TIP] -> We truly recommend you to use `YOLO`. +> We truly recommend you to use `YOLO` to install. -todo +**Requirements** + +- macOS on Apple Silicon (Vibebox uses Apple's virtualization APIs). + +**First Run** + +The first `vibebox` run downloads a Debian base image and provisions it. After that, per-project instances reuse the +cached base image for much faster startups. ### Documentation -todo +**Quick Start** + +```bash +cd /path/to/your/project +vibebox +``` + +On first run, Vibebox creates `vibebox.toml` in your project (if missing) and a `.vibebox/` directory for instance data. + +**Configuration (`vibebox.toml`)** + +`vibebox.toml` lives in your project root by default. You can override it with `vibebox -c path/to/vibebox.toml` or the +`VIBEBOX_CONFIG_PATH` env var, but the path must stay inside the project directory. + +Default config (auto-created when missing): + +```toml +[box] +cpu_count = 2 +ram_mb = 2048 +disk_gb = 5 +mounts = [ + "~/.codex:~/.codex:read-write", + "~/.claude:~/.claude:read-write", +] + +[supervisor] +auto_shutdown_ms = 20000 +``` + +`disk_gb` is only applied when the instance disk is first created. If you change it later, run `vibebox reset` to +recreate the disk. + +**Mounts** + +- Your project is mounted read-write at `/usr/local/vibebox-mounts/