Files
document-haness/docs/clean-architecture-backend-template/final/evidence/rendered/analysis-finding-a04-f005.svg
T
DongHyeonkaandClaude Opus 5 b2963105a8 docs(keycloak-session-store): import the session-storage lab as a new project
The keycloak project ended with four open questions that design could not
settle. A two-VM lab was built to answer them by measurement, and this is
that material: 26 experiments, 125 raw command outputs, 22 browser captures.

Follows the import procedure in README.md.

  source/     the originating repository verbatim — 78 documents, 28 SVGs,
              8 manifests, plus .source-revision recording the commit
  final/      the SSOT
    document.md   729 lines written from the 29 experiment documents, not
                  concatenated: what was predicted, what was measured, and
                  where the measurement itself was wrong
    evidence/raw    125 outputs, flattened to <experiment>__<file> because
                    the originals collided (01-baseline.txt appeared three
                    times) and the audit only globs the top level
    evidence/meta   one per raw file; command and exitCode are null and the
                    README says why rather than inventing them
    evidence/browser  22 captures
    assets/       three diagrams through techviz
    .techviz/     their VizSpecs

A separate project rather than an addition to keycloak: the B-layer answers
that project's four questions, but the A, C and D layers are about cluster
failure, SSO and operations, and one document.md should hold one subject.
The four question records there can point here through 관계.

Recorded rather than papered over: only three of the 28 diagrams were
remade. The repository forbids hand-drawn SVG and forbids titles inside the
canvas; all 28 originals carry both, so converting them is redrawing, not
reformatting. They stay in source/ and the gap is written into the document.

verify-pipeline.py passes. audit-records.py reports no issues.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-04 22:51:59 +09:00

177 lines
29 KiB
XML

