Skip to content

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.

Terminal window
curl -fsSL https://raw.githubusercontent.com/Kevinsillo/pillbox/main/install.sh | bash

The installer:

  1. Detects your platform (Linux/macOS, x86_64/aarch64)
  2. Downloads the pillbox binary from GitHub Releases
  3. Installs it to ~/.local/bin (Linux) or /usr/local/bin (macOS)
  1. Install the MCP server:

    Terminal window
    pillbox mcp install

    Requires Node.js ≥ 18. Downloads the server bundle and registers it with your AI provider.

  2. Install the Pillbox skill:

    Terminal window
    pillbox skill install

    Installs 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.

  3. Install and start the web interface:

    Terminal window
    pillbox serve install
    pillbox serve start

    pillbox serve install registers the HTTP server as a system service and enables autostart on boot. Run pillbox serve start once to start it immediately — on subsequent boots it starts automatically. The UI is then available at http://pillbox.local:4242.

    See Web interface for more.

Install a specific version:

Terminal window
curl -fsSL https://raw.githubusercontent.com/Kevinsillo/pillbox/main/install.sh | bash -s -- --version 0.15.3

Custom install directory:

Terminal window
curl -fsSL https://raw.githubusercontent.com/Kevinsillo/pillbox/main/install.sh | bash -s -- --install-dir /usr/local/bin