Installation
Prerequisites
Section titled “Prerequisites”- Docker — jackin’ uses Docker to create isolated containers. Make sure Docker is installed and the Docker daemon is running.
- macOS or Linux — jackin’ currently supports macOS and Linux. Windows support via WSL2 is possible but untested.
Install jackin’
Section titled “Install jackin’”The easiest way to install on macOS or Linux is via Homebrew. The Homebrew formulae are maintained in the jackin-project/homebrew-tap repository.
brew tap jackin-project/tap
# Active early-development channelbrew install jackin@previewcargo install --git https://github.com/jackin-project/jackin.gitVerify installation
Section titled “Verify installation”jackin --versionYou should see the jackin’ version and the banner:
jackin 0.6.0-devDocker setup
Section titled “Docker setup”jackin’ requires Docker to be running. Verify with:
docker infoWhat gets installed
Section titled “What gets installed”jackin’ installs the host CLI plus the matching in-container runtime. Homebrew installs the jackin-capsule Linux binary beside the CLI so the first agent load does not need an extra GitHub download. Source installs can still fetch or build that runtime on first use.
When you first load an agent, jackin’ will:
- Pull the
constructimage — the shared Debian-based base image every agent extends - Fetch the role repository — cached locally so subsequent loads of the same role do not re-clone
- Build a derived image — layers the role’s tools and the agent runtime on top of the
construct - Create a per-agent
Dockernetwork — for isolation between agents
Subsequent loads of the same role are typically fast: Docker’s layer cache is reused, the role-repo cache is reused, and only changed layers rebuild. Pass --rebuild when you want jackin’ to refresh the agent-runtime install layer (for example, to pick up a newer agent release).
Next steps
Section titled “Next steps”Ready to go? Head to the Quick Start to load your first agent.