[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-05-10 22:08:15 +09:00
parent 21ac3ed255
commit 504fd5fb42
3011 changed files with 380280 additions and 206977 deletions
+134 -42
View File
@@ -2,66 +2,158 @@
id: wiki-2026-0508-ikigai-이키가이
title: Ikigai (이키가이)
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [P-Reinforce-AUTO-IKIG-001]
aliases: [Ikigai, 이키가이, life purpose, Japanese philosophy]
duplicate_of: none
source_trust_level: A
source_trust_level: B
confidence_score: 0.85
tags: [auto-reinforced, ikigai, Purpose, motivation, well-being, life-Philosophy, meaning-of-life]
verification_status: applied
tags: [philosophy, japanese, ikigai, well-being, purpose, career]
raw_sources: []
last_reinforced: 2026-04-20
last_reinforced: 2026-05-10
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
tech_stack:
language: Philosophy / Career
applicable_to: [Career Coaching, Life Planning]
---
# [[Ikigai (이키가이)|Ikigai (이키가이)]]
# Ikigai (이키가이)
## 📌 한 줄 통찰 (The Karpathy Summary)
> "아침에 눈을 뜨는 이유: 내가 좋아하는 일, 잘하는 일, 세상에 필요한 일, 그리고 돈이 되는 일이라는 네 갈래 길이 만나는 지점에서 탄생하는, 삶에 활력을 불어넣는 나만의 의미이자 원동력."
## 한 줄
> **"매 living 의 reason"**. 매 Japanese concept (sing 'i-ki-gai'). 매 modern Western 4-circle Venn (love + good at + paid + needed) 의 simplified version. 매 actual Japanese 의 의 의 더 broader (small daily joys 의 포함).
## 📖 구조화된 지식 (Synthesized Content)
이키가이(Ikigai)는 일본 오키나와에서 유래한 '삶의 의미' 혹은 '존재의 이유'를 뜻하는 철학입니다.
## 매 핵심
1. **4개 영역의 교집합**:
* **Passion (열정)**: 좋아하는 것 + 잘하는 것.
* **Mission (사명)**: 좋아하는 것 + 세상이 필요로 하는 것.
* **Vocation (천직)**: 세상이 필요로 하는 것 + 보상을 받을 수 있는 것.
* **Profession (직업)**: 잘하는 것 + 보상을 받을 수 있는 것.
2. **왜 중요한가?**:
* 번아웃과 허무주의가 만연한 현대 사회에서 개인이 장기적으로 몰입하고 행복을 유지할 수 있는 지적 지도를 제공함. ([[Flow-State|Flow-State]]의 상위 구조와 연결)
### 매 popular Western model
- **What you LOVE**.
- **What you're GOOD AT**.
- **What world NEEDS**.
- **What you can be PAID FOR**.
- 매 intersection = ikigai.
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- **과거 데이터와의 충돌**: 과거에는 직업적 성공(돈+잘함)만을 최우선 시 하는 정책이 지배적이었으나, 현대 정책은 정신적 풍요와 사회적 공헌(좋아함+세상 필요)의 균형을 찾는 '전인적 성공 정책'으로 확장됨(RL Update).
- **정책 변화(RL Update)**: 인공지능이 인간의 많은 노동을 대체하려는 시대 정책 속에서, 인간만이 가질 수 있는 고유한 '의미 부여 정책'이자 '존재의 증명 정책'으로서 이키가이의 가치가 더욱 재조명받고 있음.
### 매 actual Japanese
- 매 daily small joys + reasons to wake.
- 매 Garcia & Miralles "Ikigai" book (2016) 의 의 popularize.
- 매 Mieko Kamiya 의 origin (1966).
- 매 not necessarily career — 매 daily life satisfaction.
## 🔗 지식 연결 (Graph)
- [[Flow-State|Flow-State]], [[Creativity Research|Creativity Research]], [[Dopamine-Modeling|Dopamine-Modeling]], [[Homeostasis (항상성)|Homeostasis (항상성)]], [[Empathy-in-AI|Empathy-in-AI]]
- **Modern Tech/Tools**: Ikigai diagrams, Life coaching, Self-[[Reflection|Reflection]] [[Journaling|Journaling]] apps.
---
### 매 Mieko Kamiya 7 needs
1. Life satisfaction.
2. Change & growth.
3. Bright future.
4. Resonance.
5. Freedom.
6. Self-actualization.
7. Meaning & value.
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### 매 응용
1. Career coaching.
2. Retirement planning.
3. Self-reflection.
4. Workplace meaning.
**언제 이 지식을 쓰는가:**
- *(TODO)*
## 💻 패턴
**언제 쓰면 안 되는가:**
- *(TODO)*
### 4-circle assessment
```python
def ikigai_quadrant(loves, good_ats, world_needs, paid_for):
return {
'passion': set(loves) & set(good_ats),
'mission': set(loves) & set(world_needs),
'profession': set(good_ats) & set(paid_for),
'vocation': set(world_needs) & set(paid_for),
'ikigai': set(loves) & set(good_ats) & set(world_needs) & set(paid_for),
}
```
## 🧪 검증 상태 (Validation)
### Daily ikigai journal
```python
def daily_journal_prompts():
return [
"What did I look forward to today?",
"What small moment brought joy?",
"What did I learn about myself?",
"What did I do well?",
"Whose day did I make better?",
]
```
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
### Career fit (Western)
```python
def career_fit(role, self_assessment):
score = 0
if role.tasks_loved > 0.5: score += 2
if role.skill_match > 0.7: score += 2
if role.contribution > 0.5: score += 1
if role.compensation > self_assessment.minimum: score += 1
return score / 6 # 매 0-1
```
## 🧬 중복 검사 (Duplicate Check)
### LLM coaching
```python
def ikigai_coach(user_responses, llm):
prompt = f"""You are a career & life coach using ikigai framework.
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
User responses:
- Loves: {user_responses.loves}
- Skills: {user_responses.skills}
- Values: {user_responses.values}
- Life situation: {user_responses.situation}
## 🕓 변경 이력 (Changelog)
Output:
1. 3 specific career/life directions matching ikigai
2. Skills to develop
3. Small daily ikigai practices (Japanese-style)
4. Acknowledge: ikigai 매 perfect 4-circle 의 X — 매 daily joy 의 의 OK"""
return llm.generate(prompt)
```
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
### Reflection schedule
```yaml
ikigai_practice:
daily:
- 5min morning intention
- 5min evening reflection (what brought joy)
weekly:
- 30min review of meaningful moments
quarterly:
- 1hr direction check
annual:
- full life review
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Career change | 4-circle Venn |
| Daily life | Mieko Kamiya 7 needs |
| Western audience | Pop ikigai (4-circle) |
| Japanese authentic | Daily small joys |
**기본값**: 매 frame 의 introduce + 매 don't force perfect intersection + 매 honor daily ikigai.
## 🔗 Graph
- 부모: [[Philosophy]] · [[Career]]
- 변형: [[Mieko-Kamiya-Ikigai]]
- 응용: [[Career-Coaching]] · [[Retirement-Planning]]
- Adjacent: [[Eudaimonia-and-Well-being]] · [[Meaning-Making]]
## 🤖 LLM 활용
**언제**: Career coaching. Self-reflection.
**언제 X**: Strict career advice (use professional).
## ❌ 안티패턴
- **Pop ikigai 의 perfect intersection 의 force**: 매 frustrate.
- **Career-only**: 매 daily joy 의 ignore.
- **Misappropriation**: 매 Western purified version 의 actual 으로 confuse.
## 🧪 검증 / 중복
- Verified (Garcia & Miralles 2016, Kamiya original — Western popularization).
- 신뢰도 B.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — 4-circle + Kamiya + practice |