Skip to content
ev ev docs

EV DOCUMENTATION

CLI overview

View Markdown

EV Desktop installs the ev command. Use it to start reviews, choose their scope, inspect review state, and add findings or evidence from an agent or script.

Run ev <command> --help for the complete options supported by your installed version.

CommandPurpose
ev reviewStart a review or choose its scope interactively.
ev listList recent reviews for this project. Add --all for all known projects.
ev contextRender review findings, comments, decisions, or metadata as Markdown or JSON.
ev comment addAdd an anchored or general comment, optionally with attachments.
ev comment updateResolve, dismiss, or reopen one or more comments.
ev evidence addAdd image evidence to a review.
ev skillsList, inspect, or create reviewer skills.
ev agentInstall or manage the coding-agent ev-review workflow.
ev configInspect or change EV configuration.
Terminal window
ev review -b origin/main --desktop
OptionReviews…
-b, --base <ref>The current workspace from its merge base with a branch or ref.
--from <ref>The current workspace directly against an exact ref.
--from <base> --to <tip>An exact committed range.
-c, --commit <sha>One commit against its parent.
-w, --working-copyUncommitted changes against HEAD.
--stdinA unified diff supplied on standard input.

See Choose a review scope for examples and the difference between a base branch and an exact ref.

OptionPurpose
--desktopOpen the review in EV Desktop.
-s, --streamRun headlessly and emit newline-delimited JSON for an agent or script.
--autoSelect reviewer skills from the changed files.
--skill <name>Run a specific reviewer skill.
-i, --instructions <text>Add guidance for the reviewer.
--include <glob>Limit the review to matching paths.
--exclude <glob>Exclude matching paths.

Render the latest review as Markdown:

Terminal window
ev context

Read only unresolved findings from a specific review as JSON:

Terminal window
ev context --review rev-abc --show findings --unresolved --format json

Use ev list to find a review ID.

Use ev comment add for feedback anchored to a file, line, or existing comment. Use ev comment update to record a finding’s status. Use ev evidence add for review-level image evidence.

See Findings and decisions and Work with evidence for the corresponding Desktop workflow and command examples.