From 5088b7ea46c2c5468aecf957a68c02db5b8cf0d5 Mon Sep 17 00:00:00 2001 From: Juan Pa Date: Thu, 7 May 2026 17:29:36 -0700 Subject: [PATCH] Document CodeRabbit CLI review defaults --- .../coderabbit/skills/coderabbit-review/SKILL.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/plugins/coderabbit/skills/coderabbit-review/SKILL.md b/plugins/coderabbit/skills/coderabbit-review/SKILL.md index eac606bc..403c8bc5 100644 --- a/plugins/coderabbit/skills/coderabbit-review/SKILL.md +++ b/plugins/coderabbit/skills/coderabbit-review/SKILL.md @@ -42,19 +42,27 @@ Then re-run `coderabbit auth status --agent` and only continue to review command ## Review Commands -Default review: +Default agent review: ```bash -coderabbit review --agent +coderabbit review --agent -t all ``` -Common narrower scopes: +CLI defaults to know: + +- `coderabbit review` uses plain text output by default. +- `--agent` changes output to structured findings for agent workflows. +- `--type` defaults to `all`, which includes committed, staged, unstaged, and untracked changes. + +Common scopes and comparisons: ```bash +coderabbit review --agent -t all coderabbit review --agent -t committed coderabbit review --agent -t uncommitted coderabbit review --agent --base main coderabbit review --agent --base-commit +coderabbit review --agent --dir /path/to/repo ``` If any of `AGENTS.md`, `.coderabbit.yaml`, or `CLAUDE.md` exist in the repo root, pass them with `-c` to improve review quality.