Signed standalone CLI

One binary. Exact provenance.

Install LimiLake without Python or a repository checkout. Every release carries its source identity, signatures, checksums, SBOMs, provenance, and version-matched Agent context.

Stable channel

Unavailable

The public channel could not be read.

Install stable
The installer detects the native target, verifies the signed manifest and archive, then atomically replaces the executable.
curl -fsSL https://get.limilake.com/ | sh
limilake --output json version
Supported targets
Windows is not supported by this release.

Linux

AMD64

Linux

ARM64

macOS

Intel

macOS

Apple Silicon

Pin an exact release

Use immutable version selection for managed machines and reproducible setup.

VERSION=$(curl -fsSL https://packages.limilake.com/cli/channels/stable)
curl -fsSL https://get.limilake.com/ | sh -s -- \
  --version "$VERSION"

Update or roll back

Updates are explicit. Failed verification leaves the installed binary untouched.

limilake update --channel stable
limilake update --version <previous-version>

Verify independently

Compare the release key and archive digests with the immutable GitHub Release audit. Repository access is currently required.

Release metadata is temporarily unavailable. The installer still resolves and verifies the stable channel when it runs.

Immutable downloads

Audit the bytes for every target

Linux · AMD64

linux/amd64

Linux · ARM64

linux/arm64

macOS · Intel

darwin/amd64

macOS · Apple Silicon

darwin/arm64

After installation

Authenticate through device OAuth, then let the CLI discover the canonical Workspace repository. Native Git continues to own branches, fetch, pull, and push.

limilake auth login --host app.limilake.com --profile work
limilake workspace list
limilake workspace clone <workspace>
cd <workspace>
limilake workspace doctor
git switch -c my-change
git push -u origin my-change