get_tech_debt
Analyzes source code modules to assign a tech debt grade (A–F) based on complexity, coupling, test coverage, and git churn, with actionable recommendations for architecture improvement.
Instructions
Per-module tech debt score (A–F grade) combining: complexity, coupling instability, test coverage gaps, and git churn. Includes actionable recommendations. Use for architecture review and prioritizing cleanup. Read-only. Returns JSON: { modules: [{ module, grade, score, factors, recommendations }] }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| module | No | Focus on a specific module path (e.g. "src/tools") | |
| refresh | No | Force recomputation (default: false) |