sscli explore
Overview
sscli explore shows the full template catalog. In a TTY it launches an interactive browser. In pipes or CI environments it automatically falls back to plain-text output.
Last verified with sscli v3.2.8
Usage
sscli explore [--list] [--json]Options
| Flag | Type | Required | Description |
|---|---|---|---|
--list | BOOL | No | Non-interactive plain-text list (safe in pipes) |
--json | BOOL | No | Non-interactive JSON catalog output (safe in pipes) |
Examples
# Interactive TUI (default in a terminal)sscli explore# Plain text list (CI / pipe-safe)sscli explore --list# JSON catalog for scriptingsscli explore --json | jq '.[] | .name'Notes
- When stdout is not a TTY (e.g.
sscli explore | head), the CLI automatically uses--listmode. --jsonoutput includes template ID, tier, description, and available features.