find_code_hotspots
Identify code hotspots in a repository by combining CodeRank connectivity with symbol usage frequency, revealing modules that are both highly connected and frequently used.
Instructions
Identify code hotspots by combining CodeRank with symbol usage frequency. Uses kit usages + coderank to find modules that are both highly connected and frequently used.
Args: repo_path: Repository to analyze working_directory: Working directory for commands (absolute path) min_connections: Minimum import connections to consider include_external: Include external module dependencies top_n: Number of top hotspots to return
Returns: Hotspot analysis with modules ranked by importance and usage
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| top_n | No | ||
| repo_path | Yes | ||
| min_connections | No | ||
| include_external | No | ||
| working_directory | Yes |