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,149 @@
|
||||
---
|
||||
id: wiki-2026-0508-nudge-theory
|
||||
title: Nudge Theory
|
||||
category: 10_Wiki/Topics
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: [Nudge, Choice Architecture, Behavioral Nudge, 넛지]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.9
|
||||
verification_status: applied
|
||||
tags: [behavioral-economics, ux, design, psychology, choice-architecture]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-10
|
||||
github_commit: pending
|
||||
tech_stack:
|
||||
language: typescript
|
||||
framework: ux-design
|
||||
---
|
||||
|
||||
# Nudge Theory
|
||||
|
||||
## 매 한 줄
|
||||
> **"매 choice architecture를 미세 조정하여 freedom of choice를 보존한 채 predictable한 방향으로 행동을 유도."**. Richard Thaler · Cass Sunstein의 *Nudge* (2008) — 2017 Thaler 노벨경제학상. 2026 현재 UX design · public policy · health intervention · LLM safety의 기반 framework.
|
||||
|
||||
## 매 핵심
|
||||
|
||||
### 매 nudge 정의 (Thaler/Sunstein)
|
||||
- 매 small change in choice architecture
|
||||
- 매 predictable behavior change 유도
|
||||
- 매 옵션을 금지하지 않음 (libertarian paternalism)
|
||||
- 매 economic incentive 거의 없음 (cheap)
|
||||
|
||||
### 매 mechanism
|
||||
- **Default**: 매 default option 압도적 영향 (organ donation opt-in vs opt-out — 12% vs 99%).
|
||||
- **Salience**: 매 정보 visibility 증가.
|
||||
- **Framing**: 매 동일 정보, 다른 표현 (90% lean vs 10% fat).
|
||||
- **Social proof**: 매 "X% of users do Y".
|
||||
- **Friction**: 매 desired action은 쉽게, undesired는 hard.
|
||||
|
||||
### 매 응용
|
||||
1. UK Behavioral Insights Team — tax letter "9 of 10 pay on time" → 5% 회수율 증가.
|
||||
2. Spotify "Discover Weekly" → 매 default playlist으로 engagement 증가.
|
||||
3. Apple Health — 매 default 7000 step goal로 average +500 step.
|
||||
|
||||
## 💻 패턴
|
||||
|
||||
### Default opt-in for desired behavior
|
||||
```tsx
|
||||
// BAD: opt-in for 2FA
|
||||
<Checkbox label="Enable 2FA (recommended)" defaultChecked={false} />
|
||||
|
||||
// GOOD: default-on with easy opt-out
|
||||
<Checkbox
|
||||
label="Enable 2FA"
|
||||
defaultChecked={true}
|
||||
helperText="Recommended. You can disable in Settings."
|
||||
/>
|
||||
```
|
||||
|
||||
### Friction: confirm destructive action
|
||||
```tsx
|
||||
function DeleteAccountButton() {
|
||||
return (
|
||||
<ConfirmDialog
|
||||
title="Delete account?"
|
||||
requireType="DELETE my-username" // typed friction
|
||||
cooldownSeconds={5}
|
||||
>
|
||||
<Button variant="danger">Delete</Button>
|
||||
</ConfirmDialog>
|
||||
);
|
||||
}
|
||||
```
|
||||
|
||||
### Social proof nudge
|
||||
```tsx
|
||||
<PricingCard plan="pro" badge="Most popular — 73% of teams choose this" />
|
||||
```
|
||||
|
||||
### Framing — loss aversion
|
||||
```tsx
|
||||
// BAD (gain frame, weaker)
|
||||
<p>Save $120/year with annual billing</p>
|
||||
|
||||
// GOOD (loss frame, stronger; Tversky/Kahneman)
|
||||
<p>Stop paying $10/mo extra — switch to annual</p>
|
||||
```
|
||||
|
||||
### Salience — progress nudge
|
||||
```tsx
|
||||
function ProfileCompletion({ percent }: { percent: number }) {
|
||||
return (
|
||||
<Banner show={percent < 100}>
|
||||
Profile {percent}% complete — add a photo to reach 100%
|
||||
<ProgressBar value={percent} />
|
||||
</Banner>
|
||||
);
|
||||
}
|
||||
```
|
||||
|
||||
### Implementation intention prompt
|
||||
```tsx
|
||||
// "When X happens, I will do Y" — proven habit formation
|
||||
<Onboarding>
|
||||
<p>When will you exercise?</p>
|
||||
<Select options={["Morning", "Lunch", "Evening"]} />
|
||||
<p>Where?</p>
|
||||
<Input placeholder="Living room, gym..." />
|
||||
</Onboarding>
|
||||
```
|
||||
|
||||
## 매 결정 기준
|
||||
| 상황 | Approach |
|
||||
|---|---|
|
||||
| User benefits from default | opt-out default |
|
||||
| User must consciously choose | opt-in, no default |
|
||||
| Discourage harm | friction (confirm, delay) |
|
||||
| Encourage rare valuable action | salience + reminder |
|
||||
| Group conformity helpful | social proof |
|
||||
|
||||
**기본값**: transparent default + easy opt-out — 매 dark pattern과의 차별점.
|
||||
|
||||
## 🔗 Graph
|
||||
- 부모: [[Behavioral_Economics]] · [[Cognitive Bias]]
|
||||
- 변형: [[Choice_Architecture]] · [[Habit_Loop]]
|
||||
- 응용: [[Micro-interactions]] · [[Gamification]]
|
||||
- Adjacent: [[FOMO (Fear of Missing Out)]] · [[Progressive-Disclosure]] · [[매몰_비용_오류_(Sunk_Cost_Fallacy)]]
|
||||
|
||||
## 🤖 LLM 활용
|
||||
**언제**: UX flow 설계, public health/policy, habit-forming product, opt-in/opt-out 결정.
|
||||
**언제 X**: high-stakes informed consent (의료, 금융 — 매 explicit choice 필수), regulated decision (legal contract).
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **Dark pattern (sludge)**: 매 친 user가 아닌 친 vendor — Sunstein 본인이 *Sludge* (2021)로 비판.
|
||||
- **Hidden default**: 매 user 모르게 enable — opt-in의 transparency 무시.
|
||||
- **Manipulation > nudge**: 매 deception (e.g. fake countdown) — ethics 위반.
|
||||
- **Over-nudging**: 매 모든 화면에 nudge — banner blindness.
|
||||
- **No measurement**: 매 A/B test 없이 nudge — direction 불명.
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (Thaler/Sunstein *Nudge* 2008 / 2021 final ed., UK BIT trial reports, Sunstein *Sludge* 2021).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — Nudge theory (Thaler/Sunstein) + UX patterns |
|
||||
Reference in New Issue
Block a user