소스 정보
- 저장소
- manji-0/dagayn
- 최근 소스 활동
- 2026년 8월 14일 08:58
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/manji-0/dagayn --skill explore-codebase명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Make a git worktree usable for dagayn MCP — inherit the main checkout's graph and MCP config, then catch up the branch diff.
Systematically debug issues using graph-powered code navigation
Build or update the code review knowledge graph. Run this first to initialize, or let hooks keep it updated automatically.
| name | explore-codebase |
| description | Navigate and understand codebase structure using the knowledge graph |
Use the dagayn MCP tools to explore and understand the codebase.
This packaged skill is mode-neutral. dagayn install rewrites this section with
the selected embedding mode so exploration chooses the right search strategy.
semantic_search_nodes_tool first, then pick a concrete qualified_name.query_graph_tool with the
narrowest pattern (callers_of, callees_of, imports_of, tests_for,
docs_for, implementations_of, children_of, or file_summary).review_tool before raw
traversal.architecture_analysis_tool(mode="overview") before metric drill-downs.flow_tool(mode="list"), then flow_tool(mode="get")
only after choosing a concrete flow. Treat path / steps as BFS visit
order, not a runtime call sequence, and read truncated / truncation_reason.traverse_graph_tool only after choosing a
concrete start node, only when a specific relationship query would be too
narrow, and only when the advanced MCP surface (or dagayn tool) exposes it.get_minimal_context_tool(task="<what you need to understand>") to see graph
freshness, risk, major communities, and suggested next tools. If
graph_health.status is empty (or ensure_graph_tool is the first
next-tool hint), call ensure_graph_tool() and re-orient before exploration.semantic_search_nodes_tool, then a
concrete qualified_name.query_graph_tool with the narrowest pattern.review_tool(mode="changes") and read
analysis_summary first.architecture_analysis_tool(mode="overview", detail_level="minimal").
Read architecture_health first; use the Architecture Analysis skill for
drill-down mode selection.flow_tool(mode="list", detail_level="minimal"), then
flow_tool(mode="get") only after choosing a concrete flow name.query_graph_tool patterns such as
callers_of, callees_of, imports_of, docs_for, or implementations_of
to verify relationships. Prefer these over raw traversal.rg/file reads when graph output is stale, ambiguous, truncated,
or missing exact source text.get_minimal_context_tool, then follow the Decision Model. Do not
open with architecture overview unless the question is about structure or
health.children_of on a file to see all its functions and classes.find_large_functions_tool (advanced surface / dagayn tool) to identify
complex code.dagayn: directives as authored
CROSS_ARTIFACT evidence. Markdown comments such as
<!-- dagayn: implemented-by path::symbol --> point from a doc section to a
code point; Python/Terraform comments such as
# dagayn: implements docs/spec.md#Section point from code to a Markdown
section. Query tools expose inverse labels, so do not assume both directions
are stored. Read evidence_type (authored, extracted, or
heuristic_reachable) and missingness before treating a traceability edge
as contract evidence.zero_result_reason and
next_action to decide the next lookup; absence is limited to the current
graph.rg is fine after minimal context; switch back
to graph tools once you have a file, function, or class name.query_graph_tool for relationship verification; raw traversal
is a follow-up for a bounded neighborhood.Default MCP already exposes flow_tool, architecture_analysis_tool,
query_graph_tool, and semantic_search_nodes_tool. Use dagayn tool when the
server allow-list omitted a tool, or for advanced helpers such as
find_large_functions_tool / traverse_graph_tool:
dagayn tool find_large_functions_tool --arg min_lines=80
dagayn tool traverse_graph_tool --arg query='"auth handler"' --arg depth=2
dagayn tool query_graph_tool --arg pattern='"docs_for"' --arg target='"src/app.py::handler"'
dagayn tool query_graph_tool --arg pattern='"implementations_of"' --arg target='"docs/spec.md::contract-section"'
get_minimal_context_tool(task="<your task>") before any other graph tool.ensure_graph_tool returns.detail_level="minimal" on all calls. Only escalate to "standard" when minimal is insufficient.