docs(wiki): fix translation typos in Brief Summary and organize stray files into directories

This commit is contained in:
Antigravity Agent
2026-05-04 15:23:55 +09:00
parent 343107a49f
commit d9b5337388
102 changed files with 157 additions and 152 deletions
@@ -8,7 +8,7 @@ last_reinforced: 2026-05-02
# [[Layered Architecture Pattern]]
## 📌 Brief Summary
## 📌 Brief Summary
Layered Architecture Pattern(계층형 아키텍처 패턴 또는 N-티어 아키텍처)은 소프트웨어 시스템을 각기 다른 역할을 수행하는 수평적인 계층(Layer)들로 분할하는 가장 보편적인 구조적 설계 방식입니다 [1-3]. 일반적으로 프레젠테이션, 비즈니스(도메인), 영속성(데이터) 등의 계층으로 나뉘며, 각 계층은 자신 바로 아래의 계층과 주로 통신합니다 [4, 5]. 이 패턴은 관심사의 분리(Separation of Concerns)를 통해 모듈성과 유지보수성을 높이는 것을 핵심 목표로 합니다 [2, 4, 6].
## 📖 Core Content