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,143 @@
---
id: wiki-2026-0508-ambition
title: Ambition
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [Drive, Aspiration, Achievement Motivation]
duplicate_of: none
source_trust_level: A
confidence_score: 0.85
verification_status: applied
tags: [psychology, motivation, career, goal-setting]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: na
framework: na
---
# Ambition
## 매 한 줄
> **"매 ambition 은 매 high-effort goal pursuit 의 disposition — 매 status, mastery, 또는 contribution 의 desire"**. 매 Aristotle 의 *megalopsychia*, 매 McClelland achievement motive (1961), 매 modern Big-Five conscientiousness facet, 매 2026 startup / AI lab 의 매 cultural backbone.
## 매 핵심
### 매 3 종류 (McClelland)
- **Achievement (nAch)**: 매 mastery, 매 personal best.
- **Power (nPow)**: 매 influence, 매 hierarchy.
- **Affiliation (nAff)**: 매 belonging — 매 ambition 의 lower component.
### 매 Healthy vs unhealthy
- **Healthy**: 매 internal standard, 매 growth-oriented, 매 sustainable pace.
- **Unhealthy**: 매 zero-sum, 매 status-only, 매 burnout trajectory.
### 매 응용
1. **Career planning**: 매 long-term ambition + short-term milestone.
2. **Team formation**: 매 ambition mismatch 매 conflict source.
3. **Founder evaluation**: 매 VC 매 ambition × execution = 매 outlier prediction.
## 💻 패턴
### Pattern 1: SMART goal 변환
```python
@dataclass
class Goal:
specific: str
measurable: str # KPI
achievable: bool
relevant: str # tied to long-term ambition
time_bound: str # deadline
def from_ambition(amb: str) -> list[Goal]:
# 매 long-term ambition → 매 quarterly SMART goal 분해
return decompose(amb, horizon="90d")
```
### Pattern 2: OKR mapping
```yaml
objective: "Become 매 top-tier ML researcher by 2028"
key_results:
- publish 2 first-author papers at NeurIPS/ICML by 2026 Q4
- build a reproducible research framework with 100+ stars
- maintain weekly peer-reading group (12+ sessions)
```
### Pattern 3: Burnout early-warning
```python
signals = {
"sleep_hours": lambda x: x < 6,
"weekly_exercise_min": lambda x: x < 60,
"non-work social hours": lambda x: x < 3,
"sustained weeks at >55h work": lambda x: x > 8,
}
risk = sum(fn(stats[k]) for k, fn in signals.items())
if risk >= 3:
print("ambition crossing into burnout")
```
### Pattern 4: 매 Ambition × ability matrix
```python
def quadrant(ambition: float, ability: float) -> str:
if ambition > 0.7 and ability > 0.7: return "outlier"
if ambition > 0.7 and ability <= 0.7: return "growth"
if ambition <= 0.7 and ability > 0.7: return "underutilized"
return "stable"
```
### Pattern 5: 매 Long-horizon planning template
```markdown
## 10-year ambition
[북극성]
## 3-year milestones
- [milestone 1]
- [milestone 2]
## 1-year goals
- [...]
## 90-day OKR
- [...]
## 매 weekly action
- [...]
```
## 매 결정 기준
| 상황 | Ambition adjustment |
|---|---|
| 매 chronic exhaustion | 매 scope down — 매 sustainability |
| 매 boredom / plateau | 매 stretch goal — 매 zone of proximal dev |
| 매 imposter syndrome | 매 evidence log — 매 calibration |
| 매 family/health conflict | 매 ambition rebalance — long arc |
**기본값**: 매 ambition × execution × time. 매 raw ambition 만 의 X — 매 daily compounding habit 우선.
## 🔗 Graph
- 부모: [[Habit-Formation]] · [[Purpose]]
- 변형: [[Working-Backwards]] · [[Minimal-Viable-Product]]
- 응용: [[Soft-Skills-Development]] · [[Boundaries]]
- Adjacent: [[Burnout]] · [[Anxiety]] · [[Iteration]]
## 🤖 LLM 활용
**언제**: 매 LLM coach — 매 ambition decomposition (10y → 90d), 매 OKR drafting, 매 burnout signal 모니터링.
**언제 X**: 매 deep value clarification — 매 human therapist / mentor 우선.
## ❌ 안티패턴
- **Ambition without execution**: 매 vision deck 만 매 매년 update.
- **Status-only ambition**: 매 external validation 의 dependence — 매 fragile.
- **Comparison spiral**: 매 social media 비교 — 매 distorted.
- **All-or-nothing horizon**: 매 10y goal 만 보고 매 90d action 의 X.
## 🧪 검증 / 중복
- Verified (McClelland *The Achieving Society* 1961, Duckworth *Grit* 2016, Big Five conscientiousness research).
- 신뢰도 A-.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — McClelland 3 motives + 매 OKR/burnout 패턴 |