Features
Introducing Review Sensitivity Levels
You now have granular control over the strictness of your code reviews. With our new "Sensitivity" setting, you can tailor the AI's feedback to match your team's specific needs and priorities. This setting can be configured in your repository's .optibot file.
Choose from three distinct levels:
- Low Sensitivity: For teams that want to focus only on the most critical issues. The AI will exclusively flag breaking changes to APIs, database schemas, and core logic that could lead to production failures or data loss.
- Medium Sensitivity (Default): A balanced approach that provides high-impact feedback. The AI identifies significant bugs, security vulnerabilities, and logical errors, while ignoring minor stylistic preferences and nitpicks.
- High Sensitivity: For teams aiming for the highest standards of code quality. The AI acts as a meticulous reviewer, providing feedback on everything from critical bugs and performance issues to style inconsistencies, naming conventions, and documentation gaps.
Example File
{
"reviews": {
"auto": true,
"autoOnPush": true,
"autoOnDraft": false,
"sensitivity": "medium",
"autoApprove": true,
"codeSuggestions": true,
"excludedLabels": ["do not review"],
"codeSuggestionsSkipFiles": []
},
}Improvements
Upgraded AI Models for Higher Quality Reviews
We've upgraded the core AI models that power our code analysis and review features. This enhancement brings several benefits:
- More Accurate Suggestions: The AI is now better at understanding code context, resulting in more precise and relevant feedback.
- Improved Performance: You may notice faster response times for reviews and other AI-powered actions.
- Higher-Quality Summaries: Generated summaries and comments are more coherent and insightful.
Under the Hood Improvements
- We have rolled out updates to our internal development frameworks and tooling to improve the reliability and speed at which we can deliver new features and fixes.
- Dependencies have been updated to ensure the platform remains secure and performant.