Releases & Downloads

All Stategraph releases are published on GitHub. Visit the releases page for the latest version.

CLI Installation

Homebrew (macOS)

The recommended way to install the Stategraph CLI on macOS:

brew tap stategraph/stategraph
brew install stategraph

To upgrade to the latest version:

brew upgrade stategraph

Docker Images

The CLI image is publicly available on GitHub Container Registry. The server image is distributed privately — see Server below for access.

Server

The server image includes the API backend and web console. It's distributed privately so we can make sure every team has the support and onboarding they need to run Stategraph well.

Get in touch through our contact page and we'll get you set up with access and aligned on your deployment.

Once you have access, the server image powers:

CLI

The CLI image contains the stategraph command-line tool.

docker pull ghcr.io/stategraph/stategraph:<version>

See CLI documentation for usage.

Binary Downloads

Native binaries are available for direct download from the releases page.

Platform Architecture File
Linux x86_64 stategraph-<version>-linux-amd64.tar.gz
Linux ARM64 stategraph-<version>-linux-arm64.tar.gz
macOS Apple Silicon stategraph-<version>-macos-arm64.tar.gz
macOS Intel stategraph-<version>-macos-amd64.tar.gz

Installation

# Download and extract (for example, version 2.2.6 on Linux x86_64)
tar xzf stategraph-2.2.6-linux-amd64.tar.gz

# Move to PATH
sudo mv stategraph /usr/local/bin/

# Verify
stategraph --help

API Schema

Each release includes the OpenAPI schema (api.json) as a downloadable artifact. This can be used for code generation, API client creation, or integration with tools that consume OpenAPI specifications.

The schema is also available at runtime via the GET /api/v1/openapi endpoint.

Version Scheme

Stategraph follows semantic versioning:

  • Major (X.0.0) - Breaking changes
  • Minor (0.X.0) - New features, backwards compatible
  • Patch (0.0.X) - Bug fixes

Release Notes

See the GitHub releases page for detailed release notes and changelogs.