A curated set of modern CLI/TUI tools and AI coding assistants in a container. Batteries included.
For developers who live in the terminal but need to work across multiple platforms and devices.
squarebox packages a complete terminal-based development environment into a single container (Docker; Podman experimental): modern CLI tools, AI coding assistants, language SDKs, and an opinionated set of shell aliases. Run the same box anywhere (desktop, VPS, or Codespace) and SSH in from your laptop, tablet, or phone (please don't).
The goal is to make modern terminal tooling easy and accessible. One-line install, interactive first-run setup, sensible defaults (thanks omarchy).
Preparing an existing installation for v1.1? Read the migration guide and changelog.
(Actual setup may involve more staring at the screen.)
- Docker or Podman (experimental — see one-line install below if you don't have either)
- Git - on Windows, install Git for Windows
The installer auto-detects which runtime is available. If both are installed, it
asks which to use. Override with SQUAREBOX_RUNTIME=docker or
SQUAREBOX_RUNTIME=podman.
Podman (Experimental): Docker is the primary tested runtime; Podman may have rough edges around volume mounts, SSH agent forwarding, or rebuild flows. The rootless adapter maps the host user to the image's
devaccount and uses--security-opt label=disable: host SELinux labels are left untouched, while SELinux container separation is disabled for this development Box. Please file an issue if you hit a runtime-specific edge.
Don't have Docker or Podman? One-line install
macOS (via Homebrew):
brew install --cask docker-desktop
Linux (official convenience script - inspect it first at get.docker.com):
curl -fsSL https://get.docker.com | sh && sudo usermod -aG docker $USER
Log out and back in (or run newgrp docker) so your shell picks up the new group.
Windows (via winget, in PowerShell 7+):
winget install --id Docker.DockerDesktop -e
On macOS and Windows, start Docker Desktop once after install so the daemon is running before you continue.
These commands install squarebox and drop you into the container (if possible).
By default they pull a prebuilt image from GHCR — no local Docker build, no
build toolchain — then clone the repo into ~/squarebox for the config files
and the sqrbx helper commands. On first login, a setup script runs
automatically to configure git (pulling your name and email from the host's
global git config if available), optionally sign in to GitHub CLI, your choice
of AI coding assistant, and language SDKs.
Stable
curl -fsSL https://github.com/SquareWaveSystems/squarebox/releases/latest/download/install.sh | bash
Edge
curl -fsSL https://github.com/SquareWaveSystems/squarebox/releases/latest/download/install.sh | bash -s -- --edge
Stable resolves the latest published GitHub Release and pulls the immutable
image digest recorded in its release.json. Raw Git tags are not installable
stable releases. An explicit SQUAREBOX_TAG=v… resolves that published Release
and its matching source revision. Edge builds the latest commit on main. To
build a published Release from source instead of pulling, pass --build.
If the install fails or you want to see the full build/pull and git output,
re-run with --verbose.
Advanced install options (flags & environment variables)
Flags: --build (build from source), --edge (latest main), --adopt
(one-time migration of a legacy installation), and --verbose.
| Variable | Default | Purpose |
|---|---|---|
SQUAREBOX_DIR |
~/squarebox |
Install location (repo + workspace). Point at durable storage on hosts where $HOME is volatile — e.g. Unraid /mnt/user/appdata/squarebox. |
SQUAREBOX_WORKSPACE |
$SQUAREBOX_DIR/workspace |
Host path mounted as /workspace. |
SQUAREBOX_TAG |
latest published stable | Published Release to install (for example v1.1.0). Tags use vMAJOR.MINOR.PATCH[-prerelease]; build metadata is not published. |
SQUAREBOX_IMAGE |
value from release.json |
Optional image-repository override for development/testing. |
SQUAREBOX_BUILD |
0 |
1 is equivalent to --build. |
PUID / PGID |
invoking Linux user | Host uid/gid that should own bind-mounted files. Docker/rootful hosts may override these (Unraid/NAS: 99 / 100); rootless Podman requires the invoking host identity. |
SQUAREBOX_RUNTIME |
auto | Force docker or podman. |
SQUAREBOX_HOME_VOLUME |
squarebox-home |
Name of the named volume backing /home/dev. |
SQUAREBOX_EDGE |
0 |
1 is equivalent to --edge. |
Non-interactive provisioning — set any of these to a comma-separated list to
pre-select a toolset and install it without prompts (handy for servers and
scripted installs). Values use the same keys as sqrbx-setup:
| Variable | Selects |
|---|---|
SQUAREBOX_AI |
AI assistants (claude,copilot,gemini,codex,opencode,pi,paseo) |
SQUAREBOX_SDKS |
language SDKs (node,python,go,dotnet,rust) |
SQUAREBOX_EDITORS |
editors (micro,edit,fresh,helix,nvim; Helix launches as hx) |
SQUAREBOX_TUIS |
TUI tools (lazygit,gh-dash,yazi) |
SQUAREBOX_MULTIPLEXERS |
multiplexers (tmux,zellij) |
SQUAREBOX_GIT_NAME / SQUAREBOX_GIT_EMAIL |
git identity (when no host gitconfig) |
Example:
curl -fsSL https://github.com/SquareWaveSystems/squarebox/releases/latest/download/install.sh \
| env SQUAREBOX_AI=claude SQUAREBOX_SDKS=node,python bashEach successful v1.1 install records its effective lifecycle settings at
<SQUAREBOX_DIR>/.squarebox/install-state (mode 0600 on POSIX; inherited
current-user install-directory ACL on native Windows). Rebuild and uninstall
parse this file as data; they do not reconstruct defaults or source it as shell
code. Release pulls record an immutable image digest; source/edge builds record
their local image ID/reference. Existing pre-v1.1 checkouts require a one-time
reviewed --adopt/-Adopt.
Windows (PowerShell 7+)
Windows users can install directly from PowerShell - no Git Bash required.
This handles Release resolution, pull/build, Box creation, and PowerShell functions
(sqrbx, squarebox, etc.) natively:
irm https://github.com/SquareWaveSystems/squarebox/releases/latest/download/install.ps1 | iex
Once installed, you can re-run or pass flags from the local copy:
.\install.ps1 # re-install / update
.\install.ps1 -Edge # latest main instead of latest release
.\install.ps1 -Build # build the resolved source locally
.\install.ps1 -Adopt # migrate a legacy pre-v1.1 installation
Note:
irm ... | iexdoes not support flags - PowerShell interprets them as arguments toInvoke-Expression, not the script. Use the local.\install.ps1form for-Edge,-Build, or-Adopt. PowerShell streams runtime and Git failures directly by default.
Windows adapter boundary: Keep install, rebuild, and uninstall on the adapter that created the v1.1 Install identity. Native PowerShell and Git Bash use the same
FORMAT=1field names, but their native path and shell-profile values are not interchangeable; cross-adapter state consumption is rejected. Native PowerShell mounts%USERPROFILE%\.sshread-only when it exists and does not forwardSSH_AUTH_SOCK. The separate Git Bash adapter supports SSH agent-socket forwarding with its Bash lifecycle.
squarebox # or: sqrbx
These are shell functions wrapping docker start -ai squarebox (or
podman start -ai squarebox), added automatically for Bash, Zsh, and
PowerShell 7+.
The Box suspends on exit and resumes on start, keeping its current filesystem
between those starts. Box replacement discards that filesystem; selected
Box-tier packages are reconciled automatically in the replacement. Your
code lives on the host at ~/squarebox/workspace (bind-mounted), and per-user
state — shell history, GitHub CLI auth, claude-code data, mise toolchains —
lives in a named Docker volume (squarebox-home) that survives replacement.
Image-managed config is refreshed safely into that Managed home at startup;
desktop source builds may instead use explicit managed bind mounts.
The curl | bash installer is built around an interactive desktop shell. To run
squarebox as a persistent server container you attach into on demand — on
Unraid, a NAS, or a VPS — use the prebuilt image directly with the bundled
docker-compose.yml:
cp .env.example .env # set PUID/PGID, the workspace path, and a tag
docker compose up -d
docker compose exec -u dev squarebox bash
Set PUID/PGID in .env to match your host so files squarebox writes to the
workspace mount are owned correctly — on Unraid that's 99 / 100. The -u dev
on exec is needed because the container starts as root (to apply PUID/PGID)
then drops to the dev user; exec bypasses that, so -u dev lands you where
you want to be.
Per-user state (shell history, gh auth, mise toolchains, AI-assistant state)
lives in the squarebox-home named volume and survives image updates; your code
lives on the host at the workspace path. To update, pull a newer tag and
docker compose up -d. The published image is multi-arch (amd64 + arm64), so it
also runs on ARM NAS/VPS hosts.
Unraid note: the host's
/rootis tmpfs and wiped on reboot, so a rawcurl | bashinstall there won't persist. Either use compose (above) with the workspace path under/mnt/user/appdata, or run the installer withSQUAREBOX_DIRandSQUAREBOX_WORKSPACEpointed at appdata.
| Name | Language | Description |
|---|---|---|
| bat | Rust | Cat clone with syntax highlighting |
| curl | C | URL data transfer |
| delta | Rust | Syntax-highlighting pager for git diffs |
| difftastic | Rust | Syntax-aware structural diff tool (difft) |
| eza | Rust | Modern ls replacement |
| fd | Rust | Fast, user-friendly find alternative |
| fzf | Go | Fuzzy finder |
| gh | Go | GitHub CLI |
| glow | Go | Terminal markdown renderer |
| gum | Go | Tool for shell scripts and dotfiles |
| jq | C | JSON processor |
| just | Rust | Command runner / modern make alternative |
| mise | Rust | Polyglot tool-version and SDK manager |
| nano | C | Default text editor |
| ripgrep | Rust | Fast recursive grep |
| starship | Rust | Cross-shell prompt |
| xh | Rust | Friendly HTTP client |
| yq | Go | YAML/JSON/XML processor |
| zoxide | Rust | Smarter cd command |
Selected during first-run setup. Choose any combination, all, or none.
Selections are saved under /workspace/.squarebox (on the host workspace bind
mount) and reused automatically on container rebuilds. They can also be
pre-selected non-interactively via the SQUAREBOX_AI/SQUAREBOX_SDKS/… env vars
(see Advanced install options above).
| Name | Language | Description |
|---|---|---|
| Claude Code | TypeScript | AI coding assistant |
| GitHub Copilot CLI | TypeScript | Supported GitHub Copilot terminal client (copilot) * |
| Google Gemini CLI | TypeScript | Google Gemini in the terminal * |
| OpenAI Codex CLI | Rust | OpenAI Codex in the terminal * |
| opencode | TypeScript/Bun | AI coding TUI |
| Pi Coding Agent | TypeScript | Minimal terminal coding harness (Earendil) * |
| Paseo | TypeScript | Remote control for AI CLI agents * |
* Requires Node.js (auto-installed if needed).
Nano is always available and remains the fallback default unless you choose an installed editor instead.
| Name | Language | Description |
|---|---|---|
| micro | Go | Modern, intuitive terminal editor |
| edit | Rust | Terminal text editor (Microsoft) |
| fresh | Rust | Modern terminal text editor |
| helix | Rust | Modal editor (Kakoune-inspired) |
| nvim | C/Lua | Neovim |
Selecting nvim offers to install the LazyVim starter config to ~/.config/nvim, turning Neovim into a preconfigured IDE. Plugins sync on first launch and persist in the squarebox-home volume. A Nerd Font in your terminal is recommended for icons; the starter is skipped if ~/.config/nvim already exists, so your own config is never overwritten.
Installed during first-run setup. Choose any combination:
| Name | Language | Description |
|---|---|---|
| lazygit | Go | Git terminal UI |
| gh-dash | Go | GitHub dashboard for the terminal |
| yazi | Rust | Terminal file manager |
Installed during first-run setup. Choose either, both, or neither:
| Name | Description |
|---|---|
| tmux | Classic terminal multiplexer |
| zellij | Friendly terminal workspace |
By default, squarebox uses Bash. During first-run setup you can opt in to Zsh or Fish instead.
Zsh installs:
| Name | Description |
|---|---|
| zsh | Z shell (via apt) |
| Oh My Zsh | Community framework for managing zsh config |
| zsh-autosuggestions | Fish-like history-based suggestions |
| zsh-syntax-highlighting | Inline command syntax highlighting |
The generated ~/.zshrc mirrors the default bashrc — same aliases, starship
prompt, zoxide, and AI/editor/SDK sourcing — layered on top of Oh My Zsh.
Fish installs fish (via apt), which ships with
autosuggestions and syntax highlighting built in. The generated
~/.config/fish/config.fish mirrors the default bashrc in fish-native syntax;
AI/editor/TUI/SDK selections are translated from their bash files into
~/.config/fish/conf.d/squarebox-selections.fish at setup time.
Experimental: the marker file
~/.squarebox-use-zsh(or~/.squarebox-use-fish) causes~/.bashrctoexecthe chosen shell on every interactive login, so the next shell start picks up the new shell. SetSQUAREBOX_NO_ZSH=1orSQUAREBOX_NO_FISH=1to force bash for a single session, or re-runsqrbx-setup shellto switch back permanently. Tooling is primarily tested against bash, so a few edge cases may need polish — please file an issue if you hit one. SDK shims are wired into all three shells viamise activate {bash,zsh,fish}.
All SDKs are managed by mise — a single
polyglot version manager. Selections are written to ~/.config/mise/config.toml
and mise activate wires up shims and PATH automatically across bash, zsh,
and fish.
| SDK | mise tool |
|---|---|
| Node.js | node |
| Python | python |
| Go | go |
| .NET | dotnet |
| Rust | rust |
Run sqrbx-help inside the container for a one-screen overview of the
sqrbx-* commands, Bash's fzf (Ctrl+R/Ctrl+T/Alt+C/**<Tab>) bindings,
and zoxide (z/zi) navigation. Zsh and Fish retain the fzf, ff, and
eff commands but do not claim those Bash-specific bindings. The MOTD points
to the help command on every shell start.
Re-run the first-run wizard at any time from inside the container with
sqrbx-setup. With no arguments it walks every section; pass one or more
section names to reconfigure just those: git, github, ai, editors,
tuis, multiplexers, sdks, shell. sqrbx-setup --list shows your
current selections and sqrbx-setup --help the usage.
| Alias | Command | Description |
|---|---|---|
ls |
eza --icons |
Modern ls with icons |
ll |
eza -la --icons |
Long listing with icons |
lsa |
ls -a (resolves to eza --icons -a) |
List all including hidden files |
lt |
eza --tree --level=2 --long --icons --git |
Tree view with git status |
lta |
lt -a |
Tree view including hidden files |
cat |
bat --paging=never |
Syntax-highlighted cat |
ff |
fzf --preview 'bat ...' |
Fuzzy find with preview |
eff |
$EDITOR "$(ff)" |
Fuzzy find and edit |
.. |
cd .. |
Go up one directory |
... |
cd ../.. |
Go up two directories |
.... |
cd ../../.. |
Go up three directories |
c |
first selected AI tool | Launch selected AI assistant |
g |
git |
Git shorthand |
gcm |
git commit -m |
Commit with message |
gcam |
git commit -a -m |
Stage all and commit |
gcad |
git commit -a --amend |
Stage all and amend |
lg |
lazygit |
Launch lazygit (if installed) |
claude-yolo |
claude --dangerously-skip-permissions |
Claude without prompts |
opencode-yolo |
opencode --dangerously-skip-permissions |
OpenCode without prompts |
Both tmux and zellij ship with Omarchy-inspired defaults and matching keybindings:
| Feature | Tmux | Zellij |
|---|---|---|
| Config path | ~/.config/tmux/tmux.conf |
~/.config/zellij/config.kdl |
| Prefix | Ctrl+Space |
Ctrl+Space (Tmux mode) |
| Pane navigation | Ctrl+Alt+Arrow |
Ctrl+Alt+Arrow |
| Pane resizing | Ctrl+Alt+Shift+Arrow |
Ctrl+Alt+Shift+Arrow |
| Tab/window select | Alt+1-9 |
Alt+1-9 |
| Tab/window cycle | Alt+Left/Right |
Alt+Left/Right |
| Split horizontal | prefix h |
prefix h |
| Split vertical | prefix v |
prefix v |
| Scrollback | 50,000 lines | 50,000 lines |
| Copy mode | Vi keys | Vi-style scroll |
| Theme | Blue accent, top bar | Blue accent, compact layout |
sqrbx-update
Checks installed registered tools against upstream releases. A dry run never
installs absent optional tools; --apply updates the installed set only. Naming
an absent tool explicitly is an install request. Failures are aggregated,
reported with preserved logs, and return nonzero. Managed-home tools can advance
in place. Image-tier tools advance only through a newer Squarebox Candidate and
Box rebuild unless the current Candidate already authorizes the exact release
asset; an unvetted upstream release is reported but never advertised as applyable.
Broken version probes and incomplete Yazi, Helix, or Neovim output sets are
reported as repairs; a failed post-install verification restores prior managed
outputs.
sqrbx-update # show available updates (dry run)
sqrbx-update --apply # update all installed registered tools
sqrbx-update lazygit # update, or explicitly install, one tool
sqrbx-update --list # list all tools and current versions
sqrbx-rebuild
Resolves the requested published Release, pulls its immutable image digest, and
replaces the Box. Installations created with --build retain that choice and
build the matching source instead.
Your code in ~/squarebox/workspace is safe since it lives on the host. Most
in-container state (shell history, GitHub auth, SDK toolchains) survives
because /home/dev is backed by the squarebox-home named Docker volume.
Manually installed apt packages are still lost, since the image is rebuilt.
| Survives | Reconciled or lost |
|---|---|
| Workspace code on the host | Selected tmux/Zsh/Fish packages are reconciled into the new Box |
| Managed home: history, auth, assistant data, mise toolchains | Manually installed, unselected APT packages are lost |
Selection state in /workspace/.squarebox |
Image-tier binaries are replaced by the Candidate digest |
| Host SSH access exposed by the selected lifecycle adapter | Image-managed dotfiles are safely refreshed |
Use sqrbx-uninstall --purge to wipe recorded state. Do not remove a volume by
name alone; lifecycle commands verify the Install identity and ownership
labels before deleting a Managed resource.
Tip: Use
sqrbx-updatefrom inside the container for Managed-home tools. Usesqrbx-rebuildfor image-tier binaries, new APT packages, base-tool changes, or any upstream release the current Candidate cannot authorize.
The reviewed amd64 v1.1 Candidate is approximately 900 MB in
docker image ls (about 638 MB of files in a running Box). Registry transfer,
shared local layers, and unpacked filesystem size are different measurements;
inspect the exact Release on your platform.
First-run selections add to that:
| Component | Adds |
|---|---|
| Claude Code | ~300 MB |
| GitHub Copilot CLI | ~50 MB |
| Google Gemini CLI | ~50 MB |
| OpenAI Codex CLI | ~50 MB |
| OpenCode | ~30 MB |
| Pi Coding Agent | ~50 MB |
| Paseo | Varies by npm release |
| lazygit / gh-dash / yazi | ~10 / ~10 / ~10 MB |
| micro / edit | ~12 / ~7 MB |
| fresh / nvim | ~10 / ~45 MB |
| Helix | Varies by release (binary plus runtime files) |
| Node.js | ~90 MB |
| Python | ~50 MB |
| Go | ~500 MB |
| .NET | ~800 MB |
Optional sizes are approximate and change independently of Squarebox Releases.
Direct-download image-tier tools are pinned and fail closed against repository SHA-256 checksums. Published image bytes are immutable by digest; rebuilding later is not guaranteed to reproduce them because the Ubuntu base and APT repositories are external mutable inputs.
Optional tools selected during first-run setup (editors, TUIs, OpenCode,
zellij) install the latest upstream release at the time you run setup. For
GitHub-hosted artifacts, Squarebox resolves one exact release tag and asset
name, requires GitHub's SHA-256 release-asset digest, and verifies the bytes
before extraction. Missing or mismatched digest metadata fails closed. These
tools remain Managed-home selections rather than image-build pins. Setup
installs an absent selection; sqrbx-update --apply is the explicit path for
updating an already observed registered tool to a newer authorized release.
SDKs (Node, Python, Go, .NET, Rust) are installed by mise, which is itself a Dockerfile-tier pinned binary. mise downloads each SDK toolchain from its upstream over HTTPS using its own integrity checks. npm-based AI tools (Copilot CLI, Gemini CLI, Codex CLI, Pi, and Paseo) use npm's built-in integrity verification.
For the full trust model (what install.sh does on your machine, how each
layer is verified, and how to inspect the script before running it) see
SECURITY.md.
Open this repo in VS Code with the
Dev Containers extension,
or launch it in GitHub Codespaces.
The included .devcontainer/devcontainer.json builds the full squarebox image
automatically and mounts the cloned repository at /workspace, matching setup
and Selection state.
The interactive first-run wizard can't run in devcontainer mode (no TTY at
create time), so a default toolset — Claude Code + Node.js — is installed
non-interactively by postCreateCommand. Override the defaults with these
container environment variables (set to an empty string to opt out of a tier):
| Variable | Default | Selects |
|---|---|---|
SQUAREBOX_DC_AI |
claude |
AI assistants (claude,copilot,gemini,codex,opencode,pi,paseo) |
SQUAREBOX_DC_SDKS |
node |
SDKs (node,python,go,dotnet,rust) |
SQUAREBOX_DC_EDITORS |
(none) | Editors (micro,edit,fresh,helix,nvim; Helix launches as hx) |
SQUAREBOX_DC_TUIS |
(none) | TUI tools (lazygit,gh-dash,yazi) |
To add or change tools after the fact, run sqrbx-setup from the integrated
terminal.
You can also attach to a running codespace directly from your local terminal
using gh codespace ssh.
sqrbx-uninstall
Removes the recorded Box, owned image reference, and shell integration but keeps
the install directory/Workspace and Managed-home volume
(shell history, gh auth, mise toolchains) so your code and per-user state are
safe by default. Pass --purge to remove the Managed home and recorded install
directory. The default Workspace nested inside that directory is removed with
it; a custom external Workspace is always preserved:
sqrbx-uninstall --purge
A second confirmation is required if the recorded Workspace is non-empty.
Pass -y (or -Yes on PowerShell) to skip all prompts for scripting.
Idempotent for a valid Install identity. Legacy resources require --adopt;
purging an adopted, unlabeled volume additionally requires --force.
Windows (PowerShell 7+):
sqrbx-uninstall # keep ~/squarebox
sqrbx-uninstall -Purge # also remove ~/squarebox
sqrbx-uninstall -Yes # skip confirmations
Broken-state recovery (e.g. shell functions are missing, or after partial install): run the script matching the adapter that created the Install identity directly from the install directory. PowerShell and Git Bash lifecycle state is not cross-consumed:
~/squarebox/uninstall.sh # Linux / macOS / Git Bash
~/squarebox/uninstall.ps1 # Windows PowerShell
Start a new shell afterwards (or exec bash / exec zsh) so the sqrbx and
squarebox functions are dropped from the current session.
squarebox is meant to be a starting point, not a finished product. Fork it,
swap out tools, add your own dotfiles, change the theme - build the dev
environment that fits the way you work. The Dockerfile is intentionally
straightforward and the tool registry (scripts/lib/tools.yaml) makes it easy
to add or remove tools. Use it as a base, take what's useful, and make it yours.