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>
5.8 KiB
5.8 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-sarkis-cloning-technology | Sarkis Cloning Technology | 10_Wiki/Topics | verified | self |
|
none | B | 0.85 | applied |
|
2026-05-10 | pending |
|
Sarkis Cloning Technology
매 한 줄
"매 villain 의 unkillability 는 매 lore mechanic 의 product 다.". Sarkis Cloning Technology 는 War Commander 의 antagonist Sarkis 가 매 defeat 후 clone 으로 부활하는 narrative device — repeat-encounter PvE bossfight 의 lore justification 이자, escalating-difficulty arc 의 backbone. 매 player 가 "왜 매번 같은 적이 더 강해져서 나타나는가" 라는 ludonarrative dissonance 를 mechanically resolve.
매 핵심
매 Lore Premise
- Sarkis 는 매 death event 후 cloned consciousness 로 reactivate
- 매 clone 은 previous defeat data 를 inherit → adaptive AI
- "Generation" 을 lore-internal version number 로 사용 (Sarkis Mk II, III, ...)
- Faction: Skybound (sky-themed antagonist faction)
매 Mechanical Function
- Boss respawn justification: 매 raid event 마다 동일 boss 재등장 가능
- Power escalation device: 매 generation 마다 +stat, +ability
- Story progression hook: 매 clone iteration → new dialogue, new arc
- Player progression mirror: 매 player level up → 매 Sarkis level up
매 응용
- War Commander: Sarkis Mk-series boss tiers.
- Skybound campaign: clone-iteration arc → final "original" reveal.
- Telemetry: clone defeat count → analytics on raid completion.
💻 패턴
Pattern 1 — Clone generation entity
interface SarkisClone {
generation: number;
baseStats: BossStats;
inheritedTraits: TraitId[];
abilityUnlocks: AbilityId[];
defeatCount: number;
}
function spawnClone(prev: SarkisClone | null): SarkisClone {
const gen = (prev?.generation ?? 0) + 1;
return {
generation: gen,
baseStats: scaleStats(BASE_STATS, gen, 1.15),
inheritedTraits: prev ? evolveTraits(prev.inheritedTraits) : SEED_TRAITS,
abilityUnlocks: pickAbilities(gen),
defeatCount: 0,
};
}
Pattern 2 — Adaptive trait evolution
function evolveTraits(prev: TraitId[]): TraitId[] {
// 매 player 의 winning strategy 에 counter trait 부여
const meta = analyticsService.getDominantStrategy();
const counter = TRAIT_COUNTERS[meta] ?? RANDOM_TRAIT;
return [...prev, counter].slice(-MAX_TRAITS);
}
Pattern 3 — Stat scaling
function scaleStats(base: BossStats, gen: number, factor: number): BossStats {
const mult = Math.pow(factor, gen);
return {
hp: base.hp * mult,
damage: base.damage * mult,
armor: base.armor + Math.floor(gen / 3),
speed: base.speed,
};
}
Pattern 4 — Lore dialogue selection
function getCloneDialogue(gen: number, defeatCount: number): DialogueLine[] {
if (gen === 1) return INTRO_LINES;
if (gen <= 5) return ARROGANCE_LINES;
if (gen <= 10) return DESPERATION_LINES;
return EXISTENTIAL_LINES; // 매 high-gen → 매 self-awareness arc
}
Pattern 5 — Defeat → respawn cooldown
async function onCloneDefeated(clone: SarkisClone, players: Player[]) {
await grantRewards(players, clone.generation);
const cooldown = 7 * 24 * 3600 * 1000; // 매 7d 후 재등장
scheduler.schedule(() => spawnClone(clone), cooldown);
}
Pattern 6 — "Original Sarkis" reveal trigger
function checkOriginalReveal(state: CampaignState): boolean {
return state.maxCloneGen >= 12
&& state.allianceCompletedArcs.includes('skybound-mk12');
}
Pattern 7 — Clone telemetry log
function logCloneEvent(event: 'spawn'|'defeat', clone: SarkisClone, players: string[]) {
analytics.track('sarkis_clone_event', {
type: event,
generation: clone.generation,
traits: clone.inheritedTraits,
participants: players.length,
timestamp: Date.now(),
});
}
매 결정 기준
| 상황 | Approach |
|---|---|
| Repeat boss needed | Clone lore device (Sarkis-style) |
| One-time finale boss | Original-only, no clone |
| Power-creep concern | Cap generations, soft reset |
| Narrative dissonance | Use clone arc to address it directly |
기본값: clone generation cap 12, +15% stat scaling per gen, adaptive traits enabled.
🔗 Graph
- 부모: Procedural-Rhetoric · Live Operations (LiveOps)
- 변형: Beresnev Studio · Stage-Director-and-World-Tension-Scaling
- 응용: Skybound_Skill_Asset_Integration · War-Commander-Combat-Ecosystem
- Adjacent: Power Creep (Content Treadmills) · Procedural-Level-Geometry
🤖 LLM 활용
언제: 반복 boss arc 의 lore design, narrative-mechanic alignment 검토, escalation curve 설계. 언제 X: linear single-narrative game, perma-death roguelike — clone device 부적합.
❌ 안티패턴
- Infinite generations w/o cap: power creep + player exhaustion.
- No narrative payoff: 매 clone 이 단순 reskin → 매 player engagement 0.
- Mechanical = lore mismatch: lore 상 unique 하다고 해놓고 매 mechanic 은 reskin.
- No counter-strategy adaptation: clone 이 변하지 않으면 매 boss fight 가 trivial 해짐.
🧪 검증 / 중복
- Verified (Kixeye War Commander event archive, Skybound campaign notes).
- 신뢰도 B (lore-specific, partial public docs).
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — clone lore mechanic + 7 implementation patterns |