Documentation Index
Fetch the complete documentation index at: https://docs.stigg.io/llms.txt
Use this file to discover all available pages before exploring further.
The Stigg CLI is currently in public beta. Feedback and bug reports are welcome.
GitHub
stiggio/stigg-cli
Install
Install the Stigg CLI via Homebrew or Go:Requires Go 1.22 or later for the Go install. The binary is placed in your Go bin directory (default:
$HOME/go/bin). If stigg isn’t found after installation, add it to your PATH:Authenticate
In the Stigg app, go to Settings > API keys and copy a key for the environment you want to use. You can provide the key in two ways:For CI/CD pipelines, store the key as a secret and inject it as
STIGG_API_KEY at runtime.Common commands
| Command | Description |
|---|---|
stigg v1:customers list | List all customers in the current environment |
stigg v1:customers retrieve | Get details for a specific customer |
stigg v1:subscriptions list | List subscriptions, optionally filtered by customer |
stigg v1:subscriptions retrieve | Get full details for a subscription |
stigg v1:entitlements check | Check a customer’s access to a specific feature |
stigg v1:plans list | List all plans in the product catalog |
stigg --help for the full command reference, or stigg v1:<resource> --help for flags on a specific resource.
Global flags
| Flag | Description |
|---|---|
--api-key | Stigg API key (overrides STIGG_API_KEY) |
--help | Show command usage |
--debug | Enable debug logging, including HTTP request/response details |
--version, -v | Show the CLI version |
--base-url | Use a custom API backend URL |
--format | Output format: auto, explore, json, jsonl, pretty, raw, yaml |
--format-error | Output format for errors: auto, explore, json, jsonl, pretty, raw, yaml |
--transform | Transform output using GJSON syntax |
--transform-error | Transform error output using GJSON syntax |
