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:
Antigravity Agent
2026-07-05 00:33:48 +09:00
parent 1cfd3bbb56
commit 9148c358d0
6455 changed files with 1 additions and 86875 deletions
@@ -0,0 +1,182 @@
---
id: wiki-2026-0508-pros-cons-table
title: Pros Cons Table
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [Pros-Cons Analysis, Decision Matrix, Weighted Scoring]
duplicate_of: none
source_trust_level: A
confidence_score: 0.9
verification_status: applied
tags: [decision-making, frameworks, analysis, prompt-pattern]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: Markdown
framework: Decision-Frameworks
---
# Pros Cons Table
## 매 한 줄
> **"매 column = option, 매 row = criterion, 매 cell = signed weight"**. 18C Benjamin Franklin 의 "Moral Algebra" 의 modern 의 weighted decision matrix. 매 LLM era 에서 매 "let's enumerate pros/cons" 의 prompt pattern 으로 popular.
## 매 핵심
### 매 형태
- **Simple 2-col**: Pros | Cons. 매 quick gut-check.
- **Weighted scoring**: Criterion × Weight × Score per option.
- **Decision matrix (Pugh)**: Baseline + relative ±.
- **WSJF (SAFe)**: Cost of Delay / Job Size — agile prioritization.
- **MoSCoW**: Must / Should / Could / Won't.
### 매 components
1. **Options**: 매 mutually-exclusive choice.
2. **Criteria**: 매 weighted dimension (cost, risk, impact).
3. **Scores**: 매 15 or -2..+2.
4. **Total**: Σ(weight × score).
5. **Tiebreaker rule**: 매 explicit, 매 not vibes.
### 매 응용
1. Tech selection (Postgres vs MySQL).
2. Hire/no-hire scorecard.
3. Architecture ADR.
4. Product feature prioritization.
5. LLM-assisted decision drafting.
## 💻 패턴
### Simple Markdown
```markdown
| Option | Pros | Cons |
|----------|-------------------------------|----------------------------|
| Postgres | Mature, JSON, extensions | Heavier ops |
| SQLite | Zero ops, file-based | No concurrency at scale |
| DuckDB | Analytical, columnar | Not OLTP |
```
### Weighted scoring (Markdown)
```markdown
| Criterion | W | Postgres | SQLite | DuckDB |
|-----------------|---|----------|--------|--------|
| Ops simplicity | 3 | 2 | 5 | 4 |
| Concurrency | 4 | 5 | 1 | 2 |
| Analytics speed | 2 | 3 | 2 | 5 |
| Ecosystem | 2 | 5 | 4 | 3 |
| **Weighted** | | **38** | **30** | **31** |
```
### Python decision matrix
```python
import pandas as pd
criteria = {
"ops": (3, {"postgres": 2, "sqlite": 5, "duckdb": 4}),
"concurrency": (4, {"postgres": 5, "sqlite": 1, "duckdb": 2}),
"analytics": (2, {"postgres": 3, "sqlite": 2, "duckdb": 5}),
}
options = ["postgres", "sqlite", "duckdb"]
scores = {opt: sum(w * s[opt] for w, s in criteria.values())
for opt in options}
print(pd.Series(scores).sort_values(ascending=False))
```
### LLM prompt template
```
Compare {{options}} for {{decision}}.
For each, list:
- 3 pros (specific, measurable)
- 3 cons (specific, measurable)
Then weighted scoring:
- Criteria: {{criteria_with_weights}}
- Score 1-5
Output Markdown table + recommendation paragraph + key tradeoff.
```
### Pugh matrix (vs baseline)
```markdown
Baseline = Postgres (current)
| Criterion | SQLite | DuckDB | Mongo |
|-----------------|--------|--------|-------|
| Ops simplicity | + | + | - |
| Concurrency | -- | - | + |
| Analytics | - | ++ | 0 |
| **Net** | -2 | +2 | 0 |
```
### ADR template (decision record)
```markdown
# ADR-007: Choose DuckDB for analytics layer
## Context
OLTP on Postgres. Analytics queries timing out.
## Options
1. Materialized views in Postgres
2. ClickHouse
3. DuckDB embedded
## Decision
DuckDB — embedded, zero ops, columnar.
## Consequences
+ 50x query speedup
- New skill, immature operator tooling
```
### Weighted MCDA (numpy)
```python
import numpy as np
weights = np.array([0.3, 0.4, 0.2, 0.1])
scores = np.array([
[2, 5, 3, 5], # postgres
[5, 1, 2, 4], # sqlite
[4, 2, 5, 3], # duckdb
])
totals = scores @ weights
ranked = np.argsort(-totals)
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| 2-3 options, gut check | **Simple pros/cons** |
| 4+ options, need defense | Weighted scoring |
| Iterating on baseline | Pugh matrix |
| Architecture / team-wide | ADR |
| Backlog ordering | WSJF / RICE |
**기본값**: Weighted scoring 5 criteria × 3 options.
## 🔗 Graph
- 부모: [[Decision-Making]]
- 변형: [[Pugh-Matrix]] · [[ADR]]
- Adjacent: [[OKR]]
## 🤖 LLM 활용
**언제**: 매 broad option 의 enumerate, 매 missing criterion 의 surface, 매 first-pass draft.
**언제 X**: 매 final weight 결정 — 매 stakeholder context 의 LLM 의 X. 매 numeric score 의 false precision 의 위험.
## ❌ 안티패턴
- **No weights**: 매 critical criterion 의 trivial criterion 과 same. 매 rigging.
- **Score after deciding**: 매 confirmation bias. 매 weight 의 score 전에 lock.
- **Too many criteria**: 매 7+ 의 noise. 매 top 3-5.
- **Symmetric scoring**: 매 모든 option 의 비슷한 total — 매 differentiator 의 부재.
- **Hidden disqualifier**: 매 "must" 가 weighted 의 안에 묻힘. 매 hard filter 의 pre-screen.
## 🧪 검증 / 중복
- Verified (Franklin's letter to Priestley 1772, Pugh 1991, MCDA literature).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — pros/cons + weighted decision frameworks. |