Installation
Homebrew (Package Manager)
brew tap OrekGames/tapbrew install trackShell completions for bash, zsh, and fish are installed automatically.
Native Install
macOS and Linux:
curl -fsSL https://raw.githubusercontent.com/OrekGames/track-cli/main/scripts/install.sh | bashWindows PowerShell:
irm https://raw.githubusercontent.com/OrekGames/track-cli/main/scripts/install.ps1 | iexThe native installers download the latest GitHub release archive, verify it with
checksums-sha256.txt, install track into a user-owned directory, and install
shell completions where supported.
Override the install directory with TRACK_INSTALL_DIR, or set
TRACK_SKIP_PATH=1 to skip shell startup file or user PATH changes.
Pin a release with TRACK_VERSION:
curl -fsSL https://raw.githubusercontent.com/OrekGames/track-cli/v1.15.1/scripts/install.sh | TRACK_VERSION=1.15.1 bash$env:TRACK_VERSION = "1.15.1"; irm https://raw.githubusercontent.com/OrekGames/track-cli/v1.15.1/scripts/install.ps1 | iexAgent skills are optional and installed explicitly after the CLI is available.
They install the bundled track reference for Claude Code, GitHub Copilot,
Cursor, and Gemini CLI:
track init --skillsFrom Source
cargo install --path crates/trackDownload a Binary
Download prebuilt binaries from the latest release. Archives are available for macOS (arm64, x86_64), Linux (x86_64, arm64), and Windows (x86_64, arm64).
Shell completions
Generate completions for your shell:
track completions bash > track.bashtrack completions zsh > _tracktrack completions fish > track.fish(Homebrew installs completions for you automatically.)