From bdk
Navigate and understand codebase structure using the knowledge graph — stats, architecture overview, community modules, call relationships.
npx claudepluginhub broneq/bdk --plugin bdkThis skill is limited to using the following tools:
> Relies on BDK foundation (STARTUP_INSTRUCTIONS.md). Assumes environment discovery has already run (language, test runner, build tool are known).
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
Relies on BDK foundation (STARTUP_INSTRUCTIONS.md). Assumes environment discovery has already run (language, test runner, build tool are known).
Navigate and understand codebase structure using the knowledge graph.
get_minimal_context(task="explore codebase") first.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>").detail_level="minimal" on all calls. Escalate to "standard" only when minimal is insufficient.