Installation

The Tektii CLI allows you to manage strategies, versions, scenarios, and configurations from your terminal.

Quick Install

macOS / Linux

curl -fsSL https://releases.tektii.com/cli/install.sh | sh

Windows (WSL)

Install via Windows Subsystem for Linux using the same command as Linux:

curl -fsSL https://releases.tektii.com/cli/install.sh | sh

From Source

If you have the Rust toolchain installed, you can build from source:

cargo install tektii-cli

This requires:

  • Rust 1.75 or later
  • Cargo (included with Rust)

Verify Installation

After installation, verify the CLI is working:

# Check version
tektii --version

# View help
tektii --help

You should see output like:

tektii 0.1.0

Next Steps

Once installed, configure the CLI with your API key:

  1. Get an API key from Settings → API Keys
  2. Set the environment variable:
export TEKTII_API_KEY="your-api-key"
  1. Test the connection:
tektii strategy list

Continue to Authentication for more details on configuring your credentials.