---
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 |