fix(ci): switch qodo from /review to /agentic_review#2568
Conversation
/review is deprecated by qodo and removed after 2026-05-31.
PR SummaryLow Risk Overview Reviewed by Cursor Bugbot for commit 156af91. Bugbot is set up for automated code reviews on this repo. Configure here. |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed: Configuration section mismatch after command switch
- Migrated configuration from [pr_reviewer] section to [review_agent] section with extra_instructions split into issues_user_guidelines and compliance_user_guidelines per Qodo documentation.
Or push these changes by commenting:
@cursor push 4cf2c31e6f
Preview (4cf2c31e6f)
diff --git a/.pr_agent.toml b/.pr_agent.toml
--- a/.pr_agent.toml
+++ b/.pr_agent.toml
@@ -8,21 +8,8 @@
# /review is deprecated by qodo and removed after 2026-05-31.
pr_commands = ["/agentic_review"]
-[pr_reviewer]
-require_score_review = false
-require_tests_review = false
-require_estimate_effort_to_review = false
-require_can_be_split_review = false
-require_security_review = false
-require_ticket_analysis_review = false
-enable_review_labels_security = false
-enable_review_labels_effort = false
-inline_code_comments = true
-num_code_suggestions = 3
-persistent_comment = true
-final_update_message = false
-enable_help_text = false
-extra_instructions = """
+[review_agent]
+issues_user_guidelines = """
Output style rules (strict):
- Be terse. One short paragraph per finding, no preamble.
- Only report concrete bugs, correctness issues, or rule violations. Do not summarize the PR.
@@ -31,6 +18,15 @@
- No Qodo branding, logos, dividers, or footer links.
- If nothing to flag, post nothing.
"""
+compliance_user_guidelines = """
+Output style rules (strict):
+- Be terse. One short paragraph per finding, no preamble.
+- Only report concrete bugs, correctness issues, or rule violations. Do not summarize the PR.
+- No headers, no bullet lists, no tables, no diagrams, no code-fence wrapping unless quoting code.
+- No emojis. No severity badges. No tags like "Bug", "Enhancement", "Correctness", "Maintainability".
+- No Qodo branding, logos, dividers, or footer links.
+- If nothing to flag, post nothing.
+"""
[pr_description]
publish_description_as_comment = falseYou can send follow-ups to the cloud agent here.
Reviewed by Cursor Bugbot for commit 4788668. Configure here.
❌ 4 Tests Failed:
View the full list of 4 ❄️ flaky test(s)
To view more test analytics, go to the Test Analytics Dashboard |
PR Reviewer Guide 🔍Warning
Here are some key observations to aid the review process:
|
The old [pr_reviewer] section keys (require_*, num_code_suggestions, extra_instructions, etc.) only apply to the deprecated /review command. /agentic_review reads its style guidance from [review_agent] using issues_user_guidelines (Issues Agent) and compliance_user_guidelines (Compliance Agent).
There was a problem hiding this comment.
Code review is billed via overage credits. To resume reviews, an organization admin can raise the monthly limit at claude.ai/admin-settings/claude-code.
Once credits are available, reopen this pull request to trigger a review.


Switch qodo PR-Agent from
/review(removed after 2026-05-31) to/agentic_review, and migrate the style guidance from[pr_reviewer]to[review_agent](issues_user_guidelines+compliance_user_guidelines) — the old section keys don't apply to the new command.