Configuration
The sb CLI stores its configuration in a JSON file at ~/.config/sb/config.json.
File location
~/.config/sb/config.jsonThe directory is created with permissions 0700 and the file with 0600 to protect your API token.
Format
{ "token": "sk-your-api-key", "base_url": "https://skillsbin.com"}| Field | Required | Description |
|---|---|---|
token | Yes (for most commands) | Your API key from skillsbin.com/settings. |
base_url | No | Override the API base URL. Defaults to https://skillsbin.com. |
How values are set
token— Written bysb auth <token>.base_url— Written only when--base-urlis passed to any command with a non-default value.
Global flags
These flags are available on every command:
| Flag | Default | Description |
|---|---|---|
--claude | false | Output structured JSON instead of human-readable text. See Claude mode. |
--base-url | "" | Override the API base URL for this invocation. |
Base URL resolution order
--base-urlflag (if provided)base_urlfrom config file (if set)https://skillsbin.com(default)