code_review
Enhance code quality by analyzing and improving code snippets in various programming languages. Ideal for developers seeking actionable feedback and optimizations directly within Cursor/Windsurf editors.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | 要审查的代码 | |
language | Yes | 编程语言 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"code": {
"description": "要审查的代码",
"type": "string"
},
"language": {
"description": "编程语言",
"type": "string"
}
},
"required": [
"language",
"code"
],
"type": "object"
}