feat: 문서 구조 변경 및 tech-visual 스킬 추가

This commit is contained in:
DongHyeonka
2026-09-04 18:20:00 +09:00
parent 43901f0abf
commit 2efb7ee1f2
683 changed files with 61180 additions and 10479 deletions
@@ -0,0 +1,18 @@
%% 공개 화면 한 줄까지 값이 지나는 열한 개의 경계 — 다섯 묶음
%% question: 공개 화면 한 줄의 값은 어느 경계를 순서대로 지나며, 그중 어디까지가 백엔드이고 어디부터가 프론트엔드인가?
flowchart LR
subgraph g_backend["tech-log-backend"]
n0[("저장")]
n1["백엔드 조립"]
end
subgraph g_wire["전선 (HTTP)"]
n2["HTTP envelope"]
end
subgraph g_frontend["tech-log-frontend"]
n3["프론트엔드 조립"]
n4["화면 컴포넌트"]
end
n0 -->|"SQL 조회"| n1
n1 -->|"HTTP 응답"| n2
n2 -->|"HTTP 수신"| n3
n3 -->|"화면 한 줄"| n4