Skip to content

Run Lattice on your machine.

Checking your system…

CLI, local daemon, and dashboard in one binary. MIT licensed.

One binary for the local workflow.

Every push to main publishes five builds to the continuous release. Run any Lattice command and the local service starts on demand.

macOS default, Apple Silicon
curl -fsSL https://github.com/yeksax/lattice/releases/download/continuous/lattice-darwin-arm64 \
  -o /usr/local/bin/lattice && chmod +x /usr/local/bin/lattice

Using an Intel Mac? Choose lattice-darwin-amd64 below.

Linux default, x86-64
curl -fsSL https://github.com/yeksax/lattice/releases/download/continuous/lattice-linux-amd64 \
  -o /usr/local/bin/lattice && chmod +x /usr/local/bin/lattice

Writing to /usr/local/bin may require sudo. The arm64 build is below.

Windows, PowerShell
irm https://github.com/yeksax/lattice/releases/download/continuous/lattice-windows-amd64.exe -OutFile lattice.exe

Move lattice.exe into a directory on your PATH.

Choose your platform from the builds below.

lattice-darwin-arm64 matching OS macOS, Apple Silicon Download
lattice-darwin-amd64 matching OS macOS, Intel Download
lattice-linux-arm64 matching OS Linux, arm64 Download
lattice-linux-amd64 matching OS Linux, x86-64 Download
lattice-windows-amd64.exe matching OS Windows, x86-64 Download

Rename the download to lattice and place it on your PATH. You are ready.

Check the file before you run it.

Each release includes SHA256SUMS.txt beside the binaries. Download the checksum file from the same release, then run the matching command in the directory that contains your binary.

macOS and Linux
curl -fsSLO https://github.com/yeksax/lattice/releases/download/continuous/SHA256SUMS.txt
shasum -a 256 --check --ignore-missing SHA256SUMS.txt
Windows, PowerShell
certutil -hashfile lattice-windows-amd64.exe SHA256
# compare with the matching line in SHA256SUMS.txt

On Linux, sha256sum --check --ignore-missing SHA256SUMS.txt works too.

Want the format without the library?

One command installs the skill that teaches a compatible agent to write concise, self-contained HTML reports. No daemon, no CLI, no configuration.

Inspect the skill

html-summary, standalone
npx skills add yeksax/html-summary

Prefer to compile it yourself?

Lattice is a single Go module. Clone the repository and build the CLI directly.

Browse every published build on GitHub Releases

requires Go, builds locally
git clone https://github.com/yeksax/lattice.git
cd lattice
go build -o lattice ./cmd/lattice