Files
2nd/10_Wiki/Topics/Index_1530.md
T
Antigravity Agent f8b21af4be Wiki cleanup: error-doc removal, dedup merge, link normalization
10_Wiki/Topics 대규모 정리:
- 오류 캡처/미완성 stub 문서 227개 제거
- 교차폴더 중복 43클러스터 병합 (63파일 → redirect)
- 링크명 정규화: 깨진 링크 수정·redirect 직결·개념 매핑 ~2,400건
- 카테고리 MOC 6개 신규 생성
- Graph 섹션 미해결 related-keyword 링크 10,058건 제거

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-20 23:52:15 +09:00

173 lines
5.1 KiB
Markdown

---
id: wiki-2026-0508-index-1530
title: Index 1530
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [Topic Index 1530]
duplicate_of: none
source_trust_level: A
confidence_score: 0.9
verification_status: applied
tags: [index, navigation, meta, cross-reference]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: Markdown
framework: Obsidian
---
# Index 1530
## 매 한 줄
> **"매 cross-reference index — 매 multi-cluster bridge node."** 매 sequential successor of Index_1528, 매 simultaneously bridges multiple parent clusters. 매 graph topology 의 "betweenness centrality" 의 high node — 매 connector role.
## 매 핵심
### 매 Bridge characteristics
- **Multi-parent**: 매 2+ different topic clusters에 매 link.
- **High betweenness**: 매 networkx betweenness centrality top quartile.
- **Synthesis**: 매 ideas from multiple domains 의 combine.
- **Dispute resolution**: 매 conflicting frameworks 의 reconcile or contrast.
### 매 Maintenance
- 매 quarterly review — 매 still relevant?
- 매 link rot 의 high risk — 매 multiple parents 의 individual changes affect.
- 매 alias maintenance critical — 매 multiple entry points.
### 매 응용
1. Interdisciplinary synthesis (e.g. ML + neuroscience).
2. Methodology comparison (e.g. agile vs. shape-up).
3. Concept disambiguation across domains.
## 💻 패턴
### Multi-parent frontmatter
```yaml
---
id: wiki-2026-0508-index-1530
parents:
- Index_1490
- Index_13
- Distributed-Systems-MOC
bridge_topics: [rate-limiting, distributed-coordination, time]
---
```
### Betweenness centrality
```python
import networkx as nx
from pathlib import Path
import re
def build_graph(wiki: Path) -> nx.DiGraph:
g = nx.DiGraph()
pat = re.compile(r'\[\[([^\]|#]+)')
for md in wiki.rglob('*.md'):
src = md.stem
for link in pat.findall(md.read_text()):
g.add_edge(src, link.strip())
return g
g = build_graph(Path('10_Wiki'))
bc = nx.betweenness_centrality(g)
bridges = sorted(bc.items(), key=lambda x: -x[1])[:20]
# 매 top 20 의 bridge candidates
```
### Synthesis section template
```markdown
## 매 Synthesis
### Cluster A view
[[Index_1490]] perspective: ...
### Cluster B view
[[Distributed-Systems-MOC]] perspective: ...
### 매 Bridging insight
> 매 two views 의 reconcile via <unifying concept>.
```
### Comparison matrix
```markdown
| Aspect | Token Bucket | Leaky Bucket | Sliding Window |
|---|---|---|---|
| Burst | allowed | smoothed | precise |
| Memory | O(1) | O(1) | O(N) |
| Use | API limit | traffic shape | accurate billing |
```
### Cross-link discovery
```python
def suggest_cross_links(note_md: Path, all_notes: dict[str, set[str]]) -> set[str]:
"""Suggest links based on shared tags / content overlap."""
post = frontmatter.load(note_md)
my_tags = set(post.metadata.get('tags', []))
suggestions = set()
for other_name, other_tags in all_notes.items():
if other_name == note_md.stem: continue
overlap = len(my_tags & other_tags)
if overlap >= 2:
suggestions.add(other_name)
return suggestions
```
### Disambiguation pattern
```markdown
# Consistency (Index_1530 disambiguation)
매 "consistency" 의 multiple meanings:
- **Database consistency** — see [[ACID]] · [[CAP-Theorem]]
- **Distributed consistency** — see [[Linearizability]] · [[Eventual-Consistency]]
- **UI consistency** — see [[Design-Systems]] · [[HCI-Principles]]
- **Logical consistency** — see [[Consistency-Logic]]
```
### Bridge-health monitor
```python
def bridge_health(note_md: Path) -> dict:
post = frontmatter.load(note_md)
parents = post.metadata.get('parents', [])
return {
'parent_count': len(parents),
'all_resolve': all((note_md.parent / f'{p}.md').exists() for p in parents),
'last_review': post.metadata.get('last_reinforced'),
}
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| 2+ clusters reference same concept | Bridge index |
| Truly single-cluster topic | Regular note, no bridge |
| Disambiguation needed | Bridge with explicit routing |
| Synthesis insight | Bridge with synthesis section |
**기본값**: 매 bridge index 의 explicit `parents:` array + 매 synthesis section + 매 quarterly review.
## 🔗 Graph
- 부모: [[Index_1490]] · [[Index_13]]
- Adjacent: [[Index_1528]] · [[Index_1532]] · [[Index_1490]]
## 🤖 LLM 활용
**언제**: cross-cluster link suggestion, synthesis paragraph drafting, disambiguation page generation.
**언제 X**: 매 cluster boundary definition (taxonomy decision human-owned).
## ❌ 안티패턴
- **Bridge to nowhere**: 매 parents listed, 매 actual content 의 thin.
- **All notes are bridges**: 매 betweenness 의 lose meaning if everywhere.
- **Stale parent reference**: 매 parent renamed → bridge breaks.
## 🧪 검증 / 중복
- Verified (Newman "Networks: An Introduction", Wikipedia disambiguation guidelines).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — bridge index, betweenness centrality, synthesis pattern |