analyze_dependency_graph
Analyze code dependency graphs to detect circular dependencies, identify module clusters, and examine import/export relationships between files.
Instructions
코드 의존성 그래프를 분석합니다.
키워드: 의존성, 관계 분석, 순환 참조, dependency graph, circular dependency
분석 내용:
파일 간 import/export 관계
순환 의존성 감지
모듈 클러스터 식별
코드 결합도 분석
사용 예시:
"src 폴더의 의존성 그래프 분석해줘"
"index.ts의 의존 관계 보여줘"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectPath | Yes | 프로젝트 경로 | |
| targetFile | No | 특정 파일 분석 (선택사항) | |
| maxDepth | No | 최대 탐색 깊이 (기본값: 3) | |
| includeExternal | No | 외부 패키지 포함 여부 (기본값: false) | |
| detectCircular | No | 순환 의존성 감지 (기본값: true) |