code_review
Analyze code for quality, security, and performance issues while identifying best practices to improve maintainability and reliability.
Instructions
【代码审查】全面审查代码质量、安全性、性能和最佳实践
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | No | 需要审查的代码 | |
| focus | No | 审查重点:quality, security, performance, all(默认 all) |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "需要审查的代码",
"type": "string"
},
"focus": {
"description": "审查重点:quality, security, performance, all(默认 all)",
"type": "string"
}
},
"required": [],
"type": "object"
}