c24165b8bc
에이전트 8종(대화형/프로그래머 C·S/디자이너/설계자/기획자/QA/PD/PM)에게 [공통 기본 능력 + 롤별 Specialty] 2층으로 지식을 주입하기 위한 재분류. 문서 내용·포맷은 무수정, 폴더 이동만 (6,372개 문서 수 보존 확인). - Topic_Programming → Domain_Programming (내부 구조 보존) - Topic_Graphic → Domain_Design - Topic_Business → Domain_Product - Topic_General → Domain_General - _Common 신설: Math(구 Topic_Math_Specialty), Reasoning(구 General/From_Thinking & Reasoning), Reasoning_Creativity(구 General/From_창의성), Communication(Poetic_Blog_Writing + From_writing) - 타 도메인의 From_* 폴더는 유지 (출처 표기일 뿐, 이미 도메인에 맞게 분류된 문서) - 빈 폴더 정리 (memory/procedures) - 에이전트→폴더 매핑은 workspace의 .astra/agent-knowledge-map.json (9개 에이전트) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
6.3 KiB
6.3 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-bioshock-critique | BioShock Critique | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
BioShock Critique
매 한 줄
"매 'Would you kindly?' 매 player agency 의 illusion 을 해부한다". 매 2007 Ken Levine 의 BioShock 은 매 Rapture 의 Objectivist dystopia 매 setting 으로 매 ludonarrative dissonance, 매 choice illusion, 매 environmental storytelling 의 매 watershed 를 매 정의했다. 매 2026 perspective 에서는 매 후속 immersive sim (Prey 2017, System Shock Remake 2023, Atomic Heart 2023) 의 매 foundation.
매 핵심
매 Ludonarrative Dissonance (Hocking 2007)
- 매 narrative 는 매 self-interest critique (Ryan/Atlas 의 Objectivism) 매 제시.
- 매 mechanics 는 매 player 에게 매 ADAM hoarding, Little Sister harvesting 매 강요.
- 매 결과: 매 story 가 매 비판하는 매 행동을 매 game 이 매 보상.
매 "Would You Kindly" Twist
- 매 player 의 매 entire agency 가 매 mind-controlled 였다는 매 폭로.
- 매 medium-specific critique: 매 "press X to advance" 매 자체가 매 trigger phrase.
- 매 Andrew Ryan 의 매 "A man chooses, a slave obeys" — 매 player 는 매 slave.
매 Environmental Storytelling
- 매 audio diaries (Sander Cohen, Sofia Lamb).
- 매 corpse positioning, 매 graffiti, 매 Plasmid advertising.
- 매 Rapture 의 매 1960 art deco aesthetic 매 ideology 의 매 visual manifestation.
매 응용
- Spec Ops: The Line (2012) — 매 ludonarrative critique 의 매 successor.
- The Stanley Parable (2013) — 매 player agency 의 매 meta-deconstruction.
- Disco Elysium (2019) — 매 ideology-as-mechanic 매 계승.
💻 패턴
Pattern 1: Trigger Phrase as Agency Reveal
# Pseudocode for narrative trigger system
class NarrativeAgent:
def __init__(self, trigger_phrase: str):
self.trigger = trigger_phrase # "Would you kindly"
self.compelled_actions = []
def issue_command(self, npc_dialogue: str, action: str):
if self.trigger in npc_dialogue:
# Player believes they chose; actually compelled
self.compelled_actions.append(action)
return ForcedAction(action, hidden=True)
return PlayerChoice(action)
def reveal(self):
# Andrew Ryan boss room
return f"You performed {len(self.compelled_actions)} compelled actions"
Pattern 2: Moral Choice w/ Mechanical Weight
// Little Sister harvest vs rescue
interface MoralChoice {
action: 'harvest' | 'rescue';
immediate_adam: number;
delayed_reward: Gift | null;
ending_flag: 'good' | 'bad' | 'neutral';
}
const harvestSister: MoralChoice = {
action: 'harvest',
immediate_adam: 160,
delayed_reward: null,
ending_flag: 'bad',
};
const rescueSister: MoralChoice = {
action: 'rescue',
immediate_adam: 80,
delayed_reward: { adam: 200, plasmid: 'rare' }, // Tenenbaum gift
ending_flag: 'good',
};
// Net ADAM ~equal — undermines "sacrifice" narrative
Pattern 3: Audio Diary Discovery
struct AudioDiary {
speaker: String,
location: WorldPosition,
timestamp_in_lore: chrono::NaiveDate,
triggers_on_pickup: bool,
}
impl AudioDiary {
fn play(&self, player: &mut Player) {
// Non-blocking — player keeps moving
player.audio_queue.push(self.clone());
// Lore delivered via ambient consumption, not cutscene
}
}
Pattern 4: Plasmid Combo System
// Electro Bolt → water → multi-target stun
public class ElementalCombo {
public void OnHit(Target t, Plasmid p) {
if (t.IsWet && p == Plasmid.ElectroBolt) {
foreach (var nearby in t.GetWetNeighbors())
nearby.Stun(duration: 3.0f);
}
if (t.IsOiled && p == Plasmid.Incinerate)
SpreadFire(t.position, radius: 5.0f);
}
}
Pattern 5: Vita-Chamber Death Loop
# Respawn at nearest Vita-Chamber w/ enemy HP preserved
def on_death(player, world):
chamber = world.nearest_vita_chamber(player.last_pos)
player.respawn(chamber.position, hp=50)
# Enemies do NOT heal — attrition strategy possible
# Critique: removes stakes; can punch Big Daddy to death
매 결정 기준
| 상황 | Approach |
|---|---|
| 매 narrative theme 매 reinforce 하려면 | 매 mechanics 가 매 theme 에 매 align — 매 dissonance 회피 |
| 매 player agency 매 critique 하려면 | 매 hidden compulsion + 매 reveal moment (BioShock) |
| 매 setting depth 가 필요하면 | 매 audio diary + environmental storytelling (no cutscene dump) |
| 매 moral choice 매 weight 부여 | 매 mechanical asymmetry — 매 "good" path 가 매 충분히 매 rewarding |
기본값: 매 mechanic-narrative alignment 우선, 매 dissonance 는 매 의도된 critique 일 때만.
🔗 Graph
- 부모: Immersive-Sim-Genre · Ludo-narrative Dissonance
- Adjacent: Environmental-Storytelling
🤖 LLM 활용
언제: 매 narrative-mechanic alignment 분석, 매 immersive sim 매 design pattern reference, 매 player agency 매 deconstruction 학습. 언제 X: 매 pure gameplay loop 설계 (매 narrative weight 가 매 secondary 인 경우).
❌ 안티패턴
- Tacked-on morality: 매 binary choice 가 매 mechanical impact 없음 (매 Mass Effect Paragon/Renegade 후기).
- Cutscene lore dump: 매 environmental storytelling 회피하고 매 explicit exposition 의존.
- Vita-Chamber removes stakes: 매 BioShock 자체의 매 결함 — 매 death penalty 부재.
- Forced "good ending" gating: 매 100% rescue 만 매 good ending 매 허용 — 매 ambiguity 제거.
🧪 검증 / 중복
- Verified (Hocking 2007 ludonarrative essay, Levine GDC talks, Errant Signal critique).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — BioShock 의 ludonarrative dissonance 와 trigger-phrase agency reveal 분석 |