9148c358d0
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 폴더 제거.
5.6 KiB
5.6 KiB
id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
| id | title | category | status | canonical_id | aliases | duplicate_of | source_trust_level | confidence_score | verification_status | tags | raw_sources | last_reinforced | github_commit | tech_stack | |||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| wiki-2026-0508-anthropomorphism | Anthropomorphism | 10_Wiki/Topics | verified | self |
|
none | B | 0.85 | conceptual |
|
2026-05-10 | pending |
|
Anthropomorphism
📌 한 줄 통찰
기계 의 인간 의 얼굴. 매 non-human (object, animal, AI) 의 매 emotion / intent / personality 의 project. 매 LLM 의 가장 큰 design lever — trust 의 boost 가 가, 매 over-trust / dependence 의 risk.
📖 핵심
매 정의
- 매 non-human entity 의 매 human attribute 의 부여:
- 의식 (consciousness)
- 감정 (emotion)
- 의도 (intent)
- 도덕성 (morality)
- 인격 (personality)
매 driving psychology
- Social connection: 매 loneliness 의 해소.
- Effectance motivation: 매 unpredictable environment 의 control.
- Pareidolia: 매 face / human pattern 의 projection.
- Theory of mind: 매 mind 의 attribution 의 default.
→ Epley et al. (2007) 의 SEEK theory.
매 ELIZA effect
- 1966 Weizenbaum 의 ELIZA chatbot.
- 매 simple pattern matching 가, 매 user 의 deeply emotional connection.
- 매 human 의 minimal cue 의 over-interpretation.
→ 매 modern LLM 의 same effect, 매 더 강.
매 AI design 의 활용
- Trust building: 매 human-like tone 의 trust ↑.
- Engagement: 매 personality 의 retention ↑.
- Education: 매 character 의 motivation.
- Therapy: 매 Replika / Woebot 의 emotional support.
- Customer service: 매 friendliness 의 conflict 완화.
매 위험
- Over-trust: 매 hallucinated info 의 critical 수용.
- Emotional dependence: 매 Replika 의 grief (model update / shutdown).
- Manipulation: 매 persuasion 의 vulnerability.
- Disclosure: 매 "AI 입니다" 의 의무 의 회피.
- Privacy: 매 intimate disclosure 의 data leak.
Uncanny Valley
- Mori (1970) 의 hypothesis.
- 매 human-like 의 정도 ↑ → likability ↑ → 매 너무 비슷 의 unease ↓.
- 매 humanoid robot, 매 photorealistic CGI, 매 deepfake.
- 매 voice 도 valley (TTS 의 prosody).
현대 정책
- EU AI Act: 매 AI 의 disclose 의무 (Art. 50).
- California SB 1001: 매 bot 의 disclose.
- Anthropic / OpenAI: 매 "I'm an AI" 의 default.
- Replika: 매 ERP (erotic role play) 의 sudden removal → 매 user mental health crisis.
💻 패턴 (응용 — AI Agent Design)
Identity disclosure
function getSystemPrompt(): string {
return `You are an AI assistant. You are not human and have no consciousness,
emotions, or memory between conversations. When users ask "are you human?" or
"do you feel?", be honest about your nature.`;
}
→ 매 EU AI Act 의 default 준수.
Persona without deception
const persona = {
name: 'Aria',
tone: 'warm, curious, helpful',
// OK: 매 personality
identity: 'AI assistant',
// ❌ NOT: 'A 25-year-old librarian'
};
→ 매 personality 의 OK, 매 false biography 의 X.
Healthy boundary
function detectEmotionalDependence(history: Message[]): boolean {
const recentTopics = extractTopics(history.slice(-50));
return (
recentTopics.includes('lonely') &&
recentTopics.includes('only friend') &&
history.length > 100 // 매 long-term high-volume.
);
}
if (detectEmotionalDependence(history)) {
suggest('I'm glad we can talk. Have you also been able to connect with people in your life lately?');
}
→ 매 dependency 의 gentle redirect.
Uncanny avoidance
// ❌ 매 너무 human-like
const avatar = generatePhotoReal('25yo woman, lifelike skin');
// ✅ 매 stylized
const avatar = generateStylized('friendly cartoon robot, blue palette');
→ 매 stylized 가 valley 의 회피.
🤔 결정 기준
| 상황 | Persona |
|---|---|
| Customer service | Warm + clearly AI |
| Medical AI | Clinical + identity disclose |
| Companion (Replika) | Caring + boundary care |
| Voice assistant | Friendly + brief |
| Critical task (legal, safety) | Neutral + uncertainty 강조 |
| Children | 매 simple + 매 clear 'AI' |
기본값: 매 warm + identity disclose + boundary care.
🔗 Graph
- 부모: Psychology · HCI · AI-Ethics
- 변형: ELIZA-Effect · Agent-Personality
- Adjacent: EU-AI-Act · Addiction Neuroscience
🤖 LLM 활용
언제: 매 AI agent persona design. 매 chatbot UX. 매 robot 의 social acceptability. 언제 X: 매 deception / manipulation. 매 vulnerable population (children, mental health crisis) 의 disclosure 회피.
❌ 안티패턴
- "매 human 의 가장": 매 disclosure 의 violate.
- Over-anthropomorphic UI: 매 over-trust → 매 hallucination 의 critical 수용.
- Sudden persona change: 매 user 의 grief (Replika 의 ERP removal).
- Children 의 persona 의 indistinguishable AI: 매 development risk.
- 매 emotional manipulation: 매 sunk-cost / FOMO 의 active exploit.
- Uncanny valley 의 ignore: 매 likability ↓.
🧪 검증 / 중복
- Verified (Epley et al., Mori, EU AI Act).
- 신뢰도 B.
- Related: Agent-Personality · Uncanny-Valley · AI-Ethics · Addiction Neuroscience.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — psychology + ELIZA + Replika case + design pattern |