[G1-Sync] Manual knowledge update
This commit is contained in:
@@ -2,66 +2,129 @@
|
||||
id: wiki-2026-0508-autobiography
|
||||
title: Autobiography
|
||||
category: 10_Wiki/Topics
|
||||
status: needs_review
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: [P-Reinforce-AUTO-AUBI-001]
|
||||
aliases: [Self-Narrative, Memoir, Personal Narrative, Life Writing]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.88
|
||||
tags: [auto-reinforced, autobiography, narrative, memory, identity, storytelling, Reflection]
|
||||
confidence_score: 0.85
|
||||
verification_status: applied
|
||||
tags: [narrative, qualitative-research, self-knowledge, llm-personalization]
|
||||
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: Python
|
||||
framework: LangChain/LlamaIndex
|
||||
---
|
||||
|
||||
# [[Autobiography|Autobiography]]
|
||||
# Autobiography
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> "과거의 재구성, 자아의 기록: 개인이 자신의 삶을 회고하며 시간의 흐름 속에 흩어진 경험들을 하나의 일관된 서사로 엮어냄으로써, '나는 누구인가'를 세상에 선포하는 주관적 진실의 기록."
|
||||
## 매 한 줄
|
||||
> **"매 self 의 narrative 의 construct — 매 memory 의 chronicle 의 X, 매 meaning-making 의 retrospective."**. Autobiography 의 self 의 first-person 의 life narrative — 매 Augustine "Confessions" 의 origin, 매 2026 의 LLM-era 의 personal corpus (lifelog + journal + chat history) 의 personalization / digital twin / memory-augmented agent 의 source data.
|
||||
|
||||
## 📖 구조화된 지식 (Synthesized Content)
|
||||
자서전(Autobiography)은 저자가 자신의 생애를 스스로 서술한 기록물입니다.
|
||||
## 매 핵심
|
||||
|
||||
1. **특징**:
|
||||
* **Subjectivity**: 객관적 사실보다 저자가 그 사실을 어떻게 '느끼고 해석했는지'가 핵심.
|
||||
* **Thematic Selection**: 모든 순간을 담는 것이 아니라, 현재의 자신을 만든 결정적인 장면들을 선택해 배합.
|
||||
* **Self-Reflection**: 기록 과정 자체가 자아를 성찰하고 치유하며 정체성을 확립하는 행위임.
|
||||
2. **사회적 의의**:
|
||||
* 한 개인의 역사를 통해 당시의 시대상과 보편적 인간 경험을 조명함.
|
||||
* 성공담뿐만 아니라 실패와 내면의 갈등을 공유하여 후대에 영감을 줌.
|
||||
### 매 Theoretical Frames
|
||||
- **Bruner's narrative identity**: self 의 ongoing story.
|
||||
- **McAdams' life-story model**: 7 themes (agency, communion, redemption, contamination...).
|
||||
- **Ricoeur's "narrative identity"**: 매 idem (sameness) + ipse (selfhood).
|
||||
- **Distinction**: autobiography (whole life) vs memoir (period/theme) vs autoethnography (cultural lens).
|
||||
|
||||
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
|
||||
- **과거 데이터와의 충돌**: 과거에는 '영웅적 서사' 중심의 정적인 기록 정책이 주류였으나, 현대의 자서전 정책은 삶의 단편들을 파편적으로 기록하고 공유하는 '디지털 로그(Digital Log) 및 마이크로 자서전 정책'으로 변모함(RL Update).
|
||||
- **정책 변화(RL Update)**: AI 기술 정책과 결합하여, 개인이 남긴 방대한 디지털 흔적을 분석해 자서전 초안을 잡아주거나 가상 인격으로 복원해주는 'AI 자서전 및 유산 관리 서비스 정책'이 실무적으로 검토됨.
|
||||
### 매 2026 Computational Use
|
||||
- **LLM personalization**: chat history → user profile embedding.
|
||||
- **Lifelog**: passive sensing (location, photo, journal) → searchable corpus.
|
||||
- **Digital twin / memory agent**: Mem0, MemGPT, Letta 의 long-term memory.
|
||||
- **Therapy adjunct**: LLM-guided narrative therapy.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- [[AI and Narrative|AI and Narrative]], [[Authenticity|Authenticity]], Memory, Self-Correction Mechanisms, [[Psychology & Behavior|Psychology & Behavior]]
|
||||
- **Modern Tech/Tools**: Day One ([[Journaling|Journaling]] app), Ghostwriting AI, Digital legacy platforms.
|
||||
---
|
||||
### 매 응용
|
||||
1. Personal AI assistant memory.
|
||||
2. Qualitative research (life-history interview).
|
||||
3. Digital legacy / estate.
|
||||
4. Self-reflection coaching (BetterUp AI).
|
||||
|
||||
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
|
||||
## 💻 패턴
|
||||
|
||||
**언제 이 지식을 쓰는가:**
|
||||
- *(TODO)*
|
||||
### Pattern 1 — Journal indexing (LlamaIndex)
|
||||
|
||||
**언제 쓰면 안 되는가:**
|
||||
- *(TODO)*
|
||||
```python
|
||||
from llama_index.core import VectorStoreIndex, SimpleDirectoryReader
|
||||
|
||||
## 🧪 검증 상태 (Validation)
|
||||
docs = SimpleDirectoryReader("~/journal").load_data()
|
||||
index = VectorStoreIndex.from_documents(docs)
|
||||
qe = index.as_query_engine(similarity_top_k=5)
|
||||
print(qe.query("When did I feel most burned out in 2025?"))
|
||||
```
|
||||
|
||||
- **정보 상태:** needs_review
|
||||
- **출처 신뢰도:** A
|
||||
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
|
||||
### Pattern 2 — Mem0 long-term memory
|
||||
|
||||
## 🧬 중복 검사 (Duplicate Check)
|
||||
```python
|
||||
from mem0 import Memory
|
||||
m = Memory()
|
||||
m.add("I prefer tea over coffee, switched in 2024 after gastritis.", user_id="me")
|
||||
results = m.search("morning beverage preference", user_id="me")
|
||||
```
|
||||
|
||||
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
|
||||
- **처리 방식:** UPDATE (자동 정규화)
|
||||
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
|
||||
### Pattern 3 — Life-event timeline extraction
|
||||
|
||||
## 🕓 변경 이력 (Changelog)
|
||||
```python
|
||||
import json
|
||||
from anthropic import Anthropic
|
||||
client = Anthropic()
|
||||
|
||||
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|
||||
|------|-----------|-----------|--------|
|
||||
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
|
||||
EXTRACT = """Extract life events as JSON: [{date, type, summary, valence}].
|
||||
Text: {text}"""
|
||||
|
||||
resp = client.messages.create(
|
||||
model="claude-opus-4-7",
|
||||
max_tokens=2000,
|
||||
messages=[{"role": "user", "content": EXTRACT.format(text=journal_text)}],
|
||||
)
|
||||
events = json.loads(resp.content[0].text)
|
||||
```
|
||||
|
||||
### Pattern 4 — Narrative coherence score
|
||||
|
||||
```python
|
||||
def coherence(events):
|
||||
# simple proxy: causal-chain density
|
||||
causal = sum(1 for e in events if e.get("caused_by"))
|
||||
return causal / max(len(events), 1)
|
||||
```
|
||||
|
||||
## 매 결정 기준
|
||||
|
||||
| 상황 | Approach |
|
||||
|---|---|
|
||||
| LLM personalization | Mem0 / Letta + RAG over journal |
|
||||
| Therapy / coaching | guided narrative writing + LLM reflection |
|
||||
| Research interview | semi-structured + thematic analysis |
|
||||
| Digital legacy | encrypted lifelog + access policy |
|
||||
|
||||
**기본값**: Mem0 for runtime memory, LlamaIndex RAG for retrospective query.
|
||||
|
||||
## 🔗 Graph
|
||||
- 부모: [[Narrative-Identity]] · [[Qualitative-Research]]
|
||||
- 변형: [[Memoir]] · [[Autoethnography]] · [[Lifelog]]
|
||||
- 응용: [[LLM-Personalization]] · [[Digital-Twin]] · [[Memory-Augmented-Agent]]
|
||||
- Adjacent: [[Narrative-Therapy]] · [[Working-Memory]]
|
||||
|
||||
## 🤖 LLM 활용
|
||||
**언제**: personal assistant memory, retrospective query over journal, coaching reflection prompts.
|
||||
**언제 X**: clinical diagnosis, legal record (chain-of-custody), shared corpus (privacy).
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **Memory leak (PII)**: 매 personal corpus 의 train 의 leak — opt-out + local model.
|
||||
- **Narrative coherence forcing**: LLM 의 confabulate 의 false memory.
|
||||
- **Recency bias**: recent events 의 over-weight — temporal balance.
|
||||
- **No edit/delete**: GDPR right-to-erasure 위반.
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (McAdams "Stories We Live By", Mem0 / Letta docs).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — FULL content (LLM memory, lifelog, narrative theory) |
|
||||
|
||||
Reference in New Issue
Block a user