analyze_time_period
Examine development activity within a specific time frame in a git repository. Analyzes branches, tracks changes, and generates detailed insights for targeted periods to inform project progress and decision-making.
Instructions
Analyze detailed development activity in a specific time period
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| branches | Yes | Branches to analyze | |
| outputPath | Yes | Path to write analysis output | |
| repoPath | Yes | Path to git repository | |
| timeRange | Yes |
Input Schema (JSON Schema)
{
"properties": {
"branches": {
"description": "Branches to analyze",
"items": {
"type": "string"
},
"type": "array"
},
"outputPath": {
"description": "Path to write analysis output",
"type": "string"
},
"repoPath": {
"description": "Path to git repository",
"type": "string"
},
"timeRange": {
"properties": {
"end": {
"type": "string"
},
"start": {
"type": "string"
}
},
"required": [
"start",
"end"
],
"type": "object"
}
},
"required": [
"repoPath",
"branches",
"timeRange",
"outputPath"
],
"type": "object"
}