feat(server): add boocontext deep analysis tools and synthesis pipeline

- get_symbol_details: type signature, definition location, usage count
- get_call_graph: callers, callees, transitive references
- get_blast_radius added to SYNTHESIS_TOOLS
This commit is contained in:
2026-06-07 17:57:29 +00:00
parent 214cc32ac2
commit bc83475a3d
3 changed files with 63 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ export const SYNTHESIS_TOOLS: ReadonlySet<string> = new Set([
'get_codebase_overview',
'get_framework_analysis',
'get_semantic_neighborhoods',
'get_blast_radius',
]);
const TOP_N_FILES = 5;