Installation
The SKE CLI is a single Go binary called ske. No runtime dependencies required.
Quick install
Section titled “Quick install”curl -fsSL https://get.ske.io | shThis detects your OS and architecture, downloads the latest release, and installs it to a directory in your PATH.
Homebrew (macOS / Linux)
Section titled “Homebrew (macOS / Linux)”brew install sdcenter0/tap/skeManual download
Section titled “Manual download”Download the binary for your platform from the releases page, extract it, and move it to a directory in your PATH:
# Example for Linux amd64tar -xzf ske_linux_amd64.tar.gzsudo mv ske /usr/local/bin/Verify
Section titled “Verify”ske versionske 1.0.0 (linux/amd64)commit abc1234built 2026-09-20T14:30:00ZSign in
Section titled “Sign in”SKE uses passwordless authentication. Run ske login and enter your email address:
ske loginEmail: you@example.com✓ Sign-in link sent. Check your email and click the link.⠋ Waiting for sign-in...✓ Signed in as you@example.comThe CLI sends a magic link to your email. Click it in your browser — the CLI detects the confirmation automatically and stores your session credentials in ~/.ske/credentials.json.
CI/CD authentication
Section titled “CI/CD authentication”For automated pipelines, set the SKE_API_TOKEN environment variable instead of running ske login:
export SKE_API_TOKEN=your-api-tokenske deployAPI tokens are created from the dashboard or via the API. See API Tokens for details.
Configuration files
Section titled “Configuration files”The CLI stores configuration in ~/.ske/:
| File | Contents |
|---|---|
config.json |
API URL, current organization, current workspace |
credentials.json |
Access token, refresh token, email (mode 0600) |
The project-level ske.yml file in your repository root maps your project to an SKE environment. See Quick start for setup.
Environment variables
Section titled “Environment variables”| Variable | Purpose |
|---|---|
SKE_API_URL |
Override the API base URL |
SKE_ORG |
Override the current organization |
SKE_WORKSPACE |
Override the current workspace |
SKE_API_TOKEN |
Static API token for CI (skips credential file) |
SKE_CONFIG_DIR |
Override the config directory (default: ~/.ske) |
NO_COLOR |
Disable colored output |