CLI installation

Install the Schematify CLI

The Schematify CLI installer downloads the command-line tool and everything it needs to run graph scripts. You do not need to install Node.js.

Use the installer shown on the Document Manager’s CLI & Agent Setup page for your Schematify instance. The commands below use the hosted service.

Linux and macOS

curl -fsSL https://app.schematify.com/install.sh | sh

The installer supports Linux on x64 and ARM64, and macOS on Apple Silicon. It verifies the download, installs the CLI under ~/.schematify/, and adds ~/.schematify/bin to your shell path when possible.

It also asks whether to install the Schematify agent skills. Yes is the default.

To run without the prompt:

curl -fsSL https://app.schematify.com/install.sh | sh -s -- --install-skills
curl -fsSL https://app.schematify.com/install.sh | sh -s -- --skip-skills

Windows PowerShell

irm https://app.schematify.com/install.ps1 | iex

The Windows installer supports x64. It installs the CLI under %USERPROFILE%\.schematify\ and adds its bin directory to your user path.

To run without the skills prompt:

$InstallSkills = $true; irm https://app.schematify.com/install.ps1 | iex
$SkipSkills = $true; irm https://app.schematify.com/install.ps1 | iex

Manual downloads

Download the CLI archive and its .sha256 file for your platform:

PlatformDownload
Linux x64schematify-linux-x64.tar.gz
Linux ARM64schematify-linux-arm64.tar.gz
macOS Apple Siliconschematify-macos-arm64.tar.gz
Windows x64schematify-windows-x64.zip

Keep the executable and the archive’s runtime directory together.

Verify and sign in

schematify --version
schematify login
schematify list

schematify login opens a browser-based device flow. The hosted service has a default CLI configuration, so you do not need to run setup first.

For a custom VM or non-default deployment, use its installer URL. If you need to change an existing installation, run:

schematify setup
schematify login

Shell completions

Bash

schematify completion bash >> ~/.bashrc

Zsh

schematify completion zsh >> ~/.zshrc

Fish

schematify completion fish > ~/.config/fish/completions/schematify.fish

Agent skills

The optional skills install copies schematify-cli, schematify-graphs, schematify-generate, and schematify-render into ~/.schematify/skills/ and the supported agent skill directories. Re-run the installer to update them.

See Agent Skills for the installed locations and usage examples.

What’s next