"매 cross-domain knowledge 의 hub". 매 General Knowledge folder 는 narrowly-scoped 도메인에 fit 하지 않은 wiki note 의 catch-all index — game design, web platform, ML theory, neuroscience 가 cross-pollinate 한다.
매 핵심
매 폴더 목적
매 cross-domain note 의 home — 매 specific topic folder (AI_and_ML, Programming) 에 fit 하지 않은 entry.
defresolve(slug:str,index:dict[str,dict])->str:seen=set()cur=slugwhilecurinindexandindex[cur].get("status")in("duplicate","merged"):ifcurinseen:raiseValueError(f"redirect cycle at {cur}")seen.add(cur)cur=index[cur].get("canonical_id")orindex[cur].get("redirect_to")returncur
언제: cross-domain question 의 routing, knowledge graph 구축, reinforcement scheduling.
언제 X: 매 specific domain 의 deep query — domain folder 의 직접 lookup 우선.
❌ 안티패턴
Catch-all dumping: 매 note 가 specific folder 의 candidate 인데 General Knowledge 에 dump — graph 의 fragmentation.
Redirect chain: 매 redirect → redirect → canonical 의 multi-hop. 매 single-hop 으로 flatten.
Stale frontmatter: 매 last_reinforced 의 90+일 미갱신 — reinforcement loop 의 break.