Files
2nd/10_Wiki/Topic_General/From_Other/Victimhood-Narratives.md
T
Antigravity Agent 9148c358d0 docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
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 폴더 제거.
2026-07-05 00:33:48 +09:00

5.7 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-victimhood-narratives Victimhood Narratives 10_Wiki/Topics verified self
Victim Narrative
Tendency for Interpersonal Victimhood
TIV
none A 0.85 applied
psychology
sociology
narrative
ethics
2026-05-10 pending
language framework
english-korean social-psychology

Victimhood Narratives

매 한 줄

"매 personal/group identity 의 wronged-self 의 frame". Gabay et al. (2020) 의 Tendency for Interpersonal Victimhood (TIV) 의 4-factor scale 의 academic 의 codify. 매 narrative 의 mobilizing power 의 strong — collective grievance, political identity, online discourse 의 central. 매 legitimate harm 의 acknowledge 의 vs 매 strategic identity 의 instrumentalize 의 distinction 의 critical.

매 핵심

매 TIV Four Factors (Gabay 2020)

  1. Need for recognition — 매 victim status 의 external validate.
  2. Moral elitism — 매 self / in-group 의 moral 의 superior 의 see.
  3. Lack of empathy — 매 own pain focus, others' 의 dismiss.
  4. Rumination — 매 past offense 의 repeated 의 replay.

매 Functions

  • Solidarity — 매 in-group 의 cohesion 의 strengthen.
  • Mobilization — 매 collective action 의 fuel.
  • Moral leverage — 매 demand 의 legitimacy 의 add.
  • Avoidance — 매 personal agency 의 displace 의 onto external.

매 Risks

  • Competitive victimhood — 매 group 의 grievance Olympics.
  • Identity rigidity — 매 victim 의 permanent 의 self-cast.
  • Discourse polarization — 매 zero-sum 의 frame.
  • Manipulation — 매 demagogue 의 exploit.

매 응용

  1. Social psych research — TIV scale 의 measure.
  2. Conflict mediation — 매 dual-narrative recognition 의 break impasse.
  3. Political analysis — 매 movement rhetoric 의 deconstruct.
  4. Therapy — 매 individual 의 reframing 의 agency 의 reclaim.

💻 패턴

TIV scale scoring (Python)

# Gabay et al. 2020 — 8 items per factor, 5-point Likert
def tiv_score(responses: dict[str, list[int]]) -> dict[str, float]:
    factors = ["need_recognition", "moral_elitism", "empathy_lack", "rumination"]
    return {f: sum(responses[f]) / len(responses[f]) for f in factors}

scores = tiv_score({
    "need_recognition": [4, 5, 3, 5, 4, 4, 3, 5],
    "moral_elitism":    [3, 4, 4, 3, 4, 3, 4, 4],
    "empathy_lack":     [2, 3, 2, 3, 2, 2, 3, 2],
    "rumination":       [5, 5, 4, 5, 5, 4, 5, 5],
})
print(scores)  # {'need_recognition': 4.13, ...}

Narrative frame classifier (LLM)

import anthropic
client = anthropic.Anthropic()

def classify_frame(text: str) -> str:
    resp = client.messages.create(
        model="claude-opus-4-7",
        max_tokens=200,
        messages=[{
            "role": "user",
            "content": f"""Classify the narrative frame of this passage as one of:
- legitimate_grievance (specific, verifiable harm + agency)
- victimhood_identity (TIV-style: rumination, moral elitism, no agency)
- mixed
- neither

Passage: {text}

Return JSON: {{"frame": "...", "rationale": "..."}}"""
        }]
    )
    return resp.content[0].text

Dual-narrative mediation template

**Both/And reframe**

Group A's harm: <specific historical/ongoing>.
Group B's harm: <specific historical/ongoing>.

Shared interest: <identified common ground>.

Action item:
- A acknowledges B's <specific>.
- B acknowledges A's <specific>.
- Joint commitment: <forward action>.

Discourse rumination detector (NLP)

import re
def rumination_index(text: str) -> float:
    # Crude: repetition of grievance markers
    markers = re.findall(r"\b(again|always|still|never|every time|once more)\b",
                         text, re.I)
    sentences = re.split(r"[.!?]", text)
    return len(markers) / max(len(sentences), 1)

Survey deployment (Qualtrics-style YAML)

survey: TIV-2020-short
items:
  - id: tiv_nr_1
    text: "It is important to me that people who have hurt me acknowledge my pain."
    scale: likert-5
  - id: tiv_me_1
    text: "I have a higher moral standard than most people."
    scale: likert-5
# ... 32 items total

매 결정 기준

상황 Frame
Verifiable specific harm + agency call Legitimate grievance
Diffuse identity claim, rumination, no agency TIV-style
Power asymmetry context 매 careful — 매 dismissal 의 risk
Therapy 1:1 Reframe 의 agency 의 restore
Public discourse Acknowledge harm + reject zero-sum

기본값: 매 specific harm 의 acknowledge AND 매 identity-rigidity 의 caution.

🔗 Graph

🤖 LLM 활용

언제: narrative frame 의 analyze, dual-acknowledgment 의 draft, TIV survey 의 design. 언제 X: 매 individual 의 lived experience 의 dismiss — 매 specific harm 의 verify, 매 LLM 의 not arbiter.

안티패턴

  • Blanket dismissal: 매 "victim mentality" label 의 specific harm 의 erase.
  • Blanket validation: 매 every claim 의 unconditional accept — 매 manipulation vector.
  • Zero-sum framing: 매 only one group 의 victim 의 — 매 dual-narrative 의 ignore.
  • Therapy 의 weaponize: 매 TIV scale 의 ad hominem 의 use.
  • Historical denial: 매 documented systemic harm 의 "narrative" 의 reduce.

🧪 검증 / 중복

  • Verified (Gabay et al. 2020, Personality and Individual Differences 165:110134).
  • 신뢰도 A (academic) / B (politicized application — context-dependent).

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — TIV factors + classifier patterns + mediation template