review
Analyze code for security vulnerabilities, performance issues, and quality standards. Get automated scoring and improvement recommendations across multiple files.
Instructions
๐ Comprehensive code review - Security audit, performance analysis, best practices validation. Multi-file correlation analysis. Automated quality scoring and improvement suggestions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Code content to review | |
file_path | No | File path for context | |
language | No | Programming language hint | |
review_type | No | comprehensive |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Code content to review",
"type": "string"
},
"file_path": {
"description": "File path for context",
"type": "string"
},
"language": {
"description": "Programming language hint",
"type": "string"
},
"review_type": {
"default": "comprehensive",
"enum": [
"security",
"performance",
"quality",
"comprehensive"
],
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}