Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/superradcompany/tool-cli/llms.txt

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

Install

curl -fsSL https://cli.tool.store | sh
The shell and PowerShell installers:
  • detect your OS and architecture automatically
  • download the correct pre-built binary from GitHub releases
  • verify the SHA-256 checksum
  • install the binary to ~/.local/bin (macOS/Linux) or %LOCALAPPDATA%\Programs\tool\bin (Windows)
  • offer to add the install directory to your PATH

Verify installation

After install, confirm the binary is on your PATH:
tool --version
If the command is not found, your shell may not have picked up the PATH change yet. Restart your terminal, or source your shell config manually:
source ~/.bashrc   # bash
source ~/.zshrc    # zsh
On Windows, open a new terminal window for the PATH update to take effect.

PATH setup

The installer will prompt you to add the install directory to your PATH. If you skipped that step or used --no-modify-path, add it manually:
export PATH="$HOME/.local/bin:$PATH"
To make the change permanent, add the export line to your shell’s config file (~/.bashrc, ~/.zshrc, ~/.config/fish/config.fish, or the Windows user PATH environment variable).

Installer options

The shell and PowerShell scripts accept options if you run them directly rather than piping:
# Install a specific version
curl -fsSL https://cli.tool.store | sh -s -- --version=0.2.0

# Install to a custom prefix
curl -fsSL https://cli.tool.store | sh -s -- --prefix=/usr/local

# Skip PATH modification prompts
curl -fsSL https://cli.tool.store | sh -s -- --no-modify-path

# Non-interactive install (assume yes to all prompts)
curl -fsSL https://cli.tool.store | sh -s -- --force

Self-update

Update tool-cli to the latest release:
tool self update

Uninstall

Remove the tool-cli binary:
tool self uninstall
This removes the tool binary from your install directory. It does not modify your shell config files.
On macOS and Linux you can also run the installer script with --uninstall to remove the binary:
curl -fsSL https://cli.tool.store | sh -s -- --uninstall

Build docs developers (and LLMs) love