ワンクリックで
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.