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.0 KiB
5.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-thorium | Thorium | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
Thorium
매 한 줄
"매 Thorium 의 sci-fi 게임 의 high-tier resource trope". 매 real-world Th-232 의 nuclear fuel 의 abstraction — EVE Online, Stellaris, No Man's Sky 의 endgame currency 의 흔한 명칭. 매 deep-space mining + reactor fuel 의 narrative anchor.
매 핵심
매 real-world reference
- Th-232: 매 fertile isotope (not fissile) — 매 thermal neutron 의 Th-233 → Pa-233 → U-233 의 conversion.
- MSR (Molten Salt Reactor): 매 thorium fuel cycle 의 leading 2026 design (TerraPower, Copenhagen Atomics).
- Abundance: 매 uranium 의 3-4x earth crust 의 abundance — 매 in-game scarcity narrative 의 contradiction (often ignored).
매 in-game roles
- Capital ship fuel: T3+ ship 의 hour-rate consumption.
- Reactor module crafting: 매 endgame module 의 ingredient.
- Sink: 매 inflation 의 absorb 의 economic sink — Sector breach reactor 의 burn rate.
매 응용
- EVE Online 의 PI (Planetary Interaction) 의 advanced commodity tier.
- No Man's Sky 의 reactor charge.
- Stellaris 의 strategic resource (Trantorian Meta).
💻 패턴
Resource tier 정의
export const RESOURCES = {
iron: { tier: 1, basePrice: 1, decay: 0 },
silicon: { tier: 1, basePrice: 2, decay: 0 },
uranium: { tier: 2, basePrice: 25, decay: 0.001 },
thorium: { tier: 3, basePrice: 120, decay: 0.002 },
exotic: { tier: 4, basePrice: 800, decay: 0.005 },
} as const;
export type ResourceId = keyof typeof RESOURCES;
Thorium reactor consumption
interface Reactor {
tier: number;
efficiency: number; // 0..1
thoriumStock: number;
}
export function tickReactor(r: Reactor, hours: number): { burned: number; outputMW: number } {
const burnRate = 0.5 * r.tier; // kg/hr per tier
const burned = Math.min(r.thoriumStock, burnRate * hours);
r.thoriumStock -= burned;
const outputMW = burned * 200 * r.efficiency;
return { burned, outputMW };
}
Mining yield (deep-space)
interface Asteroid { thoriumPpm: number; massT: number; }
export function mineThorium(a: Asteroid, riggerSkill: number): number {
const baseYield = a.massT * (a.thoriumPpm / 1_000_000);
const skillMult = 1 + riggerSkill * 0.05;
return baseYield * skillMult;
}
Market price oracle
import { mean, std } from './stats';
export function thoriumPriceUSD(history: number[]): number {
const m = mean(history.slice(-100));
const volatility = std(history.slice(-100));
// 매 supply shock 의 capture
return m + volatility * 0.5;
}
Refinery chain (Th-232 → U-233)
interface Refinery { throughputKgHr: number; conversionEff: number; }
export function refineThorium(refinery: Refinery, inputKg: number): { u233: number; waste: number } {
const u233 = inputKg * refinery.conversionEff;
const waste = inputKg * (1 - refinery.conversionEff);
return { u233, waste };
}
Strategic stockpile alert
export function lowStockAlert(stockKg: number, dailyBurnKg: number): 'CRIT' | 'WARN' | 'OK' {
const daysRemaining = stockKg / dailyBurnKg;
if (daysRemaining < 3) return 'CRIT';
if (daysRemaining < 14) return 'WARN';
return 'OK';
}
매 결정 기준
| 상황 | Approach |
|---|---|
| 매 early game | Lock thorium 의 access — tier gate. |
| 매 endgame economy | Thorium 의 sink role — 매 reactor burn 의 inflation control. |
| 매 PvP zone | Thorium drop on death — risk-reward. |
| 매 narrative reactor event | Sudden spike 의 demand — market shock 의 inject. |
기본값: Tier 3 strategic resource + reactor sink + asteroid-mined.
🔗 Graph
- 부모: EVE 온라인 · Iridium
- 변형: Iridium · Sector-Breach-Store
- 응용: Hyperinflation-in-Closed-Loop-Systems · Sector
- Adjacent: Nuclear Deterrence Models · Power Creep (Content Treadmills)
🤖 LLM 활용
언제: lore generation, market simulation 의 prompt, narrative event scripting. 언제 X: real-time market math (deterministic code).
❌ 안티패턴
- Infinite stockpile: 매 sink 의 부족 — hyperinflation.
- Single-source mining: 매 botting 의 incentive — 매 RMT (real money trade) risk.
- Lore inconsistency: 매 thorium 의 Earth crust abundance 의 무시 — fan critique.
🧪 검증 / 중복
- Verified: IAEA thorium fuel cycle docs (2025), EVE Online PI mechanics, Stellaris 3.x patch notes.
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — thorium 의 in-game economy 의 patterns 추가 |