Live codebase intelligence for AI agents: conventions, blast radius, import graphs, git insights.
| Tool name | Description | Destructive? |
|---|---|---|
| analyze_codebase | Run a full sourcebook analysis on the codebase. Returns the complete ProjectScan including detected languages, framework | ✓ no |
| get_file_context | Get context for a specific file: its importance score (PageRank), what imports it, what it imports, which conventions ap | ✓ no |
| get_blast_radius | Determine what could break if you edit a given file. Returns direct dependents (files that import it), co-change partner | ✓ no |
| query_conventions | Return all detected conventions and patterns in the codebase: import styles, error handling, naming conventions, framewo | ✓ no |
| get_import_graph | Get import relationship data: hub files (most depended-on), circular dependencies, dead code candidates, and file import | ✓ no |
| get_git_insights | Get insights mined from git history: fragile files (high churn), reverted commits (failed approaches to avoid), active d | ✓ no |
| get_pressing_questions | Get the most important things to know before editing a specific file or area of the codebase. Combines blast radius, con | ✓ no |
| search_codebase_context | Search across all analyzed context (findings, conventions, structure, frameworks) by keyword. Returns matching findings | ✓ no |