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.2 KiB
6.2 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-revenge-cycle-dynamics | Revenge Cycle Dynamics | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
Revenge Cycle Dynamics
매 한 줄
"매 attack 은 매 future attack 의 seed 다.". Revenge cycle 은 War Commander, Mobile Strike, EVE 등 PvP 전략 게임의 retention engine — player A 가 player B 를 칠 때, B 의 retaliation probability 가 높아지고, 그 retaliation 이 다시 A 의 counter-retaliation 을 trigger 하는 closed feedback loop 이다. 매 2026 LiveOps 에서 이 cycle 을 의도적으로 telemetry-balance 하는 것은 D30 retention 의 핵심 lever.
매 핵심
매 Cycle Anatomy
- Trigger: unprovoked attack, base raid, alliance-level aggression
- Emotional payload: loss aversion + identity threat (base = avatar extension)
- Retaliation window: 24-72h (mobile), 7d (slow strategy)
- Escalation vector: solo → alliance war → cross-server war
- Decay: 매 cycle 은 자연스럽게 fade — fuel injection (events, leaderboards) 없으면.
매 Retention 메커니즘
- 매 active grudge = 매 daily login reason
- 매 revenge planning = 매 in-app currency sink (troop healing, base upgrades)
- 매 alliance bond = social switching cost
- 매 storytelling = personal narrative (UGC potential)
매 응용
- War Commander: kill report + replay → revenge UI button.
- EVE Online: kill mail system → corp-level vendetta.
- Mobile Strike: VIP bounty board → paid revenge service.
- Clash of Clans: revenge cooldown design (one-shot).
💻 패턴
Pattern 1 — Revenge eligibility tracker
interface AttackEvent {
attackerId: string;
defenderId: string;
timestamp: number;
damageDealt: number;
retaliated: boolean;
}
class RevengeTracker {
private events = new Map<string, AttackEvent[]>();
private readonly WINDOW_MS = 72 * 3600 * 1000;
record(e: AttackEvent) {
const list = this.events.get(e.defenderId) ?? [];
list.push(e);
this.events.set(e.defenderId, list);
}
pendingRevenge(playerId: string): AttackEvent[] {
const now = Date.now();
return (this.events.get(playerId) ?? [])
.filter(e => !e.retaliated && now - e.timestamp < this.WINDOW_MS);
}
}
Pattern 2 — Escalation scoring
function escalationScore(history: AttackEvent[]): number {
// 매 reciprocal exchange = +1, asymmetric = +2 (more inflammatory)
let score = 0;
for (let i = 1; i < history.length; i++) {
const prev = history[i - 1];
const cur = history[i];
const reciprocal = prev.attackerId === cur.defenderId;
score += reciprocal ? 1 : 2;
}
return score;
}
Pattern 3 — Cooldown gate (anti-grief)
function canAttack(attackerId: string, defenderId: string, history: AttackEvent[]): boolean {
const recentSameTarget = history.filter(
e => e.attackerId === attackerId
&& e.defenderId === defenderId
&& Date.now() - e.timestamp < 3600 * 1000,
).length;
return recentSameTarget < 3; // 매 1h 내 3회 제한
}
Pattern 4 — Revenge notification injection
async function dispatchRevengePush(victim: Player, event: AttackEvent) {
await pushService.send(victim.deviceToken, {
title: `${event.attackerName} attacked your base!`,
body: `Tap to retaliate. Window closes in ${remainingHours(event)}h.`,
deepLink: `app://revenge/${event.id}`,
});
}
Pattern 5 — Asymmetric matchmaking shield
function shieldEligibility(attacker: Player, defender: Player): boolean {
const powerRatio = attacker.power / defender.power;
// 매 5x power gap → 매 attack blocked (anti-snowball)
return powerRatio < 5.0;
}
Pattern 6 — Alliance vendetta propagation
function propagateVendetta(allianceA: string, allianceB: string, severity: number) {
if (severity > THRESHOLD_WAR) {
declareWar(allianceA, allianceB, durationDays: 7);
grantWarBuffs([allianceA, allianceB]);
}
}
Pattern 7 — Revenge replay capture
function captureReplay(combatLog: CombatTick[]): ReplayBlob {
return compress({
seed: combatLog[0].rngSeed,
inputs: combatLog.map(t => ({ tick: t.tick, action: t.action })),
version: GAME_VERSION,
});
}
매 결정 기준
| 상황 | Approach |
|---|---|
| Casual mobile, low-skill players | Soft revenge (one-shot button, easy win) |
| Hardcore PvP (EVE) | Persistent kill mails, no auto-balance |
| New player onboarding | Newbie shield (3-7 days) |
| Whales attacking f2p | Power-ratio shield + bounty system |
기본값: 72h retaliation window + power-ratio shield + escalation telemetry alert at score ≥ 10.
🔗 Graph
- 부모: Live Operations (LiveOps) · Player-Experience-Modeling
- 변형: Jailing · Revenge-Cycle-Dynamics
- 응용: War-Commander-Combat-Ecosystem · Mobile Strike · EVE 온라인
- Adjacent: Prisoners-Dilemma-Models · Alliances-and-Sector-Hegemony
🤖 LLM 활용
언제: PvP balance proposal 작성, retention drop 의 revenge-cycle 진단, alliance war event design. 언제 X: PvE-only 게임, single-player narrative — revenge loop 적용 X.
❌ 안티패턴
- Whale-stomping unchecked: power gap shield 없으면 신규 유저 대량 이탈.
- Infinite loop fuel: revenge buff stacking → exhaustion + churn.
- No exit ramp: 매 player 가 cycle 에서 quit 할 수 있는 mechanism (peace treaty, alliance switch) 없으면 toxic.
- Hidden retaliation: 매 attack notification 없으면 cycle 자체가 발생하지 않음.
🧪 검증 / 중복
- Verified (Kixeye War Commander postmortems, CCP EVE devblog 2023-2025).
- Cross-ref: Mobile Strike LiveOps GDC talks.
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — full revenge-cycle anatomy + 7 patterns + decision matrix |