<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="2988" viewBox="0 0 1200 2988" role="img">
<title>terminal evidence</title>
<desc>Terminal-style rendering generated from retained command output. Sensitive-looking values are redacted in the visual asset.</desc>
<rect x="1" y="1" width="1198" height="2986" rx="14" fill="#0d1117" stroke="#30363d"/>
<rect x="1" y="1" width="1198" height="44" rx="14" fill="#161b22"/>
<rect x="1" y="30" width="1198" height="14" fill="#161b22"/>
<circle cx="24" cy="22" r="6" fill="#ff5f57"/>
<circle cx="44" cy="22" r="6" fill="#febc2e"/>
<circle cx="64" cy="22" r="6" fill="#28c840"/>
<text x="92" y="27" fill="#8b949e" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace">terminal evidence</text>
<text x="24" y="68" fill="#c9d1d9" font-size="15" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">$ #!/bin/bash
set -euo pipefail
cd /shared/codebase/clean-architecture-backend-template
at() { awk -v s=&quot;$2&quot; -v e=&quot;$3&quot; -</tspan><tspan x="24" dy="22">v n=&quot;$4&quot; &#x27;NR&gt;=s &amp;&amp; NR&lt;=e {printf &quot; %s:%d %s\n&quot;, n, NR, $0}&#x27; &quot;$1&quot;; }
count() {
local out rc
out=$(git grep -lE &quot;$1&quot; </tspan><tspan x="24" dy="22">-- &quot;$2&quot;) &amp;&amp; rc=0 || rc=$?
[ &quot;$rc&quot; -le 1 ] || { echo &quot;SEARCH FAILED rc=$rc : $1&quot; &gt;&amp;2; return 2; }
[ &quot;$rc&quot; -eq 0 ] &amp;&amp; </tspan><tspan x="24" dy="22">printf &#x27;%s\n&#x27; &quot;$out&quot; | grep -c . || echo 0
}
RM=src/adapter/outbound/support/README.md
test -f &quot;$RM&quot;
echo &quot;# README 가 </tspan><tspan x="24" dy="22">적은 세 문장&quot;
at &quot;$RM&quot; 7 11 README.md
at &quot;$RM&quot; 20 25 README.md
echo &quot; README 의 커밋 이력 :&quot;
git log --format=&#x27; %h %</tspan><tspan x="24" dy="22">ad %s&#x27; --date=short -- &quot;$RM&quot;
echo
echo &quot;# 두 파일이 언제 태어났는가&quot;
git log --all --name-status --format=&#x27; C %h %ad %</tspan><tspan x="24" dy="22">s&#x27; --date=short \
-- src/adapter/outbound/support/CLAUDE.md src/adapter/outbound/support/README.md \
| sed &#x27;s#^\t# </tspan><tspan x="24" dy="22"> #&#x27;
echo &quot; README 가 쓰인 커밋의 레지스트리 위치 :&quot;
git show 821fe00c:src/build.gradle | grep -n &#x27;moduleRegistryFile =</tspan><tspan x="24" dy="22"> &#x27; | sed -E &#x27;s#^([0-9]+): *# build.gradle@821fe00c:\1 #&#x27;
echo &quot; modules.json 이 들어온 커밋 :&quot;
git log --all --diff</tspan><tspan x="24" dy="22">-filter=A --format=&#x27; %h %ad %s&#x27; --date=short -- src/config/architecture/modules.json
echo
echo &quot;# 1. 의존 정책의 정</tspan><tspan x="24" dy="22">본이 어디인가&quot;
printf &#x27; src/build.gradle 에서 그 이름이 나오는 줄 : %s 개 (전부)\n&#x27; \
&quot;$({ grep -c &#x27;allowedProjectDep</tspan><tspan x="24" dy="22">endencies&#x27; src/build.gradle || true; })&quot;
{ grep -n &#x27;allowedProjectDependencies&#x27; src/build.gradle || true; } \
| sed -E</tspan><tspan x="24" dy="22"> &#x27;s#^([0-9]+): *# src/build.gradle:\1 #&#x27;
at src/config/architecture/modules.json 41 52 modules.json
echo
echo &quot;# 2.</tspan><tspan x="24" dy="22"> 이 모듈에 CLAUDE.md 가 있는가&quot;
git ls-files -- &#x27;src/adapter/outbound/support/*.md&#x27; | sed &#x27;s#^# #&#x27;
at src/adapter/outbo</tspan><tspan x="24" dy="22">und/support/CLAUDE.md 1 10 support/CLAUDE.md
echo &quot; CLAUDE.md 의 커밋 이력 :&quot;
git log --format=&#x27; %h %ad %s&#x27; --date=s</tspan><tspan x="24" dy="22">hort -- src/adapter/outbound/support/CLAUDE.md
echo
echo &quot;# 3. httpclient 쪽 로거의 이름&quot;
N_OLD=$(count &#x27;OutboundHttpDe</tspan><tspan x="24" dy="22">pendencyLogger&#x27; &#x27;src/**/*.java&#x27;) || exit 2
echo &quot; OutboundHttpDependencyLogger 를 가진 파일 : $N_OLD 개&quot;
printf &#x27; http</tspan><tspan x="24" dy="22">client main 의 이름에 Logger 가 든 파일 : %s 개\n&#x27; \
&quot;$(git ls-files -- &#x27;src/adapter/outbound/httpclient/src/main/**/*</tspan><tspan x="24" dy="22">Logger*.java&#x27; | grep -c . || true)&quot;
printf &#x27; httpclient main 에서 org.slf4j 를 import 하는 파일 : %s 개\n&#x27; \
&quot;$({ git</tspan><tspan x="24" dy="22"> grep -l &#x27;org.slf4j&#x27; -- &#x27;src/adapter/outbound/httpclient/src/main/**/*.java&#x27; || true; } | grep -c . || true)&quot;
printf &#x27; </tspan><tspan x="24" dy="22">httpclient main 의 log.error 호출 : %s 줄\n&#x27; \
&quot;$({ git grep -n &#x27;log\.error\|logger\.error\|LOG\.error&#x27; -- &#x27;src/adapte</tspan><tspan x="24" dy="22">r/outbound/httpclient/src/main/**/*.java&#x27; || true; } | grep -c . || true)&quot;
echo &quot; [자기시험] 없는 이름 OutboundHttpDepe</tspan><tspan x="24" dy="22">ndencyLoggerZZZ : $(count &#x27;OutboundHttpDependencyLoggerZZZ&#x27; &#x27;src/**/*.java&#x27;) 개&quot;
echo &quot; [대조] FailOpenDependencyLogger</tspan><tspan x="24" dy="22"> : $(count &#x27;FailOpenDependencyLogger&#x27; &#x27;src/**/*.java&#x27;) 개&quot;
echo &quot; 그 이름의 이력 :&quot;
git log --all --name-status --forma</tspan><tspan x="24" dy="22">t=&#x27; C %h %ad %s&#x27; --date=short -- &#x27;*OutboundHttpDependencyLogger*&#x27; \
| sed &#x27;s#^\t# #&#x27;
echo
echo &quot;# 4. README </tspan><tspan x="24" dy="22">가 PII 에 대해 적은 것과 로거가 실제로 적는 것&quot;
at &quot;$RM&quot; 24 25 README.md
L=src/adapter/outbound/support/src/main/java/de</tspan><tspan x="24" dy="22">v/caskeleton/adapter/outbound/support/FailOpenDependencyLogger.java
at &quot;$L&quot; 36 48 FailOpenDependencyLogger.java
</tspan></text>
<text x="24" y="662" fill="#8b949e" font-size="13" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">cwd: /shared/codebase/clean-architecture-backend-template</tspan></text>
<text x="24" y="684" fill="#8b949e" font-size="13" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">time: 2026-09-04T06:18:51+00:00 · exit 0</tspan></text>
<line x1="24" y1="698" x2="1176" y2="698" stroke="#30363d"/>
<text x="24" y="738" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"># README 가 적은 세 문장</tspan></text>
<text x="24" y="760" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README.md:7 허용/금지 의존 정책은 `src/build.gradle` 의</tspan></text>
<text x="24" y="782" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README.md:8 `allowedProjectDependencies[&#x27;adapter:outbound:support&#x27;]` 항목이 SSOT 다(이 모듈은 아직 별도</tspan></text>
<text x="24" y="804" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README.md:9 CLAUDE.md 를 두지 않았다). 이 문서는 코드 주석에서 덜어낸 **설계 결정의 근거**를 모아둔 참조용</tspan></text>
<text x="24" y="826" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README.md:10 기록이다 — 코드를 읽다 &quot;왜 이렇게 했나&quot;가 궁금할 때 본다.</tspan></text>
<text x="24" y="848" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README.md:11 </tspan></text>
<text x="24" y="870" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README.md:20 </tspan></text>
<text x="24" y="892" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README.md:21 실패를 ERROR 가 아니라 WARN 으로 로깅한다: cache/messaging/notification 선택형 어댑터는</tspan></text>
<text x="24" y="914" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README.md:22 fail-open 이라 의존성 실패가 나도 use case 는 성공한 것이다 — 관측은 하되 escalate 하지 않는다.</tspan></text>
<text x="24" y="936" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README.md:23 이는 호출자에게 직접 노출되는 hard failure 를 ERROR 로 올리는 `httpclient` 모듈의</tspan></text>
<text x="24" y="958" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README.md:24 `OutboundHttpDependencyLogger` 와 명확히 구분된다. 메서드 시그니처가 본문·수신자·페이로드를</tspan></text>
<text x="24" y="980" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README.md:25 받지 않아 PII 가 로그에 닿지 않는다.</tspan></text>
<text x="24" y="1002" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README 의 커밋 이력 :</tspan></text>
<text x="24" y="1024" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> 821fe00c 2026-07-24 init: 클린 아키텍처 백엔드</tspan></text>
<text x="24" y="1046" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
<text x="24" y="1068" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"># 두 파일이 언제 태어났는가</tspan></text>
<text x="24" y="1090" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> C b3add016 2026-07-28 feat: redis, fileserver, httpclient 런타임 시점 구현 추가</tspan></text>
<text x="24" y="1112" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
<text x="24" y="1134" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">M src/adapter/outbound/support/CLAUDE.md</tspan></text>
<text x="24" y="1156" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> C 821fe00c 2026-07-24 init: 클린 아키텍처 백엔드</tspan></text>
<text x="24" y="1178" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
<text x="24" y="1200" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">A src/adapter/outbound/support/CLAUDE.md</tspan></text>
<text x="24" y="1222" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">A src/adapter/outbound/support/README.md</tspan></text>
<text x="24" y="1244" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README 가 쓰인 커밋의 레지스트리 위치 :</tspan></text>
<text x="24" y="1266" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> build.gradle@821fe00c:558 File moduleRegistryFile = new File(rootProject.projectDir.parentFile, &#x27;.harness/project/modules.y</tspan><tspan x="24" dy="22">aml&#x27;)</tspan></text>
<text x="24" y="1310" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> modules.json 이 들어온 커밋 :</tspan></text>
<text x="24" y="1332" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> b3add016 2026-07-28 feat: redis, fileserver, httpclient 런타임 시점 구현 추가</tspan></text>
<text x="24" y="1354" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
<text x="24" y="1376" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"># 1. 의존 정책의 정본이 어디인가</tspan></text>
<text x="24" y="1398" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> src/build.gradle 에서 그 이름이 나오는 줄 : 3 개 (전부)</tspan></text>
<text x="24" y="1420" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> src/build.gradle:1419 Map&lt;String, Set&lt;String&gt;&gt; allowedProjectDependencies = registry.modules.collectEntries { module -&gt;</tspan></text>
<text x="24" y="1442" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> src/build.gradle:1430 Set&lt;String&gt; governedModules = allowedProjectDependencies.keySet()</tspan></text>
<text x="24" y="1464" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> src/build.gradle:1448 allowedProjectDependencies.each { moduleName, allowed -&gt;</tspan></text>
<text x="24" y="1486" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> modules.json:41 &quot;id&quot;: &quot;adapter-outbound-support&quot;,</tspan></text>
<text x="24" y="1508" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> modules.json:42 &quot;gradle_path&quot;: &quot;:adapter:outbound:support&quot;,</tspan></text>
<text x="24" y="1530" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> modules.json:43 &quot;source_path&quot;: &quot;src/adapter/outbound/support&quot;,</tspan></text>
<text x="24" y="1552" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> modules.json:44 &quot;allowed_dependencies&quot;: [</tspan></text>
<text x="24" y="1574" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> modules.json:45 &quot;domain-core&quot;,</tspan></text>
<text x="24" y="1596" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> modules.json:46 &quot;application-core&quot;,</tspan></text>
<text x="24" y="1618" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> modules.json:47 &quot;shared-contract&quot;</tspan></text>
<text x="24" y="1640" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> modules.json:48 ],</tspan></text>
<text x="24" y="1662" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> modules.json:49 &quot;runtime_memberships&quot;: [</tspan></text>
<text x="24" y="1684" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> modules.json:50 &quot;app-bootstrap&quot;</tspan></text>
<text x="24" y="1706" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> modules.json:51 ]</tspan></text>
<text x="24" y="1728" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> modules.json:52 },</tspan></text>
<text x="24" y="1750" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
<text x="24" y="1772" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"># 2. 이 모듈에 CLAUDE.md 가 있는가</tspan></text>
<text x="24" y="1794" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> src/adapter/outbound/support/CLAUDE.md</tspan></text>
<text x="24" y="1816" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> src/adapter/outbound/support/README.md</tspan></text>
<text x="24" y="1838" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> support/CLAUDE.md:1 # adapter:outbound:support — shared outbound support</tspan></text>
<text x="24" y="1860" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> support/CLAUDE.md:2 </tspan></text>
<text x="24" y="1882" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> support/CLAUDE.md:3 ## Registered identity</tspan></text>
<text x="24" y="1904" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> support/CLAUDE.md:4 </tspan></text>
<text x="24" y="1926" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> support/CLAUDE.md:5 - Module ID: `adapter-outbound-support`</tspan></text>
<text x="24" y="1948" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> support/CLAUDE.md:6 - Gradle path: `:adapter:outbound:support`</tspan></text>
<text x="24" y="1970" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> support/CLAUDE.md:7 - Focused test (derived from Gradle path): `./gradlew :adapter:outbound:support:test --console=plain`</tspan></text>
<text x="24" y="1992" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> support/CLAUDE.md:8 - Runtime baseline: Java 21; repository framework baseline: Spring Boot 4.0.0.</tspan></text>
<text x="24" y="2014" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> support/CLAUDE.md:9 - Registry SSOT: `src/config/architecture/modules.json`.</tspan></text>
<text x="24" y="2036" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> support/CLAUDE.md:10 </tspan></text>
<text x="24" y="2058" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> CLAUDE.md 의 커밋 이력 :</tspan></text>
<text x="24" y="2080" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> b3add016 2026-07-28 feat: redis, fileserver, httpclient 런타임 시점 구현 추가</tspan></text>
<text x="24" y="2102" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> 821fe00c 2026-07-24 init: 클린 아키텍처 백엔드</tspan></text>
<text x="24" y="2124" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
<text x="24" y="2146" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"># 3. httpclient 쪽 로거의 이름</tspan></text>
<text x="24" y="2168" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> OutboundHttpDependencyLogger 를 가진 파일 : 0 개</tspan></text>
<text x="24" y="2190" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> httpclient main 의 이름에 Logger 가 든 파일 : 0 개</tspan></text>
<text x="24" y="2212" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> httpclient main 에서 org.slf4j 를 import 하는 파일 : 0 개</tspan></text>
<text x="24" y="2234" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> httpclient main 의 log.error 호출 : 0 줄</tspan></text>
<text x="24" y="2256" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> [자기시험] 없는 이름 OutboundHttpDependencyLoggerZZZ : 0 개</tspan></text>
<text x="24" y="2278" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> [대조] FailOpenDependencyLogger : 12 개</tspan></text>
<text x="24" y="2300" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> 그 이름의 이력 :</tspan></text>
<text x="24" y="2322" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> C 5f10b791 2026-08-11 chore: record pre-existing uncommitted repository state</tspan></text>
<text x="24" y="2344" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
<text x="24" y="2366" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">D src/adapter/outbound/httpclient/src/main/java/dev/caskeleton/adapter/outbound/httpclient/diagnostics/OutboundHttpDependency</tspan><tspan x="24" dy="22">Logger.java</tspan></text>
<text x="24" y="2410" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">D src/adapter/outbound/httpclient/src/test/java/dev/caskeleton/adapter/outbound/httpclient/diagnostics/OutboundHttpDependency</tspan><tspan x="24" dy="22">LoggerTest.java</tspan></text>
<text x="24" y="2454" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> C 821fe00c 2026-07-24 init: 클린 아키텍처 백엔드</tspan></text>
<text x="24" y="2476" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
<text x="24" y="2498" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">A src/adapter/outbound/httpclient/src/main/java/dev/caskeleton/adapter/outbound/httpclient/diagnostics/OutboundHttpDependency</tspan><tspan x="24" dy="22">Logger.java</tspan></text>
<text x="24" y="2542" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">A src/adapter/outbound/httpclient/src/test/java/dev/caskeleton/adapter/outbound/httpclient/diagnostics/OutboundHttpDependency</tspan><tspan x="24" dy="22">LoggerTest.java</tspan></text>
<text x="24" y="2586" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
<text x="24" y="2608" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"># 4. README 가 PII 에 대해 적은 것과 로거가 실제로 적는 것</tspan></text>
<text x="24" y="2630" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README.md:24 `OutboundHttpDependencyLogger` 와 명확히 구분된다. 메서드 시그니처가 본문·수신자·페이로드를</tspan></text>
<text x="24" y="2652" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> README.md:25 받지 않아 PII 가 로그에 닿지 않는다.</tspan></text>
<text x="24" y="2674" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> FailOpenDependencyLogger.java:36 /** WARN: fail-open adapter — the use case still succeeded, so this is not an ERROR. */</tspan></text>
<text x="24" y="2696" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> FailOpenDependencyLogger.java:37 public void logFailure(</tspan></text>
<text x="24" y="2718" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> FailOpenDependencyLogger.java:38 String dependencyName, String dependencyType, String operation, Throwable cause) {</tspan></text>
<text x="24" y="2740" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> FailOpenDependencyLogger.java:39 log.warn(</tspan></text>
<text x="24" y="2762" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> FailOpenDependencyLogger.java:40 &quot;dependency_name=\&quot;{}\&quot; dependency_type=\&quot;{}\&quot; operation=\&quot;{}\&quot; &quot;</tspan></text>
<text x="24" y="2784" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> FailOpenDependencyLogger.java:41 + &quot;outcome=\&quot;FAILURE\&quot; correlation_id=\&quot;{}\&quot; error=\&quot;{}: {}\&quot;&quot;,</tspan></text>
<text x="24" y="2806" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> FailOpenDependencyLogger.java:42 dependencyName,</tspan></text>
<text x="24" y="2828" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> FailOpenDependencyLogger.java:43 dependencyType,</tspan></text>
<text x="24" y="2850" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> FailOpenDependencyLogger.java:44 operation,</tspan></text>
<text x="24" y="2872" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> FailOpenDependencyLogger.java:45 OutboundCorrelation.current(),</tspan></text>
<text x="24" y="2894" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> FailOpenDependencyLogger.java:46 cause.getClass().getSimpleName(),</tspan></text>
<text x="24" y="2916" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> FailOpenDependencyLogger.java:47 cause.getMessage());</tspan></text>
<text x="24" y="2938" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> FailOpenDependencyLogger.java:48 }</tspan></text>
</svg>