Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.tolmo.com/llms.txt

Use this file to discover all available pages before exploring further.

Tolmo runs on macOS and Linux and supports both amd64 and arm64 architectures. Choose the installation method that fits your workflow: Homebrew is the easiest option for interactive use, the install script works on any system without a package manager, and the Debian package integrates with dpkg-based systems.
First, add the Tolmo tap to Homebrew, then install the CLI:
brew tap tolmohq/tolmo https://github.com/tolmohq/tolmo
brew install tolmo
The Homebrew formula installs the Tolmo CLI binary only. It does not automatically modify Claude Code or other coding-agent directories. If you want to use Tolmo as an agent skill, run the following after installation:
tolmo skill install
tolmo skill status

Nightly builds

Nightly builds track the latest development changes and are published automatically from the main branch. Homebrew:
brew install tolmo@nightly
Install script:
curl -fsSL https://tolmo.com/install.sh | sh -s -- --nightly
Nightly builds may be unstable and are not recommended for production use. Use them to preview upcoming features or reproduce bugs against the latest code.

Verify installation

After installing, confirm the CLI is available and check the version:
tolmo --version
You should see the installed version number printed to stdout. If the command is not found, check that the install directory is on your PATH.

Update

Keep the CLI up to date to access the latest features and fixes. Homebrew:
brew upgrade tolmo
Install script: Re-run the install script and it will replace the existing binary with the latest release:
curl -fsSL https://tolmo.com/install.sh | sh