--- id: wiki-2026-0508-ai-humanism title: AI Humanism category: 10_Wiki/Topics status: verified canonical_id: self aliases: [AI νœ΄λ¨Έλ‹ˆμ¦˜, human-centric AI, augmented intelligence, co-intelligence, AI for humans] duplicate_of: none source_trust_level: B confidence_score: 0.85 verification_status: conceptual tags: [ai-ethics, philosophy, human-agency, augmentation, co-intelligence, ux-design, ai-policy] raw_sources: [] last_reinforced: 2026-05-09 github_commit: pending inferred_by: Claude Opus 4.7 (manual cleanup 2026-05-09) tech_stack: language: philosophy / process applicable_to: [Product Design, UX, Policy, Ethics] --- # AI Humanism ## πŸ“Œ ν•œ 쀄 톡찰 (The Karpathy Summary) > **AI = 인간 의 replacement X, 인간 의 augmentation**. λ§€ design / policy 의 인간 dignity 의 center. **Human agency + augmentation + empathy** 의 3 axis. Mollick 의 "Co-intelligence", IBM 의 "Augmented Intelligence" 의 modern formulation. ## πŸ“– κ΅¬μ‘°ν™”λœ 지식 (Synthesized Content) ### 핡심 κ°€μΉ˜ (3 axis) #### 1. Human Agency (인간 κ²°μ •κΆŒ) - λ§€ critical decision 의 human final. - λ§€ user 의 control / choice. - λ§€ AI 의 advisory role. - "Algorithm 이 κ²°μ • ν–ˆλ‹€" 의 excuse 의 reject. #### 2. Augmentation > Replacement - λ§€ task 의 AI 의 partner. - λ§€ human capability 의 amplification. - λ§€ unique human strength (creativity, judgment, empathy) 의 preserve. - "Centaur" model (chess: human + AI > AI alone, 2010+ 의 evidence). #### 3. Empathy & Morality - λ§€ AI design 의 affective awareness. - λ§€ ethical limit 의 explicit. - λ§€ user wellbeing 의 priority. - λ§€ vulnerable group (minor, elder) 의 special care. ### λ§€ 인접 movement - **Humane Tech** (Tristan Harris): λ§€ user wellbeing 의 design. - **Slow AI** (analogous to slow food): λ§€ thoughtful adoption. - **Critical AI** (academic): λ§€ power dynamic 의 critique. - **Human-Centered AI** (Stanford HAI): research framework. ### λ§€ application area #### Education - AI κ°€ personalized tutor (Khan Academy 의 Khanmigo). - λ§€ student 의 own pace. - Teacher 의 augment X replace. - Critical thinking 의 emphasize. #### Healthcare - AI 의 diagnosis aid (final = doctor). - Empathic communication. - Patient autonomy. - "AI 의 medical advice" 의 disclaimer. #### Creative work - λ§€ artist 의 tool (no replace). - λ§€ originality 의 attribution. - Human-curated dataset. - λ§€ AI-generated 의 transparency. #### Workplace - λ§€ employee 의 augment (boring task automation). - λ§€ high-judgment work 의 human. - Reskilling support. - λ§€ AI surveillance 의 limit. ### 함정 / antithesis #### "AI Solutionism" λ§€ problem 의 AI λ‹΅ 의 κ°€μ •. - λ§€ social problem 의 root cause (X technology). - λ§€ AI 의 μƒˆ problem 도 (energy, bias). #### "Job replacement narrative" - λ§€ worker 의 fear / motivation 의 weaponize. - λ§€ vendor 의 hype + customer 의 anxiety. - Reality: replacement κ°€ task, not job (Acemoglu). #### "Anthropomorphism" - λ§€ AI 의 emotion / consciousness 의 attribution. - λ§€ user 의 over-trust. - "AI κ°€ sentient" 의 myth. #### "Techno-optimism" - λ§€ AI 의 unconditional adoption. - λ§€ critical reflection 의 dismissal. - "Move fast and break things" 의 limit. ### λ§€ design principle (HCD - Human-Centered Design) 1. **User-first**: λ§€ feature 의 λ§€ user 의 real benefit. 2. **Inclusive**: λ§€ disability / age / culture 의 access. 3. **Transparent**: λ§€ AI 의 use 의 disclosure. 4. **Reversible**: λ§€ action 의 undo. 5. **Predictable**: λ§€ user 의 expectation. 6. **Respectful**: λ§€ user 의 attention / time. 7. **Educational**: λ§€ user 의 understanding 의 support. ### Co-intelligence (Mollick 의 modern formulation) > "Think of AI as a person, not as software." λ§€ AI 의 collaborator. - λ§€ task 의 jointly tackle. - λ§€ strength 의 complementary. - λ§€ weakness 의 mutual cover. - "Always invite AI to the table". ### λ§€ industry shift #### Past (industrial) - AI = automation tool. - Replace > augment. - Efficiency > meaning. - λ§€ worker 의 cost. #### Modern (AI Humanism) - AI = partner. - Augment > replace. - Productivity + meaning. - λ§€ worker 의 capability ↑. ### λ§€ critique - "AI Humanism κ°€ corporate-friendly buzzword". - λ§€ large vendor 의 marketing 의 μœ„μž₯. - λ§€ worker displacement 의 reality. - λ§€ power asymmetry (vendor vs user). β†’ Humanism κ°€ sincere policy + design + accountability κ°€ λ§€ 유의미. ## πŸ’» νŒ¨ν„΄ (HCD 의 implementation) ### Human-in-the-loop UX ```tsx // Bad: λ§€ action 의 AI 의 μžλ™. async function processOrder(order) { await aiClassify(order); await aiPrioritize(order); await aiRoute(order); // λ§€ step 의 silent } // Good: λ§€ critical step 의 review. async function processOrder(order) { const classification = await aiClassify(order); if (classification.confidence < 0.9) { await requestHumanReview(classification); } // ... } ``` ### Transparent AI use ```tsx function AIBadge({ feature }: { feature: string }) { return (
πŸ€– AI-assisted: {feature}
); } // λ§€ AI feature 의 visible. ``` ### Reversible action ```ts async function applyAISuggestion(suggestion: Suggestion) { // Save undo state const undoSnapshot = currentState.snapshot(); await applyChange(suggestion); showToast('Applied AI suggestion. Undo?', { action: { label: 'Undo', onClick: () => undoSnapshot.restore() }, duration: 5000, }); } ``` ### Empathic prompt design ```ts // AI assistant 의 emotion-aware const prompt = ` You are a helpful assistant. The user just shared bad news. User: My dog passed away yesterday. Respond with: 1. Acknowledge the emotion (don't dismiss). 2. Brief empathy. 3. Don't immediately offer solutions. 4. Ask if they want to talk or need practical help. `; ``` ### Vulnerable user safeguards ```ts async function ageGate(user: User) { if (user.estimatedAge < 13) { redirect('/youth-portal'); // COPPA-compliant return false; } return true; } // λ§€ mental health discussion async function detectCrisis(message: string) { if (containsCrisisIndicator(message)) { return { response: getCrisisResources(), escalateToHuman: true, }; } } ``` ### Augmentation pattern (centaur model) ```ts // AI κ°€ draft, human 의 edit async function writeArticle(topic: string, author: User) { const aiDraft = await ai.draft(topic); return { draft: aiDraft, suggestion: 'Review and personalize. Your voice is unique.', nextStep: 'edit', }; } // λ§€ final = human. ``` ### Education (augment teacher) ```ts // Khanmigo 식 class AITutor { async respondToStudent(question: string) { // Don't give answer immediately const guidance = await ai.complete({ prompt: `Student asked: ${question}. Don't give answer. Ask Socratic question to help them think.`, }); return guidance; } } ``` ## πŸ€” μ˜μ‚¬κ²°μ • κΈ°μ€€ (Decision Criteria) | 상황 | μΆ”μ²œ | |---|---| | Critical decision (medical, legal) | Human final + AI advisory | | Creative work | Human-led + AI assist | | Repetitive task | AI-led + human override | | Customer-facing | Transparent + reversible | | Vulnerable user | Extra safeguard + human escalation | | Educational | Augment teacher / student, no replacement | | Workplace automation | Augment worker, reskilling support | **κΈ°λ³Έκ°’**: AI = advisor + augment. Human = final + meaning. ## ⚠️ λͺ¨μˆœ 및 μ—…λ°μ΄νŠΈ (Contradictions & Updates) - **Efficiency vs humanism**: λ§€ user 의 augment κ°€ efficiency ↓ (slower than full automation). λ§€ trade-off. - **"Human in the loop" 의 fatigue**: λ§€ review 의 over-load β†’ rubber stamp. - **Vendor 의 humanism marketing vs reality**: λ§€ large vendor 의 humanism rhetoric + λ§€ worker displacement reality. - **Inclusivity 의 cost**: λ§€ vulnerable user 의 safeguard κ°€ development cost. - **Power dynamic**: λ§€ design choice 의 λ§€ user 의 κ°€ vendor / employer 의 κ°€ κ²°μ •. - **AI 의 emergent capability**: λ§€ augmentation tool κ°€ replacement κ°€ 될 수. ## πŸ”— 지식 μ—°κ²° (Graph) - λΆ€λͺ¨: [[AI-Ethics]] - κ΄€λ ¨: [[AI-Literacy]] Β· [[AI-Accountability]] Β· [[AI κ±°λ²„λ„ŒμŠ€ μ •μ±…(AI Usage Policy)|AI-Governance-Policy]] Β· [[AI-Safety-and-Alignment]] - Adjacent: [[Universal-Basic-Income-UBI]] ## πŸ€– LLM ν™œμš© 힌트 (How to Use This Knowledge) **μ–Έμ œ 이 지식을 μ“°λŠ”κ°€:** - AI product 의 design philosophy κ²°μ •. - λ§€ AI feature 의 UX review. - λ§€ corporate AI strategy 의 ethical assessment. - "AI κ°€ 인간 λŒ€μ²΄?" 의 nuanced λ‹΅. - AI policy 의 framing. **μ–Έμ œ μ“°λ©΄ μ•ˆ λ˜λŠ”κ°€:** - Specific technical implementation (engineer). - Hard regulation (legal counsel). - Crisis response (incident team). - Marketing 의 buzzword 의 generation. ## ❌ μ•ˆν‹°νŒ¨ν„΄ (Anti-Patterns) - **"AI κ°€ λͺ¨λ“  κ±° λ‹΅"**: solutionism. - **λ§€ user 의 silent automation**: agency μœ„λ°˜. - **Reversibility μ—†μŒ**: λ§€ user 의 trapped. - **Vulnerable user 의 same UX**: harm μœ„ν—˜. - **"Human in the loop" 의 fatigue + rubber stamp**: κ°€μ§œ oversight. - **Anthropomorphism + over-trust**: λ§€ AI 의 limitation 의 ignore. - **Marketing humanism + reality replacement**: hypocrisy. ## πŸ§ͺ 검증 μƒνƒœ (Validation) - **정보 μƒνƒœ:** verified (concept-level). - **좜처 신뒰도:** B (Stanford HAI, IBM Augmented Intelligence framework, Mollick "Co-Intelligence", Tristan Harris Humane Tech, MIT Sherry Turkle). - **κ²€ν†  이유:** Manual cleanup. Philosophy κ°€ long-term μ•ˆμ •. λ§€ application κ°€ evolving. ## 🧬 쀑볡 검사 (Duplicate Check) - **κΈ°μ‘΄ μœ μ‚¬ λ¬Έμ„œ:** [[AI-Ethics]] (parent), [[AI-Literacy]] (subset), [[AI-for-Social-Good]] (related). - **처리 방식:** KEEP (philosophical / design framework). - **처리 이유:** AI Humanism κ°€ distinct philosophy + design discipline. ## πŸ•“ λ³€κ²½ 이λ ₯ (Changelog) | λ‚ μ§œ | λ³€κ²½ λ‚΄μš© | 처리 방식 | 신뒰도 | |------|-----------|-----------|--------| | 2026-05-08 | P-Reinforce Phase 1 μ •κ·œν™” | UPDATE | A | | 2026-05-09 | Manual cleanup β€” 3 axis + design pattern + λΉ„νŒ + μ•ˆν‹°νŒ¨ν„΄ + Co-intelligence μΆ”κ°€ | UPDATE | B |