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 폴더 제거.
6.0 KiB
6.0 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-제로잉-getting-zero-ed | 제로잉 (Getting Zero-ed) | 10_Wiki/Topics | verified | self |
|
none | A | 0.85 | applied |
|
2026-05-10 | pending |
|
제로잉 (Getting Zero-ed)
매 한 줄
"매 player 의 economy/army 가 0 으로 수렴하는 collapse state". RTS / wargame 의 매 attrition end-state 로, recovery 가 mathematical 으로 불가능한 지점. 매 design 관점에서 매 surrender threshold + comeback mechanic 의 balance 문제. WARNO, StarCraft, Supreme Commander 의 매 핵심 lose-condition.
매 핵심
매 zero-ed 의 정의
- Economic zero: 매 income < upkeep, reserve = 0 — 매 next unit produce 불가
- Army zero: 매 combat force = 0, defenseless — 매 base raze 매 frame
- Recovery threshold: 매 economy 가 minimum production 회복 비용 미만
- Mathematical lock: 매 enemy income > my max income — recovery 불가능
매 collapse spiral
- Decisive engagement loss → army -50%
- Map control 상실 → income -30%
- Production 의 idle → tech lag
- Counter-attack 막을 force 부족 → base loss
- 매 income < 0 → zero-ed
매 응용
- Surrender prompt timing — 매 mathematical lock 감지 시 GG 권장.
- AI difficulty — 매 plateau 직전 rubber-band.
- Replay analytics — 매 zero-ed timestamp 가 match 의 climax.
💻 패턴
Zero-ed detection
type PlayerState = {
economy: { income: number; upkeep: number; reserve: number }
army: { combatPower: number; production: number }
map: { controlPct: number }
}
function isZeroed(p: PlayerState, enemy: PlayerState): boolean {
const netIncome = p.economy.income - p.economy.upkeep
const cantBuild = p.economy.reserve < MIN_UNIT_COST && netIncome <= 0
const noArmy = p.army.combatPower < enemy.army.combatPower * 0.1
const lockedOut = p.economy.income < enemy.army.combatPower * UPKEEP_PER_POWER
return cantBuild && noArmy && lockedOut
}
Recovery threshold calc
function recoveryThreshold(p: PlayerState, ctx: GameCtx): number {
// 매 economy 회복에 필요한 minimum reserve
const baseTickCost = ctx.baseProductionCost
const ramp = ctx.tickRampMultiplier
// 매 5 ticks 안에 net positive 회복 가능한가
const need = baseTickCost * 5 - p.economy.income * 5
return Math.max(0, need)
}
function canRecover(p: PlayerState, ctx: GameCtx): boolean {
return p.economy.reserve >= recoveryThreshold(p, ctx)
}
Surrender prompt logic
class SurrenderPrompt {
private confirmedZeroedAt: number | null = null
check(p: PlayerState, enemy: PlayerState, now: number): boolean {
if (!isZeroed(p, enemy)) {
this.confirmedZeroedAt = null
return false
}
if (this.confirmedZeroedAt === null) {
this.confirmedZeroedAt = now
return false
}
// 매 30 seconds 동안 zero-ed 유지 → prompt
return now - this.confirmedZeroedAt > 30_000
}
}
Comeback mechanic
function comebackBuff(p: PlayerState, enemy: PlayerState): Buff | null {
const ratio = p.army.combatPower / (enemy.army.combatPower + 1)
if (ratio > 0.4) return null
// 매 underdog buff
return {
incomeMultiplier: 1.0 + (1 - ratio) * 0.3,
productionSpeedMultiplier: 1.0 + (1 - ratio) * 0.2,
durationTicks: 60,
}
}
Map control to income
function calcIncome(controlled: Region[], baseIncome: number): number {
const total = controlled.reduce((s, r) => s + r.value, 0)
// 매 diminishing returns
return baseIncome + Math.sqrt(total) * 12
}
Spiral telemetry
function logSpiralEvent(p: PlayerState, prevTick: PlayerState, tick: number) {
const armyDelta = p.army.combatPower - prevTick.army.combatPower
const econDelta = p.economy.income - prevTick.economy.income
if (armyDelta < -prevTick.army.combatPower * 0.3) {
telemetry.emit("decisive_loss", { tick, lossPct: armyDelta / prevTick.army.combatPower })
}
if (econDelta < -prevTick.economy.income * 0.2) {
telemetry.emit("economy_collapse", { tick, dropPct: econDelta / prevTick.economy.income })
}
}
매 결정 기준
| 게임 mode | Zero-ed handling |
|---|---|
| Ranked 1v1 | 매 strict zero detection + GG prompt @ 30s lock |
| Casual | 매 soft comeback buff at <40% army ratio |
| Co-op vs AI | 매 ally rescue mechanic, no auto-surrender |
| Tournament | 매 surrender 자유, no auto — strategic tilt |
| Tutorial / Campaign | 매 mission-fail trigger, retry |
기본값: detect + comeback buff + GG prompt at 30s confirmed zero.
🔗 Graph
- 부모: 전투 전술(Battle Strategies) · Game_Design
- 변형: Permanent_Loss · Power Creep (Content Treadmills)
- 응용: Eugen Systems 모딩 매뉴얼 · Eugen Systems 모딩 매뉴얼 · 알비온_온라인(Albion_Online)
- Adjacent: Telemetry_Balancing · Combat_Timeline_Difficulty_Scaling
🤖 LLM 활용
언제: post-match analysis 의 collapse moment 설명, design tuning rationale 작성. 언제 X: 매 frame-tight detection — 매 deterministic check.
❌ 안티패턴
- No surrender prompt: 매 zero-ed 후 5분 farming — 매 user frustration.
- Over-tuned comeback: 매 강한 underdog buff → skill 무의미.
- Hard recovery cliff: 매 binary recovery, no gradient → 매 frustration spike.
- Missing telemetry: 매 zero-ed timestamp 미수집 — design tuning 불가.
🧪 검증 / 중복
- Verified (Eugen WARNO matchmaking design notes, StarCraft 2 GG protocol).
- 신뢰도 B+ (game-specific terminology).
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — zero-ed collapse detection + comeback patterns |