gemini_code
Analyze codebases to answer questions about structure, logic, and improvements. Use Repomix and Gemini 2.5 Pro for detailed insights into your code directory or pre-packed files.
Instructions
Analyzes codebases using Repomix and Gemini 2.5 Pro. Answers questions about code structure, logic, and potential improvements.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
codebase_path | No | Path to pre-packed Repomix file | |
directory_path | No | Path to the code directory | |
model_id | No | Optional model ID override (advanced users only) | |
question | Yes | Question about the codebase |
Input Schema (JSON Schema)
{
"properties": {
"codebase_path": {
"description": "Path to pre-packed Repomix file",
"type": "string"
},
"directory_path": {
"description": "Path to the code directory",
"type": "string"
},
"model_id": {
"description": "Optional model ID override (advanced users only)",
"type": "string"
},
"question": {
"description": "Question about the codebase",
"type": "string"
}
},
"required": [
"question"
],
"type": "object"
}