Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/reference/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Compatibility aliases are supported:
| --- | --- | --- |
| `--manual`, `--no-browser` | login | Skip browser launch and use manual callback flow |
| `--json` | verify-flagged, forecast, report, fix, doctor | Print machine-readable output |
| `--explain` | forecast | Include recommendation reasoning details in text and JSON output, even when recommendation summary lines are hidden |
| `--live` | forecast, report, fix | Use live probe before decisions/output |
| `--dry-run` | verify-flagged, fix, doctor | Preview without writing storage |
| `--model <model>` | forecast, report, fix | Specify model for live probe paths |
Expand All @@ -62,6 +63,7 @@ Compatibility aliases are supported:
- `codex auth login --manual` and `codex auth login --no-browser` force the manual callback flow instead of launching a browser.
- `CODEX_AUTH_NO_BROWSER=1` suppresses browser launch for automation/headless sessions. False-like values such as `0` and `false` do not disable browser launch by themselves.
- In non-TTY/manual shells, pass the full redirect URL on stdin, for example: `echo "http://127.0.0.1:1455/auth/callback?code=..." | codex auth login --manual`.
- `codex auth forecast --explain` now keeps the explain breakdown visible in text mode even when dashboard settings hide recommendation summary lines. Pair it with `--json` for machine-readable reasoning snapshots.
- No new npm scripts or storage migration steps were introduced for this auth-flow update.

---
Expand Down Expand Up @@ -117,7 +119,7 @@ Health and planning:

```bash
codex auth check
codex auth forecast --live --model gpt-5-codex
codex auth forecast --live --explain --model gpt-5-codex
codex auth report --live --json
```

Expand Down
Loading