Skip to content
Merged
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
13 changes: 10 additions & 3 deletions plugins/coderabbit/skills/coderabbit-review/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,20 +47,27 @@ required. Never ask the user to paste an API key into the conversation.

## 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.

Comment thread
nehal-a2z marked this conversation as resolved.
Common scopes and comparisons:

```bash
coderabbit review --agent --committed
coderabbit review --agent --uncommitted
coderabbit review --agent --uncommitted --include-untracked
coderabbit review --agent --base main
coderabbit review --agent --base-commit <sha>
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.
Expand Down