소스 정보
- 저장소
- manji-0/dagayn
- 최근 소스 활동
- 2026년 8월 5일 05:10
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/manji-0/dagayn --skill architecture-analysis명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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
Navigate and understand codebase structure using the knowledge graph
SOC 직업 분류 기준
SKILL.md 표시 중
| name | architecture-analysis |
| description | Evaluate architecture signals through the unified dagayn dispatcher |
Use architecture_analysis_tool as the single MCP entry point for architecture
evaluation. Start broad, then drill down only when the overview or a concrete
question points to a signal.
get_minimal_context_tool(task="<architecture goal>") to check graph
freshness, risk, 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 architecture analysis.architecture_analysis_tool(mode="overview", detail_level="minimal").
Read architecture_health.reason_codes, counts, examples, and
drill_downs.communities: boundaries, large clusters, cohesion, coupling shapecommunity: one community's metadata or member samplehubs: high-degree hotspots with broad blast radiusbridges: betweenness chokepoints between regionsknowledge_gaps: isolated nodes, thin communities, untested hotspotssurprising_connections: unexpected cross-boundary couplingadp_violations: dependency cyclessdp_metrics / sdp_violations: dependency stability directionsap_metrics / sap_violations: abstraction/stability balancequery_graph_tool or source reads only after the metric output identifies a
concrete node, edge, community, package, or file to verify.traverse_graph_tool only as a bounded neighborhood drill-down after a
concrete hub, bridge, surprising edge, or violating scope is chosen, and only
when the advanced MCP surface (or dagayn tool) exposes it. Prefer
query_graph_tool when the follow-up is a specific relationship.query_graph_tool(pattern="docs_for", target="<path::symbol>", detail_level="minimal")
from code/Terraform nodes and
query_graph_tool(pattern="implementations_of", target="<doc.md>::<section-slug>", detail_level="minimal")
from Markdown contract sections. Treat CROSS_ARTIFACT documentation roles
as typed traceability evidence, not automatic architectural coupling; read
evidence_type and missingness before treating a doc edge as contract
evidence.total, truncated, and approximation
metadata when making claims.detail_level="minimal" and small top_n values first. Increase only
when the result is too narrow to answer the question.implemented_by, implements_contract, explained_by, has_runbook,
problem_described_by, discusses_artifact, or raises_issue_for) and
whether it came from Markdown or code. Include evidence_type when it affects
the strength of the claim.zero_result_reason and next_action
rather than treating the result as proof of no relationship.Default MCP already exposes architecture_analysis_tool and query_graph_tool.
Use dagayn tool when the server allow-list omitted them, or for advanced
helpers such as traverse_graph_tool:
dagayn tool architecture_analysis_tool --arg mode='"overview"' --arg detail_level='"minimal"'
dagayn tool architecture_analysis_tool --arg mode='"sdp_violations"' --arg top_n=10
dagayn tool architecture_analysis_tool --arg mode='"community"' --arg community_name='"auth"'
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>").ensure_graph_tool returns.architecture_analysis_tool(mode="overview", detail_level="minimal")
before any architecture drill-down mode.