{"id":35430244,"url":"https://github.com/aleksey925/agentbox","last_synced_at":"2026-01-13T19:55:33.659Z","repository":{"id":330298087,"uuid":"1122265680","full_name":"aleksey925/agentbox","owner":"aleksey925","description":"CLI for running AI agents (Claude Code, GitHub Copilot, OpenAI Codex, Gemini CLI) inside an isolated Docker container.","archived":false,"fork":false,"pushed_at":"2026-01-11T20:10:00.000Z","size":109,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-11T23:52:53.493Z","etag":null,"topics":["ai","ai-agents","claude-code","cli","codex-cli","copilot-cli","gemini-cli"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aleksey925.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-24T11:38:59.000Z","updated_at":"2026-01-05T19:46:37.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/aleksey925/agentbox","commit_stats":null,"previous_names":["aleksey925/agentbox"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/aleksey925/agentbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aleksey925%2Fagentbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aleksey925%2Fagentbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aleksey925%2Fagentbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aleksey925%2Fagentbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aleksey925","download_url":"https://codeload.github.com/aleksey925/agentbox/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aleksey925%2Fagentbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28398353,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","ai-agents","claude-code","cli","codex-cli","copilot-cli","gemini-cli"],"created_at":"2026-01-02T20:28:29.937Z","updated_at":"2026-01-13T19:55:33.654Z","avatar_url":"https://github.com/aleksey925.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"Agentbox\n========\n\nCLI for running AI agents (Claude Code, GitHub Copilot, OpenAI Codex, Gemini CLI) inside an isolated Docker container.\n\n- [Why use Agentbox?](#why-use-agentbox)\n- [Installation](#installation)\n  - [Shell Completions](#shell-completions)\n- [Updating](#updating)\n- [How to Use](#how-to-use)\n  - [Modular Sandbox Configuration](#modular-sandbox-configuration)\n  - [Customization](#customization)\n\n## Why use Agentbox?\n\n- **Security** — agents run in a sandbox and cannot access files outside the project, modify system configs, or cause unintended side effects\n- **Convenience** — no need to approve every agent action since it works in an isolated environment\n\n## Installation\n\nDownload the latest release from [releases](https://github.com/aleksey925/agentbox/releases) and install it manually\nor you can run the following commands to install the latest version to `~/.local/bin`:\n\n```bash\nVERSION=$(curl -sL -o /dev/null -w '%{url_effective}' https://github.com/aleksey925/agentbox/releases/latest | sed 's/.*\\/v//')\nOS=$(uname -s | tr '[:upper:]' '[:lower:]')\nARCH=$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/')\ncurl -#L \"https://github.com/aleksey925/agentbox/releases/download/v${VERSION}/agentbox_${VERSION}_${OS}_${ARCH}.tar.gz\" | tar xz -C ~/.local/bin\n```\n\nAlso, you can build it from source:\n\n```bash\ngit clone https://github.com/aleksey925/agentbox.git\ncd agentbox\nmake install  # copies to ~/.local/bin\n```\n\nMake sure `~/.local/bin` is in your PATH:\n\n```bash\nexport PATH=\"$HOME/.local/bin:$PATH\"\n```\n\n### Shell Completions\n\nAgentbox supports shell completions for Bash and Zsh. To enable them, add one of the following\nlines to your shell configuration:\n\n```bash\n# Bash: add to ~/.bashrc\neval \"$(agentbox completion bash)\"\n\n# Zsh: add to ~/.zshrc\neval \"$(agentbox completion zsh)\"\n```\n\nIf you use an alias for agentbox, pass the alias name as the second argument:\n\n```bash\n# For alias \"abox\"\nalias abox=\"agentbox\"\neval \"$(agentbox completion bash abox)\"\n```\n\n## Updating\n\nAgentbox can update itself. Run `agentbox self update \u003cversion\u003e` to update to a specific version,\nor use `agentbox self update \u003ctab\u003e` to choose a version and install it.\n\n## How to Use\n\n```bash\ncd your-project\nagentbox init    # set up sandbox (configure presets on first run) and download agents for first time\nagentbox run     # start sandbox\n```\n\nInside the sandbox, AI agents are available with permissive flags:\n\n```bash\nclaude    # --dangerously-skip-permissions\ncopilot   # --allow-all-paths --allow-all-tools\ncodex     # --full-auto\ngemini    # --yolo\n```\n\nYour project is mounted at `/home/box/app`.\n\n**Other Commands**\n\n| Command                         | Description                       |\n|---------------------------------|-----------------------------------|\n| `agentbox run --build`          | Rebuild and run sandbox           |\n| `agentbox run --build-no-cache` | Full rebuild without cache        |\n| `agentbox ps`                   | List running sandboxes            |\n| `agentbox attach`               | Attach to running sandbox         |\n| `agentbox clean`                | Remove sandbox files from project |\n\n**Managing Agents**\n\nAgent binaries are managed separately from the sandbox:\n\n```bash\nagentbox agent                      # show installed vs latest versions\nagentbox agent update               # update all agents\nagentbox agent update claude        # update specific agent\nagentbox agent use claude 2.0.67    # switch to specific version\n```\n\n### Modular Sandbox Configuration\n\nSandbox configuration is modular — it consists of a core config (`core.*.yml`) plus environment presets \n(like `go.v\u003cx\u003e.yml`) you select during `agentbox init`. Presets mount tool caches from your host into \nthe sandbox, so dependencies aren't re-downloaded on every run.\n\nAvailable presets: `Go`, `Python`.\n\nTo change enabled presets after initial setup, run `agentbox init skeleton`. This will backup\nyour current skeleton to `~/.agentbox/skeleton.backup/` and let you re-configure.\n\n### Customization\n\n\u003e Each project, after initialization, contains a `.agentbox/` directory with Compose files. \n\u003e The CLI automatically discovers all `.yml` files in this directory and merges them when \n\u003e running the sandbox.\n\u003e \n\u003e Only `core.*.yml` and `Dockerfile.agentbox` are required — preset files are optional and can\n\u003e be safely deleted if you don't need them. You can also add your own compose files here.\n\n**`\u003cproject\u003e/.agentbox/local.yml`** — project-specific overrides that are never overwritten by agentbox.\n\n**`~/.agentbox/skeleton/`** — global templates for `agentbox init`. Can be customized, but will\nbe backed up and recreated when running `agentbox init skeleton`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faleksey925%2Fagentbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faleksey925%2Fagentbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faleksey925%2Fagentbox/lists"}