Skip to content

CLI options

import { Aside } from ‘@astrojs/starlight/components’;

Synopsis

Terminal window
bin/llm-review-panel review <plan.md> [--config <path>] [--yes] [--dry-run] [--poll-interval <ms>]

Arguments

ArgumentDescription
planPath to the markdown plan to review (required).

Options

OptionDefaultDescription
--config, -cconfig.jsonPath to the config.json to load.
--yes, -yoffSkip all three checkpoints.
--dry-runoffResolve every enabled reviewer’s command, check each binary against PATH, and exit. No processes spawned.
--poll-intervalpoll_interval_ms (25)Process poll interval in milliseconds. Overrides poll_interval_ms from config for this run. Must be a positive integer.

Exit codes

CodeMeaning
0Run completed successfully (synthesis written, or user accepted at checkpoint 3, or aborted at a checkpoint).
1--dry-run found a missing binary, or no reviewer produced usable output (manifest written; synthesis skipped).

Examples

Terminal window
# Validate config and PATH without spawning anything
bin/llm-review-panel review plan.md --dry-run
# Interactive run with checkpoints
bin/llm-review-panel review plan.md
# Scripted run, no prompts
bin/llm-review-panel review plan.md --yes
# Use an alternate config file
bin/llm-review-panel review plan.md -c configs/audit.json