Drift detected
Source: src/cli.ts (line ~323)
Docs: docs/02-reference/01-cli.md
What's missing in docs
The run command has a -o, --output <file> option in the source code to save the plan JSON file, but this flag is completely missing from the CLI reference documentation.
Source code evidence
In src/cli.ts, the run command includes:
.option("-o, --output <file>", "Save plan JSON to file")
What's wrong in docs
The CLI reference table for the run command doesn't list the --output flag at all. Users reading the docs won't know they can save the plan to a specific file path.
Suggested fix
Add the following row to the run command flags table in docs/02-reference/01-cli.md:
| Flag |
Default |
Description |
-o, --output <file> |
|
Save plan JSON to file |
Impact
Users following the documentation won't know about this useful feature for debugging and plan inspection.
Drift detected
Source:
src/cli.ts(line ~323)Docs:
docs/02-reference/01-cli.mdWhat's missing in docs
The
runcommand has a-o, --output <file>option in the source code to save the plan JSON file, but this flag is completely missing from the CLI reference documentation.Source code evidence
In
src/cli.ts, theruncommand includes:What's wrong in docs
The CLI reference table for the
runcommand doesn't list the--outputflag at all. Users reading the docs won't know they can save the plan to a specific file path.Suggested fix
Add the following row to the
runcommand flags table indocs/02-reference/01-cli.md:-o, --output <file>Impact
Users following the documentation won't know about this useful feature for debugging and plan inspection.