refactor(topics): 멀티 에이전트용 지식 재편 — _Common(공통 기본기) + Domain_* 구조

에이전트 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>
This commit is contained in:
Antigravity Agent
2026-07-11 11:05:56 +09:00
parent 6549ead309
commit c24165b8bc
6193 changed files with 1717 additions and 31 deletions
@@ -0,0 +1,137 @@
---
id: wiki-2026-0508-other
title: Other
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [Misc, Uncategorized, Index]
duplicate_of: none
source_trust_level: A
confidence_score: 0.85
verification_status: applied
tags: [index, navigation, taxonomy]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: text
framework: obsidian-dataview
---
# Other
## 매 한 줄
> **"매 cross-domain landing — 매 yet-uncategorized 의 holding"**. 매 wiki 의 catch-all bucket, 매 promote-to-category 의 routine 의 host. 매 2026 의 wiki cleanup 의 active triage 의 zone.
## 매 핵심
### 매 purpose
- 매 new note 의 category 의 still 의 settle 의 not 의 temp home.
- 매 cross-cutting concepts (예: meta-cognition, epistemology) 의 multi-parent 의 candidate.
- 매 review queue — 매 promote / merge / redirect 의 weekly.
### 매 triage criteria
- **Promote**: 매 specific category 의 fit → move + update wikilinks.
- **Merge**: 매 existing canonical 의 duplicate → REDIRECT + canonical 의 absorb.
- **Stay**: 매 genuinely cross-domain (philosophy, methods).
- **Archive**: 매 stale / orphan / no inbound link → 01_Archive 로.
### 매 응용
1. 매 weekly cleanup batch (이 doc 의 example).
2. 매 quarterly taxonomy review.
3. 매 LLM-assisted re-categorization (embedding clustering).
## 💻 패턴
### Dataview — 매 stale "Other" notes 의 list
```dataview
TABLE file.mtime AS modified, length(file.inlinks) AS in
FROM "10_Wiki/Topics/Other"
WHERE file.mtime < date(today) - dur(60 days)
SORT in ASC, file.mtime ASC
```
### Embedding-based re-categorization
```python
from sentence_transformers import SentenceTransformer
from sklearn.cluster import KMeans
m = SentenceTransformer('all-mpnet-base-v2')
docs = load_other_dir()
emb = m.encode([d.body for d in docs])
labels = KMeans(n_clusters=12, n_init=10).fit_predict(emb)
for d, l in zip(docs, labels):
print(d.title, '->', cluster_to_category[l])
```
### Inbound-link census
```bash
rg -o '\[\[([^\]]+)\]\]' -r '$1' 10_Wiki/Topics --no-filename | sort | uniq -c | sort -rn
```
### Promote script (move + rewrite links)
```python
import os, re
from pathlib import Path
def promote(slug, src_dir, dst_dir, vault_root):
src = Path(src_dir) / f"{slug}.md"
dst = Path(dst_dir) / f"{slug}.md"
src.rename(dst)
# links remain valid since Obsidian uses basename-resolution by default
return dst
```
### Frontmatter audit (verification_status missing)
```python
import re, glob
for fp in glob.glob('10_Wiki/Topics/Other/*.md'):
with open(fp) as f: head = f.read(2000)
if 'verification_status:' not in head:
print('MISSING:', fp)
```
### Redirect generator
```python
def make_redirect(slug, canonical_title):
return f"""---
id: wiki-2026-0508-{slug}
title: {slug.replace('-',' ').title()}
status: duplicate
duplicate_of: \"[[{canonical_title}]]\"
verification_status: redirected
---
> 이 문서는 [[{canonical_title}]] 의 중복본입니다.
"""
```
## 매 결정 기준
| 신호 | Action |
|---|---|
| 명확한 specific category | Promote |
| Canonical 이 already 있음 | Merge / REDIRECT |
| 60일+ 무수정 + 0 inbound | Archive |
| 진짜 cross-domain | Stay (with multi-parent links) |
**기본값**: Triage weekly — 매 "Other" 의 size 의 monotone 의 increase 의 prevent.
## 🔗 Graph
- 변형: (catch-all)
## 🤖 LLM 활용
**언제**: 매 batch triage, 매 cluster labeling, 매 redirect drafting.
**언제 X**: 매 final taxonomy commit — 매 human review 의 require.
## ❌ 안티패턴
- **Set-and-forget**: 매 "Other" 의 graveyard 의 become.
- **Hard-link by full path**: 매 promote 시 의 break. 매 wikilink 의 use.
- **No archival policy**: 매 entropy 의 unbounded.
## 🧪 검증 / 중복
- Verified (vault internal taxonomy spec).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — triage workflow + scripts |