Skip to content

add rate limits for extension and update agent docs #427

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 2, 2025
Merged
Show file tree
Hide file tree
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: 7 additions & 6 deletions docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,12 +205,13 @@ In-trial and open-source plans have lower rate limits than the paid plan. In all

The following limits enforced _per developer_:

| Feature | Free Plan | Trial Plan | OSS Plan | Pro/Lite Plan |
| ---------------- | ------------------------------------------ | ----------------------------- | ----------------------------- | ----------------------------- |
| Files per hour | 200/hour | 200/hour | 200/hour | 400/hour |
| Files per PR | 100 | 100 | 100 | 200 |
| Reviews per hour | 3 back-to-back, then 2/hour (Summary only) | 4 back-to-back, then 3/hour | 3 back-to-back, then 2/hour | 5 back-to-back, then 4/hour |
| Chat | N/A | 25 back-to-back, then 50/hour | 10 back-to-back, then 25/hour | 25 back-to-back, then 50/hour |
| Feature | Free Plan | Trial Plan | OSS Plan | Pro/Lite Plan |
| -------------------------------- | ------------------------------------------ | --------------------------------- | ----------------------------- | ----------------------------- |
| Files per hour | 200/hour | 200/hour | 200/hour | 400/hour |
| Files per PR | 100 | 100 | 100 | 200 |
| Reviews per hour | 3 back-to-back, then 2/hour (Summary only) | 4 back-to-back, then 3/hour | 3 back-to-back, then 2/hour | 5 back-to-back, then 4/hour |
| Reviews per hour (IDE Extension) | 1/hour | 5/hour (Pro trial), 1/hour(Other) | 1/hour | 5/hour (Pro), 1/hour(Lite) |
| Chat | N/A | 25 back-to-back, then 50/hour | 10 back-to-back, then 25/hour | 25 back-to-back, then 50/hour |

## Integration Guide {#integration-guide}

Expand Down
14 changes: 11 additions & 3 deletions docs/guides/config-vscode.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ The instructions on this page are specific to using the extension with VSCode. I

To navigate to the settings screen for the CodeRabbit VSCode extension, follow these steps:

1. In the activity bar, click the Extensions icon.
1. Open the CodeRabbit activity bar/sidebar.

1. In the sidebar, under **Installed**, click the gear-shaped **Manage** icon in the CodeRabbit row.
1. In the sidebar, click on gear shaped icon on top right(beside logout icon).

1. In the menu that appears, select **Settings**.
1. You can also search for CodeRabbit: Settings in the command palette to open the settings.

The settings screen contains the following configuration controls.

Expand All @@ -32,6 +32,14 @@ The **Agent Type** setting lets you choose the extension's response to using the

- **Claude Code**: The extension opens the Terminal pane of your IDE and tries to use the `claude` command-line program to apply the suggested fix to your code. You need to have Claude Code installed for this option to be effective.

- **Codex CLI**: The extension opens the Terminal pane of your IDE and tries to use the `codex` command-line program to apply the suggested fix to your code. You need to have Codex CLI installed for this option to be effective.

- **Cline**: The extension opens the `Cline` sidebar and runs a task to apply the suggested fix to your code. You need to have the `Cline` extension installed for this option to be effective.

- **Roo**: The extension opens the `Roo` sidebar and runs a task to apply the suggested fix to your code. You need to have the `Roo` extension installed for this option to be effective.

- **Kilo Code**: The extension opens the `Kilo Code` sidebar and runs a task to apply the suggested fix to your code. You need to have the `Kilo Code` extension installed for this option to be effective.

- **Clipboard**: The extension copies prompt text describing the suggested fix to your clipboard. From there, you can manually paste the prompt into the coding AI agent that you use with your IDE.

For more information about the **Fix with AI** feature, see [Request help from your AI coding agent](/guides/use-vscode#agent).
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/use-vscode.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ You can let CodeRabbit automatically review commits that you make to your local

To perform an automatic review, follow these steps:

1. Perform a Git commit using VSCode. After you do this, a dialog appears in your VSCode window, asking **Would you like to start a review?**
1. Perform a Git commit using VSCode or terminal. After you do this, a dialog appears in your VSCode window, asking **Would you like to start a review?**

1. Click **Yes**. The CodeRabbit sidebar appears in your VSCode window.

Expand Down