start_conversation
Initiate a conversational analysis session between Claude and Gemini to debug code, explore findings, and resolve stuck points using complementary AI insights for comprehensive problem-solving.
Instructions
Start a conversational analysis session between Claude and Gemini
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysis_type | Yes | Type of deep analysis to perform | |
claude_context | Yes | ||
initial_question | No | Initial question to start the conversation |
Input Schema (JSON Schema)
{
"properties": {
"analysis_type": {
"description": "Type of deep analysis to perform",
"enum": [
"execution_trace",
"cross_system",
"performance",
"hypothesis_test"
],
"type": "string"
},
"claude_context": {
"properties": {
"attempted_approaches": {
"description": "What Claude Code already tried",
"items": {
"type": "string"
},
"type": "array"
},
"code_scope": {
"properties": {
"entry_points": {
"description": "Specific functions/methods to start from",
"type": "array"
},
"files": {
"description": "Files to analyze",
"items": {
"type": "string"
},
"type": "array"
},
"service_names": {
"description": "Services involved in cross-system analysis",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"files"
],
"type": "object"
},
"partial_findings": {
"description": "Any findings Claude Code discovered",
"type": "array"
},
"stuck_description": {
"description": "Description of where Claude Code got stuck",
"type": "string"
}
},
"required": [
"attempted_approaches",
"partial_findings",
"stuck_description",
"code_scope"
],
"type": "object"
},
"initial_question": {
"description": "Initial question to start the conversation",
"type": "string"
}
},
"required": [
"claude_context",
"analysis_type"
],
"type": "object"
}