review_file
Get comprehensive code review feedback from Codex and Gemini CLIs to improve code quality, security, and performance. Submit any file for analysis and receive actionable suggestions from multiple AI reviewers.
Instructions
Request a code review of a specific file from Codex and Gemini CLIs. Returns feedback from both reviewers for Claude to consider.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | Additional context about the code (optional) | |
filePath | Yes | Path to the file to review | |
reviewers | No | Which reviewers to use (default: both) |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"description": "Additional context about the code (optional)",
"type": "string"
},
"filePath": {
"description": "Path to the file to review",
"type": "string"
},
"reviewers": {
"description": "Which reviewers to use (default: both)",
"items": {
"enum": [
"codex",
"gemini",
"both"
],
"type": "string"
},
"type": "array"
}
},
"required": [
"filePath"
],
"type": "object"
}