analyze_recent_changes
Rank recent changes by impact with CodeRank to surface the most significant modifications, prioritizing review over a chosen period.
Instructions
Analyze recent changes using CodeRank to identify most important modifications. Aggregates changes over the last N days and ranks them by impact.
Args: repo_path: Repository path (absolute) days_back: Number of days to look back for commits target_branch: Branch to analyze (default: main) min_commits: Minimum commits to a file to be considered top_n: Number of top changes to return include_stats: Include detailed statistics
Returns: Ranked list of most important recent changes with metrics
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| top_n | No | ||
| days_back | No | ||
| repo_path | Yes | ||
| min_commits | No | ||
| include_stats | No | ||
| target_branch | No | main |