Quick install
The one-line installer downloads and places the pillbox binary on your PATH. The MCP server and agent skill must be installed afterwards — they are not included in the one-liner.
curl -fsSL https://raw.githubusercontent.com/Kevinsillo/pillbox/main/install.sh | bashThe installer:
- Detects your platform (Linux/macOS, x86_64/aarch64)
- Downloads the
pillboxbinary from GitHub Releases - Installs it to
~/.local/bin(Linux) or/usr/local/bin(macOS)
Run in PowerShell:
irm https://raw.githubusercontent.com/Kevinsillo/pillbox/main/install.ps1 | iexThe installer:
- Detects your architecture (x86_64/aarch64)
- Downloads the
pillboxbinary from GitHub Releases - Installs it to
%LOCALAPPDATA%\Programs\pillbox - Adds the install directory to your user
PATH(no Administrator needed)
You may need to open a new terminal for the updated PATH to take effect.
After installing the binary
Section titled “After installing the binary”-
Install the MCP server:
Terminal window pillbox mcp installRequires Node.js ≥ 18. Downloads the server bundle and registers it with your AI provider.
-
Install the Pillbox skill:
Terminal window pillbox skill installInstalls the Pillbox skill to your provider’s global config folder (
~/.claude/skills/pillbox/for Claude Code,~/.config/opencode/skill/pillbox/for OpenCode). The installer will also ask whether you want to install the SDD skill, agents, and commands. -
Install and start the web interface:
Terminal window pillbox serve installpillbox serve startpillbox serve installregisters the HTTP server as a system service and enables autostart on boot. Runpillbox serve startonce to start it immediately — on subsequent boots it starts automatically. The UI is then available athttp://pillbox.local:4242.See Web interface for more.
Options
Section titled “Options”Install a specific version:
curl -fsSL https://raw.githubusercontent.com/Kevinsillo/pillbox/main/install.sh | bash -s -- --version 0.15.3Custom install directory:
curl -fsSL https://raw.githubusercontent.com/Kevinsillo/pillbox/main/install.sh | bash -s -- --install-dir /usr/local/binInstall a specific version or use a custom directory with environment variables:
$env:PILLBOX_VERSION = '0.15.3'$env:PILLBOX_INSTALL_DIR = 'C:\Tools\pillbox'irm https://raw.githubusercontent.com/Kevinsillo/pillbox/main/install.ps1 | iex