Download

hectors code is a Claude-Code-style terminal client with the same chat, models, and modes as the web app, in your terminal. Install it any of four ways. All builds are cross-platform (macOS, Linux, Windows · amd64 + arm64).

A look at hectors code: sign in once, then chat with your own keys, history, and modes right in the terminal.

Homebrew

For macOS and Linux. Installs the signed cask from our tap.

bash
brew install --cask incredico/homebrew-tap/hectorsai

Upgrade later with brew upgrade --cask hectorsai.

Nix

Run it once without installing, straight from our flake:

bash
nix run github:incredico/nur#hectorsai

Or add it to your profile to keep it around:

bash
nix profile install github:incredico/nur#hectorsai

Shell script

For macOS and Linux, with no package manager. Detects your OS and architecture, downloads the matching release, verifies its checksum, and installs the binary.

bash
curl -fsSL https://hectors.ai/install.sh | sh

Pin a version or change the location with environment variables: VERSION=v0.1.0 and BIN_DIR=$HOME/bin. Prefer to read before you run? View the script at /install.sh.

Windows

In PowerShell. Downloads the matching release, verifies its checksum, installs hectorsai.exe, and adds it to your PATH.

powershell
irm https://hectors.ai/install.ps1 | iex

Pin a version or change the location with $env:VERSION="v0.1.0" and $env:BIN_DIR="C:\Tools\hectorsai". Prefer to read before you run? View the script at /install.ps1.

After installing

Sign in once, then start chatting:

bash
hectorsai login
hectorsai

Sign-in uses the same account as the web app, and your saved provider keys and conversation history come with you.

Other options

  • Grab a prebuilt binary for your platform directly from the GitHub releases page.
  • Already have it on a server? Serve the TUI over SSH with hectorsai serve and connect from anywhere.