Отладка через граф зависимостей кода
★ 7.2 · engineering
debug-issue is a Claude Code skill that systematically traces and resolves bugs using a knowledge graph for code navigation. It chains five tools in sequence: `semantic_search_nodes_tool` locates code related to the issue, `query_graph_tool` with `callers_of` and `callees_of` maps call chains in both directions, `get_flow` reveals full execution paths through suspected areas, `detect_changes_tool` checks whether recent commits introduced the regression, and `get_impact_radius_tool` surfaces everything else affected by suspected files. Token efficiency is a core constraint: every session starts with `get_minimal_context`, all calls use `detail_level="minimal"`, and the target is to finish any debug task within ≤5 tool calls and ≤800 total output tokens. The skill is built for engineers who need to pinpoint root causes quickly in large codebases without manually tracing dependency chains.
- #debugging
- #code-graph
- #call-tracing
- #execution-flow
- #impact-analysis