tss is a fast, interactive way to search, pick, and connect to your Tailscale peers from the terminal. It installs as tss, and works two ways: an interactive TUI picker, or a one-shot CLI that fuzzy-matches a name and connects you straight away.
brew install berggren/tap/tss- Interactive TUI: Real-time filtering of peers by name or IP, with online/offline status and last-seen times.
- One-shot CLI: Pass a name and connect immediately — with exact, prefix, substring, and fuzzy (typo-tolerant) matching.
- Resilient connections: Connects via Mosh for reliability over flaky networks, automatically falling back to SSH.
- Auto-discovery: Reads your peers from the Tailscale daemon (
tailscale status), including standard macOS install locations.
- A Unix-like OS (macOS, Linux, BSD)
- Tailscale installed and authenticated
- SSH client installed
- Optional: Mosh client installed
brew install berggren/tap/tssThat taps berggren/homebrew-tap and installs a prebuilt binary. To upgrade later:
brew upgrade tssInstall with Go (requires Go 1.24+):
go install github.com/berggren/tss/cmd/tss@latestOr build from source:
git clone https://github.com/berggren/tss.git
cd tss
go build -o tss ./cmd/tss
mv tss /usr/local/bin/Verify it runs:
tss --versionRun tss with no arguments to open the picker. Type to filter, use the arrow keys to select, and press Enter to connect:
tssPass a peer name (or IP) to connect in one shot. tss fuzzy-matches against your peers, so you don't need the exact hostname:
Given a peer named web-server:
tss web-server # exact match — connects to "web-server"
tss web # prefix match — resolves to "web-server" and connects
tss serv # substring match — resolves to "web-server"
tss web-servr # fuzzy match — tolerates the typo, resolves to "web-server"When tss resolves your input to a different name, it tells you before connecting:
$ tss web
Resolved "web" to "web-server" (prefix match)
If the input is ambiguous or matches no online peer, tss falls back to the interactive picker, pre-filled with what you typed — so you can refine the selection instead of guessing.
- DEVELOPER.md — building from source, running tests, the code map, and a walkthrough of how the TUI works.
- MAINTAINER.md — cutting releases and versioning policy.