chore: 이전 세션이 남긴 변경을 커밋한다

이번 파이프라인 작업과 무관하게 작업 트리에 남아 있던 것을 그대로 올린다.
사용자가 「전부 커밋」으로 정했고, 이번 작업과 섞이지 않게 커밋만 나눴다.

대부분은 clean-architecture-backend-template 의 그림 정본 재배치다 —
final/assets/diagrams/<이름>/ 에 있던 것이 CLAUDE.md 가 적은 배치인
final/assets/<이름>/ 로 옮겨졌고 .techviz/<이름>/ 이 함께 들어왔다.
삽입 줄의 대부분(3.15M)이 그 .techviz context.json 이다.

그 밖에 ca-tmpl·document-haness 의 정리, .claude/agents/ 열한 개,
writing-practitioner-guides 스킬, .playwright-mcp 세션 산출물,
scripts/check-ssot-facts.py 와 그 시험이 들어 있다.

이 커밋의 내용은 내가 만든 것이 아니라 이전 세션이 남긴 것이고 검증하지 않았다.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
DongHyeonka
2026-09-17 11:02:02 +09:00
co-authored by Claude Opus 5
parent 2109f726fe
commit ab59130196
1524 changed files with 3160026 additions and 8369 deletions
@@ -0,0 +1,135 @@
{
"version": "1.1",
"id": "messaging-spring-boot-starter-c01",
"title": "등록과 조립의 분리",
"question": "등록된 브로커와 오늘 조립할 수 있는 브로커는 어떻게 갈리는가?",
"type": "dependency",
"direction": "LR",
"audience": [
"메시징 플랫폼을 읽는 사람"
],
"summary": "레지스트리에 등록된 것과 오늘 조립할 수 있는 것이 다르고 그 차이를 선택 단계에서 거부로 알린다.",
"alt": "MessagingProviderSelection 에서 kafka 로는 조립 가능 화살표가, rabbit 으로는 등록만 화살표가 가고 rabbit 에서 선택 단계 거부로 이어진다.",
"long_description": "SSOT §6.2 는 BROKERS_WITHOUT_A_TRANSPORT 맵이 rabbit 을 담고 있고 RabbitChannelPublisher 의 구현이 어디에도 없으며 RabbitMessagingAutoConfiguration 에 MessagingTransport bean 이 없다고 적는다. KafkaMessagingAutoConfiguration 에는 있다. javadoc 이 \"Registered is not the same as assemblable\" 로 그 구분을 명시하므로 이것은 결함이 아니라 fail-closed 설계다.",
"source_context": {
"document": "docs/clean-architecture-backend-template/final/document.md",
"document_sha256": "8071fe71b3359d9cf60b95909c26c7b50653ce2f22bbc5fcf6988719bb91236d",
"anchor": {
"kind": "line",
"value": 22171,
"line": 22171
}
},
"composition": {
"profile": "component-flow",
"diagram_only": true,
"reference_ids": [
"payment-event-flow"
],
"rationale": "선택 지점에서 두 브로커가 갈리고 한쪽이 거부로 끝나는 방향이 논지다.",
"focus_node": "selection"
},
"groups": [],
"nodes": [
{
"id": "selection",
"label": "MessagingProviderSelection",
"kind": "service",
"role": "source",
"evidence": [
{
"start_line": 22171,
"end_line": 22178
}
],
"assumption": false,
"emphasis": "primary"
},
{
"id": "kafka",
"label": "kafka 전송",
"kind": "service",
"role": "sink",
"evidence": [
{
"start_line": 22186,
"end_line": 22186
}
],
"assumption": false
},
{
"id": "rabbit",
"label": "rabbit 등록",
"kind": "service",
"role": "service",
"evidence": [
{
"start_line": 22171,
"end_line": 22178
}
],
"assumption": false
},
{
"id": "reject",
"label": "선택 단계 거부",
"kind": "service",
"role": "sink",
"evidence": [
{
"start_line": 22171,
"end_line": 22178
}
],
"assumption": false
}
],
"edges": [
{
"id": "k",
"from": "selection",
"to": "kafka",
"label": "조립 가능",
"kind": "request",
"evidence": [
{
"start_line": 22186,
"end_line": 22186
}
],
"assumption": false
},
{
"id": "r",
"from": "selection",
"to": "rabbit",
"label": "등록만",
"kind": "request",
"evidence": [
{
"start_line": 22171,
"end_line": 22178
}
],
"assumption": false
},
{
"id": "x",
"from": "rabbit",
"to": "reject",
"label": "거부",
"kind": "request",
"evidence": [
{
"start_line": 22171,
"end_line": 22178
}
],
"assumption": false,
"emphasis": "primary"
}
],
"legend": [],
"metadata": {}
}