원클릭으로
build-graph
Build or update the code review knowledge graph. Run this first to initialize, or let hooks keep it updated automatically.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Build or update the code review knowledge graph. Run this first to initialize, or let hooks keep it updated automatically.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Register repositories, maintain multi-repo graph freshness, and search across repos with dagayn.
Read a Markdown document with full dependency context — query the dagayn graph first, pre-read referenced docs and code by edge type, then read the body.
Author Markdown documents (READMEs, design docs, RFCs) so dagayn extracts correct dependency edges. Four-stage flow — outline & sort, draft & verify, polish, summary.
Evaluate architecture signals through the unified dagayn dispatcher
Systematically debug issues using graph-powered code navigation
Navigate and understand codebase structure using the knowledge graph
| name | build-graph |
| description | Build or update the code review knowledge graph. Run this first to initialize, or let hooks keep it updated automatically. |
| argument-hint | [full] |
Build or incrementally update the persistent code knowledge graph for this repository.
This packaged skill is mode-neutral. dagayn install rewrites this section with
the selected embedding mode so graph builds refresh the right retrieval indexes.
Check graph status by calling the list_graph_stats_tool MCP tool.
Build the graph by calling the build_or_update_graph_tool MCP tool:
build_or_update_graph_tool(full_rebuild=True, local_embedding="none")build_or_update_graph_tool(local_embedding="none")--local-embedding, omitting
local_embedding may inherit that mode and trigger a large embedding
refresh. Pass local_embedding="bge-m3" only when the task explicitly requires
embedding quality or hybrid-search freshness, and state that reason first.Verify by calling list_graph_stats_tool again and report the results:
.dagayn/graph.db) in the repo root.dagaynignore are skippedREADME.md
"Supported languages and file types" rather than relying on this skill as the
authoritative language list.Use MCP tools first. If the current MCP server profile does not expose a tool, run the same implementation through the CLI without restarting the agent:
dagayn tool list_graph_stats_tool
dagayn tool build_or_update_graph_tool --arg full_rebuild=true
dagayn tool run_postprocess_tool --arg fts=true
build_or_update_graph_tool() unless the graph is empty,
branch state changed heavily, or new files are missing from graph queries.local_embedding="none" so hooks and local embedding refresh do not turn a
graph check into an expensive embedding rebuild.postprocess="minimal" while iterating; run full postprocess only when
flow/community freshness matters.