Skip to content

Instantly share code, notes, and snippets.

@logicx24
Last active February 3, 2026 10:13
Show Gist options
  • Select an option

  • Save logicx24/c4fcb32a3f86f679b27aa4b72794dc5c to your computer and use it in GitHub Desktop.

Select an option

Save logicx24/c4fcb32a3f86f679b27aa4b72794dc5c to your computer and use it in GitHub Desktop.
Tachyon CLI Quick Start

Tachyon CLI Quick Start

1. Install

curl -fsSL https://tachyon.so/install.sh | bash

Requires Python 3.11+. The script installs pipx if needed.

2. Login

tachyon login --invite-code Ow1B924dSGCUrVwWlnoZPw

This opens GitHub for authentication. After authorizing, you'll be prompted to install the Tachyon GitHub App on your repositories.

3. Start a scan

This will run the scan in a background process. It will store state in ~/.tachyon. You can see logs in ~/.tachyon/scans/<id>/daemon.log.

tachyon scan https://github.com/your-org/your-repo

Add --follow to stream logs in real-time. Note: Ctrl+C in this mode will stop the scan.

tachyon scan https://github.com/your-org/your-repo --follow

4. Check status

tachyon status <scan-id>

Other commands

tachyon --help          # See all commands
tachyon doctor          # Check system readiness
tachyon tail <scan-id>  # Stream scan events live

Local data

Scan info and results are cached in ~/.tachyon/. You can browse past and current scans and their outputs there.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment