cross_system_impact
Analyze the impact of code changes across distributed systems using Gemini AI. Identify breaking, performance, and behavioral effects by specifying files and services for comprehensive cross-boundary debugging.
Instructions
Use Gemini to analyze changes across service boundaries
Input Schema
Name | Required | Description | Default |
---|---|---|---|
change_scope | Yes | ||
impact_types | No |
Input Schema (JSON Schema)
{
"properties": {
"change_scope": {
"properties": {
"files": {
"items": {
"type": "string"
},
"type": "array"
},
"service_names": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"files"
],
"type": "object"
},
"impact_types": {
"items": {
"enum": [
"breaking",
"performance",
"behavioral"
],
"type": "string"
},
"type": "array"
}
},
"required": [
"change_scope"
],
"type": "object"
}