From 9268c8162bddddc397f6b6fb1e2dbbee827e719b Mon Sep 17 00:00:00 2001 From: Ankit Jena Date: Wed, 2 Jul 2025 15:24:26 +0530 Subject: [PATCH 1/2] add rate limits for extension and update agent docs (#427) * add rate limits for extension and update agent docs * fix faqs --------- Co-authored-by: Ankit --- docs/faq.md | 13 +++++++------ docs/guides/config-vscode.md | 14 +++++++++++--- docs/guides/use-vscode.md | 2 +- 3 files changed, 19 insertions(+), 10 deletions(-) diff --git a/docs/faq.md b/docs/faq.md index 8e5de723..6755fffa 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -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} diff --git a/docs/guides/config-vscode.md b/docs/guides/config-vscode.md index 7a1fb8bd..02f60d8c 100644 --- a/docs/guides/config-vscode.md +++ b/docs/guides/config-vscode.md @@ -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. @@ -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). diff --git a/docs/guides/use-vscode.md b/docs/guides/use-vscode.md index bfacd87b..169dc2a8 100644 --- a/docs/guides/use-vscode.md +++ b/docs/guides/use-vscode.md @@ -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. From b296a2ff738925abd872a1546081887c70af36a4 Mon Sep 17 00:00:00 2001 From: Jason McIntosh Date: Wed, 2 Jul 2025 11:50:21 -0400 Subject: [PATCH 2/2] Removed a typo, and rewrote a paragraph for clarity. (#424) --- docs/guides/initial-configuration.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/guides/initial-configuration.md b/docs/guides/initial-configuration.md index 3df69e8b..e702b081 100644 --- a/docs/guides/initial-configuration.md +++ b/docs/guides/initial-configuration.md @@ -77,8 +77,9 @@ By default, CodeRabbit writes thorough code reviews with several sub-sections. I ## Adjust path-specific CodeRabbit behavior {#path} -These settings direct CodeRabbit to treat various files and and locations in -your repository differently. +You can give CodeRabbit additional instructions for reviewing specific files or +locations in your repository, or configure CodeRabbit to disregard certain file paths +during code reviews. For an overview about using path-based instructions in CodeRabbit, see [Path-based instructions](/guides/review-instructions#path-based).