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.
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.
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.
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.
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.
curl -fsSLO https://github.com/yeksax/lattice/releases/download/continuous/SHA256SUMS.txt
shasum -a 256 --check --ignore-missing SHA256SUMS.txt 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.
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.
git clone https://github.com/yeksax/lattice.git
cd lattice
go build -o lattice ./cmd/lattice