원클릭으로
explore-codebase
Navigate and understand codebase structure using the knowledge graph
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Navigate and understand codebase structure using the knowledge graph
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Work through planned tasks in manageable batches — pick a GitHub issue (plan-labelled, regular, or code-scanning/Dependabot alert), split into parallel subagents, test, review, log, commit, push, open a PR. Never block on CI: start the next batch immediately and reconcile the previous batch's PR (merge if green, fix if red) at the end of the new one. Use when the user asks to work on issues, ship a batch, or process the backlog.
Systematically debug issues using graph-powered code navigation
Plan and execute safe refactoring using dependency analysis
Perform a structured code review using change detection and impact
| name | explore-codebase |
| description | Navigate and understand codebase structure using the knowledge graph |
Use the code-review-graph MCP tools to explore and understand the codebase.
list_graph_stats to see overall codebase metrics.get_architecture_overview for high-level community structure.list_communities to find major modules, then get_community for details.semantic_search_nodes to find specific functions or classes.query_graph with patterns like callers_of, callees_of, imports_of to trace relationships.list_flows and get_flow to understand execution paths.children_of on a file to see all its functions and classes.find_large_functions to identify complex code.get_minimal_context(task="<your task>") before any other graph tool.detail_level="minimal" on all calls. Only escalate to "standard" when minimal is insufficient.