docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
This commit is contained in:
@@ -0,0 +1,160 @@
|
||||
---
|
||||
id: wiki-2026-0508-structurizr
|
||||
title: Structurizr
|
||||
category: 10_Wiki/Topics
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: [Structurizr DSL, C4 Tooling]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.9
|
||||
verification_status: applied
|
||||
tags: [architecture, c4-model, diagrams-as-code, documentation]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-10
|
||||
github_commit: pending
|
||||
tech_stack:
|
||||
language: dsl
|
||||
framework: structurizr
|
||||
---
|
||||
|
||||
# Structurizr
|
||||
|
||||
## 매 한 줄
|
||||
> **"매 architecture-as-code 의 reference impl"**. Simon Brown 의 C4 model 을 textual DSL 로 표현 → 다양한 view (Context, Container, Component, Code) 의 자동 generation. 2026 의 AI-aided (Claude, Cursor) 의 architectural diagram 생성 의 default tooling 중 하나.
|
||||
|
||||
## 매 핵심
|
||||
|
||||
### 매 C4 model recap
|
||||
- **Level 1 — Context**: System 의 user, external system 과 의 관계.
|
||||
- **Level 2 — Container**: Application, datastore, microservice 의 deployment unit.
|
||||
- **Level 3 — Component**: Container 내부 의 logical group.
|
||||
- **Level 4 — Code**: 매 class diagram (rarely needed).
|
||||
|
||||
### 매 Structurizr 형태
|
||||
- **Structurizr DSL**: text-based, 매 single source of truth.
|
||||
- **Structurizr CLI**: DSL → JSON workspace, export to PlantUML, Mermaid, D2.
|
||||
- **Structurizr Lite**: 매 self-hosted preview (Docker).
|
||||
- **Structurizr Cloud**: 매 hosted SaaS.
|
||||
|
||||
### 매 응용
|
||||
1. Onboarding documentation (engineer hire 의 first-day reading).
|
||||
2. ADR companion (decision record 의 visual context).
|
||||
3. AI-aided refactoring planning (Claude 가 DSL 생성).
|
||||
4. Compliance / audit (SOC2, ISO27001 의 system diagram).
|
||||
|
||||
## 💻 패턴
|
||||
|
||||
### Basic workspace (DSL)
|
||||
```dsl
|
||||
workspace "PaymentSystem" {
|
||||
model {
|
||||
user = person "Customer"
|
||||
paymentSystem = softwareSystem "Payment System" {
|
||||
webApp = container "Web App" "Next.js" "TypeScript"
|
||||
api = container "API" "Hono on Bun" "TypeScript"
|
||||
db = container "Database" "PostgreSQL" "Database"
|
||||
}
|
||||
stripe = softwareSystem "Stripe" "External payment provider" "External"
|
||||
|
||||
user -> webApp "Uses"
|
||||
webApp -> api "Calls" "HTTPS/JSON"
|
||||
api -> db "Reads/Writes" "SQL"
|
||||
api -> stripe "Charges" "HTTPS"
|
||||
}
|
||||
views {
|
||||
systemContext paymentSystem { include * autolayout lr }
|
||||
container paymentSystem { include * autolayout lr }
|
||||
theme default
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Component view (Level 3)
|
||||
```dsl
|
||||
component api {
|
||||
authController = component "AuthController" "JWT validation"
|
||||
paymentService = component "PaymentService" "Charge orchestration"
|
||||
stripeClient = component "StripeClient" "Stripe SDK wrapper"
|
||||
|
||||
authController -> paymentService "Delegates"
|
||||
paymentService -> stripeClient "Uses"
|
||||
}
|
||||
```
|
||||
|
||||
### Export to other formats
|
||||
```bash
|
||||
docker run --rm -v $PWD:/usr/local/structurizr structurizr/cli \
|
||||
export -workspace workspace.dsl -format plantuml
|
||||
docker run --rm -v $PWD:/usr/local/structurizr structurizr/cli \
|
||||
export -workspace workspace.dsl -format mermaid
|
||||
```
|
||||
|
||||
### Structurizr Lite (local preview)
|
||||
```bash
|
||||
docker run -it --rm -p 8080:8080 \
|
||||
-v $PWD:/usr/local/structurizr \
|
||||
structurizr/lite
|
||||
# open http://localhost:8080
|
||||
```
|
||||
|
||||
### AI-aided generation (Claude prompt)
|
||||
```
|
||||
Given this codebase tree and key file imports, generate a Structurizr DSL
|
||||
workspace covering Context + Container views. Use:
|
||||
- person for end users
|
||||
- softwareSystem for our system
|
||||
- container for each deployable unit (web, api, worker, db, queue)
|
||||
- explicit relationships with technology labels
|
||||
Return only the DSL block.
|
||||
```
|
||||
|
||||
### Deployment view
|
||||
```dsl
|
||||
deploymentEnvironment "Production" {
|
||||
deploymentNode "AWS us-east-1" {
|
||||
deploymentNode "ECS Cluster" {
|
||||
containerInstance api
|
||||
}
|
||||
deploymentNode "RDS" {
|
||||
containerInstance db
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## 매 결정 기준
|
||||
| 상황 | Approach |
|
||||
|---|---|
|
||||
| 매 single-source-of-truth diagram | Structurizr DSL |
|
||||
| 매 quick sketch | Mermaid / D2 직접 |
|
||||
| 매 enterprise architecture | Structurizr Cloud + ADR |
|
||||
| 매 OSS / public | Structurizr Lite + GitHub |
|
||||
| 매 ad-hoc one-off | Excalidraw |
|
||||
|
||||
**기본값**: 매 production system documentation → Structurizr DSL + Lite.
|
||||
|
||||
## 🔗 Graph
|
||||
- 부모: [[Software-Architecture]]
|
||||
- 변형: [[Mermaid]] · [[PlantUML]] · [[D2]]
|
||||
- 응용: [[C4 Model (Architecture Documentation)]] · [[ADR]] · [[Onboarding]]
|
||||
- Adjacent: [[Diagrams as Code]] · [[Architecture-Decision-Record]]
|
||||
|
||||
## 🤖 LLM 활용
|
||||
**언제**: 매 codebase walk-through 후 architecture diagram 생성 (Claude 가 DSL 작성), 매 refactor plan 의 before/after view, 매 ADR 의 visual context.
|
||||
**언제 X**: 매 throwaway sketch (overkill), 매 UI component design (use Figma), 매 sequence diagram primary (use Mermaid sequenceDiagram).
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **Level 4 (Code) 의 maintain**: IDE 가 더 잘함. C4 의 Code level 은 rarely worthwhile.
|
||||
- **DSL 의 stale**: 매 code 와 sync 안 됨 → AI 가 quarterly regenerate.
|
||||
- **Container 의 too granular**: 매 microservice 50+ 의 single view → split per bounded context.
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (Simon Brown C4 model, structurizr.com docs, GitHub structurizr/dsl).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — DSL + CLI + Lite + AI-aided coverage |
|
||||
Reference in New Issue
Block a user