analyze_file_changes
Track and compare file changes across branches in a Git repository. Input repository path, branches, and files to analyze, and generate detailed output for review and insights.
Instructions
Analyze changes to specific files across branches
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| branches | Yes | Branches to analyze | |
| files | Yes | Files to analyze | |
| outputPath | Yes | Path to write analysis output | |
| repoPath | Yes | Path to git repository |
Input Schema (JSON Schema)
{
"properties": {
"branches": {
"description": "Branches to analyze",
"items": {
"type": "string"
},
"type": "array"
},
"files": {
"description": "Files to analyze",
"items": {
"type": "string"
},
"type": "array"
},
"outputPath": {
"description": "Path to write analysis output",
"type": "string"
},
"repoPath": {
"description": "Path to git repository",
"type": "string"
}
},
"required": [
"repoPath",
"branches",
"files",
"outputPath"
],
"type": "object"
}