Manual installation
Download the binary for your platform from GitHub Releases:
| Platform | Binary |
|---|---|
| Linux x86_64 | pillbox-linux-x86_64 |
| Linux aarch64 | pillbox-linux-aarch64 |
| macOS arm64 | pillbox-darwin-aarch64 |
| macOS x86_64 | pillbox-darwin-x86_64 |
| Windows x86_64 | pillbox-windows-x86_64.exe |
| Windows aarch64 | pillbox-windows-aarch64.exe |
-
Place the binary on your
PATH.Terminal window chmod +x pillboxmv pillbox ~/.local/bin/Terminal window New-Item -ItemType Directory -Force "$env:LOCALAPPDATA\Programs\pillbox" | Out-NullMove-Item .\pillbox-windows-x86_64.exe "$env:LOCALAPPDATA\Programs\pillbox\pillbox.exe" -
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.
Verify the installation
Section titled “Verify the installation”pillbox statusShows binary path, global database, MCP server, and skill status.
Building from source
Section titled “Building from source”Each component lives in its own repository. Build any of them directly from source.
Binary
Section titled “Binary”Requires Rust 1.75+ and Node.js 20+ — the web UI is embedded at build time.
git clone https://github.com/Kevinsillo/pillboxcd pillboxmake build-full./core/target/release/pillbox mcp install./core/target/release/pillbox skill installOn Windows, build the web UI with pnpm build in webui/, then run cargo build --release in core/.
MCP server
Section titled “MCP server”Builds the Node bundle and installs it to ~/.pillbox/mcp/. Requires Node.js ≥ 18 and pnpm, bun, or npm.
git clone https://github.com/Kevinsillo/pillbox-mcpcd pillbox-mcp./install.shgit clone https://github.com/Kevinsillo/pillbox-mcpcd pillbox-mcp.\install.ps1Then run pillbox mcp install to register it with your AI providers.
Skills, agents, and commands
Section titled “Skills, agents, and commands”git clone https://github.com/Kevinsillo/pillbox-skillscd pillbox-skills./install.shgit clone https://github.com/Kevinsillo/pillbox-skillscd pillbox-skills.\install.ps1Supported platforms
Section titled “Supported platforms”| Platform | Status |
|---|---|
| Linux x86_64 | Supported |
| Linux aarch64 | Supported |
| macOS arm64 (Apple Silicon) | Supported |
| macOS x86_64 | Supported |
| Windows x86_64 | Supported |
| Windows aarch64 | Supported |