Point it at your project.
Run one command. Your repository opens in a focused workspace in your browser.
$ tachyon ~/your-projectYour local workspace for reviewing agent-written code. Read the diff, trace the context, and know exactly what you’re shipping.
$ tachyon ~/your-projectimport { db } from "../db";export async function getSession(token: string) { return db.sessions.findUnique({ const session = await db.sessions.findUnique({ where: { token }, }); if (!session) return null; if (session.expiresAt < new Date()) return null; return session;}↳ Take a look around. Select a file, switch the diff, or mark it reviewed.
A new tool. Your same workflow.
01 / THE WORKFLOW
Your agent moves fast. Tachyon gives you the space to understand what changed, why it matters, and what comes next.
Run one command. Your repository opens in a focused workspace in your browser.
$ tachyon ~/your-projectChoose a worktree or branch. Get a clear view of the changed files and the diff that matters.
Trace the code, walk through each change, and mark the exact file versions you’ve reviewed.
02 / BUILT FOR READING CODE
The tools you reach for in a review, together in one quiet workspace.
Fuzzy file search, symbols, and project-wide search keep the next answer a few keystrokes away.
Built for repositories big and smallJump to definitions, find references, and trace callers with optional local language servers.
Context beyond the lines that changedRead your code locally, without an account or telemetry. A dedicated review space that leaves your source files alone.
Your workspace, under your control03 / UNDER THE HOOD
One Go binary. Fast search. A workspace that gets out of your way and lets your machine get on with everything else.
Base memory usage
Flask benchmark · server RSSTo index the Linux kernel
95,710 files · published benchmarkEverything you need to read
No runtime dependencies| Repository | Files | Index | Fuzzy search | Memory |
|---|---|---|---|---|
| Flask | 235 | 1 ms | 0.8 ms | 16 MB |
| Redis | 1,855 | 13 ms | 1.0 ms | 17 MB |
| React | 7,178 | 52 ms | 2.7 ms | 21 MB |
| Kubernetes | 25,926 | 150 ms | 13.5 ms | 30 MB |
| Linux kernel | 95,710 | 370 ms | 6.0 ms | 55 MB |
04 / GET STARTED
Install Tachyon, open your project, and see what your agents have been up to.
curl -fsSL https://www.tachyon.run/install.sh | bashDetects your platform, verifies the download, and installs to ~/.local/bin. No account needed.
$ tachyon ~/your-project05 / A FEW ANSWERS
A few things you might be wondering before your first review.
Tachyon is a dedicated code reader and review workspace. Your agent or editor makes the code changes; Tachyon helps you explore them, trace the logic, and mark files reviewed without editing your source files.
The viewer runs locally and binds to 127.0.0.1 by default. There are no accounts or telemetry. Update checks, downloads, and optional language-server setup can use the network; reviewing your code does not require uploading it to a hosted service.
Yes. Tachyon can follow changes across worktrees while you review. Pause live updates to inspect a snapshot, and pick up newer changes when you are ready. Review marks belong to exact file versions, so further edits make those marks stale.
Syntax highlighting covers roughly 280 languages, with 14 themes. Optional local language servers add definitions, references, and call trails for languages including Go, Rust, TypeScript, Python, and Java. Language servers are installed separately; search and code reading work without them.
Tachyon is free to use. The distributed binary ships under the MIT license. To update, run the quick install command again. It downloads and verifies the latest binary before replacing your installation.