agentbox
Contain your coding agents (literally)
File Explorer
Download Latest Version (.zip)- prune-actions-artifacts.yml
- publish.yml
- copilot-instructions.md
- icon-256.png
- icon.png
- workspace-skeleton.md
- 00-project-detection.instructions.md
- docker-image.instructions.md
- frontend-bun.instructions.md
- go.instructions.md
- python.instructions.md
- swift.instructions.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- ci.yml
- publish.yml
- copilot-instructions.md
- Makefile
- .gitkeep
- .dockerignore
- .gitignore
- docker-compose.yml
- Dockerfile
- LICENSE
- Makefile
- README.md
- VERSION
# Installation Guide
git clone https://github.com/rcarmo/agentbox
Downloads the entire project code from GitHub to your computer.
cd agentbox
Moves into the project folder you just downloaded.
2. Docker
Easy Recommended- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker run -d agentbox
Runs the built image as an actual container.
docker run -d -e ENABLE_DOCKER=true agentbox
Runs the built image as an actual container.
docker run -d -e ENABLE_DOCKER=true -e ENABLE_SSH=true -p 22:22 agentbox
Runs the built image as an actual container.
docker run -d -e ENABLE_DOCKER=true -e ENABLE_SSH=true -e ENABLE_RDP=true -p 22:22 -p 3389:3389 agentbox:gui
Runs the built image as an actual container.
docker compose up -d
Builds and starts all defined containers (server, database, etc.) at once, in the background.
Pulled directly from this repo's README.
3. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make init-workspace
Compiles the code based on the generated build configuration to produce an executable.
make up
Compiles the code based on the generated build configuration to produce an executable.
make enter-toad # or: make enter-copilot
Compiles the code based on the generated build configuration to produce an executable.
make down
Compiles the code based on the generated build configuration to produce an executable.
make -C ~ toad
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
