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 폴더 제거.
4.1 KiB
4.1 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-skybound-knowledge-hub | Skybound Knowledge Hub | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
Skybound Knowledge Hub
매 한 줄
"매 hub note 는 wiki 의 entry point — topical + temporal navigation". Skybound 의 knowledge corpus (engine, combat AI, boss, mechanics, issues) 의 single navigable map. 매 Obsidian-style MOC (Map of Content) 의 canonical instance.
매 핵심
매 hub 의 구조
- Domain shelves: Engine / Combat AI / Boss / Mechanics / Issues.
- Temporal shelf: research drops, postmortems, sprint notes.
- Cross-cutting: balance, telemetry, anti-cheat.
- Onboarding lane: new contributor 의 reading path.
매 hub 의 design rules
- No content here: hub 은 link map, not content.
- Stable anchor: rename 시 alias 유지.
- Reciprocal links: child → hub 의 backlink 보장.
- Recency surface: top 5 latest notes 가 visible.
매 응용
- Skybound 의 wiki 의 single landing page.
- New team member onboarding.
- Sprint review 의 context map.
💻 패턴
Hub frontmatter (Obsidian)
---
id: wiki-2026-0508-skybound-knowledge-hub
title: Skybound Knowledge Hub
type: hub
aliases: [Skybound Index]
---
Shelf section
## Combat AI
- [[Skybound Enemy Orientation Fix]]
- [[Boss Phase Transition Pattern]]
- [[Aggro Tracker Design]]
Recency block (Dataview)
TABLE file.mtime AS "Updated", status
FROM "10_Wiki/Topics/Skybound"
WHERE file.name != "Skybound-Knowledge-Hub"
SORT file.mtime DESC
LIMIT 5
Backlink enforcement check
# CI check: every Skybound note must link back to hub
rg -L 'Skybound Knowledge Hub' 10_Wiki/Topics/Skybound/*.md
Auto-generated TOC (Python)
from pathlib import Path
import frontmatter
def build_hub(root: Path) -> str:
sections: dict[str, list[str]] = {}
for md in sorted(root.rglob("*.md")):
if md.name == "Skybound-Knowledge-Hub.md":
continue
post = frontmatter.load(md)
shelf = post.get("shelf", "Misc")
title = post.get("title", md.stem)
sections.setdefault(shelf, []).append(f"- [[{title}]]")
out = ["# Skybound Knowledge Hub", ""]
for shelf, items in sorted(sections.items()):
out += [f"## {shelf}", *items, ""]
return "\n".join(out)
Hub link integrity test
def test_hub_links_resolve(hub_text: str, all_titles: set[str]):
import re
links = re.findall(r"\[\[([^\]]+)\]\]", hub_text)
missing = [l for l in links if l.split("|")[0] not in all_titles]
assert not missing, f"broken links: {missing}"
매 결정 기준
| 상황 | Approach |
|---|---|
| < 20 notes | manual hub |
| 20-200 notes | hand-curated + Dataview recency |
| > 200 notes | auto-generated + manual featured |
| Mixed-language wiki | English canonical + alias hub per language |
기본값: hand-curated shelves + Dataview recency block + CI backlink check.
🔗 Graph
- Adjacent: March_2026_Research_Drop
🤖 LLM 활용
언제: domain wiki 의 entry point 설계, MOC 패턴, 의 recency surface 필요. 언제 X: flat note collection (< 10 notes), single-author scratchpad.
❌ 안티패턴
- Hub with content: scope creep — hub 은 navigation only.
- One-way links: child → hub 만 있고 hub → child 없으면 lost notes.
- Stale recency: 6개월 된 "recent" section 은 hub credibility 의 destroyer.
- No alias: rename 시 모든 backlink 의 break.
🧪 검증 / 중복
- Verified (Obsidian MOC 의 canonical pattern + Skybound 의 actual hub usage).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — full FULL spec rewrite with hub patterns |