Per-identity Tailscale networking for parallel sessions on a single Mac
Project description
tailctl
Per-identity Tailscale networking for parallel sessions on a single Mac.
tailctl gives each process (e.g. a Claude Code session in its own Ghostty window)
its own Tailscale identity — a private, headless userspace tailscaled with a
per-identity SOCKS5/HTTP proxy and localhost port-forwards — instead of switching
the machine-global Tailscale account. Many identities run at once, and the GUI
Tailscale app (the browser's default tailnet) is never touched. No FIFO queue, no
shared network, no flapping.
Agent traffic is opted in per command via proxy env vars (tailctl run) or stable
localhost forwards for native-TCP clients (ClickHouse, Postgres, …).
No always-on daemon beyond the per-identity tailscaled instances. Single-laptop scope.
Status
Working prototype — macOS-only, single-laptop scope.
Install
Requires macOS, Python 3.11+, and the Homebrew Tailscale daemon (see Requirements).
brew install tailscale
pipx install tailctl # or: pip install tailctl
Or from source:
brew install tailscale
git clone https://github.com/DRYCodeWorks/tailctl && cd tailctl
python3 -m venv .venv && .venv/bin/pip install -e .
ln -sf "$PWD/.venv/bin/tailctl" ~/.local/bin/tailctl # put it on PATH
Quick view
tailctl init # scaffold ~/.tailctl/profiles.yaml
tailctl doctor # validate config + probe daemon + verify accounts
tailctl bootstrap <name> --tailnet <t> [--exit-node <e>] [--port-forward svc=host:port]
# onboard a NEW tailnet: discovers account_id,
# appends a profile (preserving comments), prints
# the key steps (mint in console -> store in BWS)
tailctl up acme-dev # spawn a userspace tailscaled for the profile
# (first time: prints a one-time auth URL)
tailctl run acme-dev -- curl http://service.internal # route a command via that identity
tailctl run acme-dev -- clickhouse-client --host 127.0.0.1 --port $CLICKHOUSE_ADDR
tailctl ps # list running instances + their proxy ports/forwards
tailctl down acme-dev # release (refcount--); stops the daemon at zero
run sets ALL_PROXY/HTTPS_PROXY/HTTP_PROXY (+ NO_PROXY) so proxy-aware
clients route through the identity, and exports <SERVICE>_ADDR=127.0.0.1:<port>
for each configured port_forward so native-TCP clients connect to localhost.
profiles.yaml
default: acme-dev
tailscaled_binary: /opt/homebrew/opt/tailscale/bin/tailscaled
profiles:
acme-dev:
account_id: a2c4
tailnet: acme.example.ts.net
exit_node: tailscale-subnet-router-development
accept_routes: true
auth_key_env: ACME_TS_AUTHKEY # optional: env var holding a Tailscale
# auth key (from BWS) for non-interactive
# first login — no browser URL
port_forwards:
- service: clickhouse # exported as CLICKHOUSE_ADDR
remote_host: 100.64.0.10
remote_port: 9000
Authentication
Each profile is a distinct device on its tailnet, authenticated once — the
login persists in the profile's statedir and is reused on every later up/run
(teardown never logs out). Two ways to do that one-time login:
- Auth key (recommended): set
auth_key_envto an env var holding a Tailscale auth key (minted in the tailnet's admin console, stored in BWS). Firstuplogs in non-interactively — no browser. - Interactive: with no auth key, the first
upprints a login URL to open once.
Profiles that share an account but differ by exit node (e.g. Acme dev/staging/prod) are separate profiles → separate nodes → one auth each.
Requirements
- macOS
- Homebrew Tailscale for the userspace daemon:
brew install tailscale(coexists with the GUI Tailscale.app, which keeps the browser's default tailnet) - Python 3.11+
- Each profile's Tailscale account authenticated once per profile on first
up
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tailctl-0.1.0.tar.gz.
File metadata
- Download URL: tailctl-0.1.0.tar.gz
- Upload date:
- Size: 52.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1eb1d7284bda1a82ed6ec8d014db3ec2a7b22f29e01d931dc6b0f9adc72341c2
|
|
| MD5 |
d2e1f86afb87a4e2190c19d5c25afc15
|
|
| BLAKE2b-256 |
6a0352b84ee70c46d1ee02c6cda7dbf844fa625491da97d1a063baa3524b764f
|
File details
Details for the file tailctl-0.1.0-py3-none-any.whl.
File metadata
- Download URL: tailctl-0.1.0-py3-none-any.whl
- Upload date:
- Size: 40.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4e8e8b838acc51b8ad8725b2877af764392960d5cdb145a0111db68fb3872d5
|
|
| MD5 |
49a3dbae71eaf3b616bb9e68cd3280bd
|
|
| BLAKE2b-256 |
0659ca7527c0f21194e5fe37e2eb059a8c44746145db004ac88f74cd7559166b
|