# strata — CLI Command Reference All commands are invoked as `strata [options]` (or `uv run strata `). ## Standard Options These options are accepted by every command and subcommand: | Option | Type | Default | Description | | ------------------ | ------------------------- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `--work-path PATH` | path | auto-detected | Root workspace directory. Falls back to `STRATA_WORK_PATH` env var, then walks up from CWD looking for `.strata/`. | | `--output FORMAT` | `console`\|`text`\|`json` | `console` | Output format. Defaults to `console` (human-readable) when omitted. `json` returns a structured envelope `{"success": bool, "data": ...}`. Mutually exclusive with `--quiet`. | | `--verbose` | flag | off | Enable verbose output. | | `--quiet` | flag | off | Suppress console output. | | `--no-color` | flag | off | Disable all ANSI color output. Also honoured via the `NO_COLOR` env var ([no-color.org](https://no-color.org)) or `STRATA_NO_COLOR`. | > **Automation / AI agents:** Always use `--output json` (or set `STRATA_OUTPUT=json`). Every CLI flag has an `XYZ_