f8b21af4be
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>
148 lines
5.3 KiB
Markdown
148 lines
5.3 KiB
Markdown
---
|
|
id: wiki-2026-0508-anarchism
|
|
title: Anarchism
|
|
category: 10_Wiki/Topics
|
|
status: verified
|
|
canonical_id: self
|
|
aliases: [무정부주의, anarchy, libertarian socialism, mutual aid, anti-authoritarianism]
|
|
duplicate_of: none
|
|
source_trust_level: B
|
|
confidence_score: 0.85
|
|
verification_status: conceptual
|
|
tags: [political-philosophy, anarchism, self-governance, mutual-aid, dao, crypto-anarchism, web3]
|
|
raw_sources: []
|
|
last_reinforced: 2026-05-10
|
|
github_commit: pending
|
|
tech_stack:
|
|
language: political theory
|
|
applicable_to: [DAO Design, Open Source Governance, Web3]
|
|
---
|
|
|
|
# Anarchism
|
|
|
|
## 📌 한 줄 통찰
|
|
> **권위 없는 자유의 질서**. 국가 / 지배 강제 X + 자발적 협력 + 수평 조직. 매 "혼란" 가 아닌 — 매 self-imposed 질서. 매 modern crypto / DAO / open source 의 underlying ideology.
|
|
|
|
## 📖 핵심
|
|
|
|
### 핵심 원칙
|
|
1. **Anti-statism**: state 가 individual freedom 의 violence — abolish.
|
|
2. **Self-governance**: external coercion X, self-imposed rule.
|
|
3. **Mutual aid (상호부조)**: 매 cooperation > competition (Kropotkin). 매 [[Altruism]].
|
|
4. **Voluntary association**: 매 group 가 voluntary — 매 exit OK.
|
|
5. **Direct action**: 매 representation X — 매 individual 의 action.
|
|
|
|
### 매 변형
|
|
| 변형 | 강조 | 예시 |
|
|
|---|---|---|
|
|
| Anarcho-communism | 매 collective ownership | Kropotkin |
|
|
| Anarcho-syndicalism | 매 worker union | CNT (Spain 1936) |
|
|
| Anarcho-capitalism | 매 private property + market | Rothbard |
|
|
| Anarcho-primitivism | 매 anti-civilization | Zerzan |
|
|
| Crypto-anarchism | 매 cypherpunk + crypto | Tim May |
|
|
| Mutualism | 매 voluntary contract + market | Proudhon |
|
|
|
|
### 사상가
|
|
- **Proudhon** (1809-1865): "What is property? It is theft."
|
|
- **Bakunin**: 매 Marx 와 the First International split.
|
|
- **Kropotkin**: "Mutual Aid" (1902) — Darwinism vs cooperation.
|
|
- **Goldman**: 매 feminist anarchism.
|
|
- **Chomsky**: 매 modern libertarian socialism.
|
|
|
|
### 매 "Chaos" 의 myth
|
|
- 매 anarchism ≠ 매 chaos / lawlessness.
|
|
- 매 strict moral order — 매 self-imposed.
|
|
- 매 "without rulers" ≠ "without rules".
|
|
|
|
### 현대 적용
|
|
1. **Internet anarchism**: 매 censorship X, 매 P2P, 매 Tor / BitTorrent.
|
|
2. **DAO** (Decentralized Autonomous Organization): 매 leaderless + smart contract.
|
|
3. **Open source**: 매 voluntary contribution + meritocracy. 매 Linux / Wikipedia.
|
|
4. **Crypto-anarchism**: 매 government surveillance 의 cryptography 회피.
|
|
5. **Mutual aid networks**: 매 community resilience (COVID-19 mutual aid groups).
|
|
|
|
### 매 비판
|
|
- **Free-rider problem**: 매 voluntary 의 무임승차.
|
|
- **Scaling**: 매 small commune OK 가, 매 nation-scale 문제.
|
|
- **Tragedy of commons**: 매 unowned resource 의 over-exploit.
|
|
- **Power vacuum**: 매 state 제거 → 매 다른 power (corporation, gang) 가 fill.
|
|
|
|
## 💻 패턴 (응용 — DAO / Open Source)
|
|
|
|
### DAO governance (Snapshot voting)
|
|
```ts
|
|
// 매 token holder 의 vote weight
|
|
function tally(votes: Vote[], holdings: Map<Address, BigInt>): Result {
|
|
const tally = new Map<Choice, BigInt>();
|
|
for (const v of votes) {
|
|
const weight = holdings.get(v.voter) ?? 0n;
|
|
tally.set(v.choice, (tally.get(v.choice) ?? 0n) + weight);
|
|
}
|
|
return decide(tally);
|
|
}
|
|
```
|
|
|
|
→ 매 leader X — 매 token 의 collective decision.
|
|
|
|
### Open source meritocracy
|
|
```python
|
|
# 매 contributor 의 reputation = merge 된 PR count
|
|
def voting_power(contributor):
|
|
return contributor.merged_prs * 1 + contributor.reviews * 0.5
|
|
```
|
|
|
|
→ 매 권위 X — 매 contribution 의 자연 hierarchy.
|
|
|
|
### Mutual aid platform
|
|
```ts
|
|
// 매 voluntary exchange — 매 currency X
|
|
type Offer = { user: User; resource: string; given: number; received: number };
|
|
|
|
function suggest_match(offers: Offer[], request: Request): Match[] {
|
|
return offers
|
|
.filter(o => o.resource === request.resource)
|
|
.sort((a, b) => a.given - a.received - (b.given - b.received));
|
|
}
|
|
```
|
|
|
|
→ 매 reciprocity 의 gentle bias.
|
|
|
|
## 🤔 결정 기준
|
|
| 상황 | 적용 | 회피 |
|
|
|---|---|---|
|
|
| Small community | ✅ | ✗ National defense |
|
|
| Open source | ✅ | ✗ Mission-critical infra |
|
|
| DAO | ✅ | ✗ 매 fast decision 필요 |
|
|
| Activism | ✅ | ✗ 매 long-term planning |
|
|
|
|
**기본값**: 매 small / voluntary / low-stake 환경 의 anarchist principle 가 좋음. 매 large / coercive / high-stake 의 hybrid (state + voluntary).
|
|
|
|
## 🔗 Graph
|
|
- 변형: [[Anarcho-Primitivism]]
|
|
- 응용: [[DAO]] · [[Web3]]
|
|
- 사상가: [[Chomsky]]
|
|
- Adjacent: [[Mutual-Aid]]
|
|
|
|
## 🤖 LLM 활용
|
|
**언제**: 매 governance design (DAO, open source). 매 decentralization 설계. 매 political philosophy discussion.
|
|
**언제 X**: 매 specific legal advice. 매 violent extremism justification (해석 X).
|
|
|
|
## ❌ 안티패턴
|
|
- **"매 anarchy = chaos"**: 매 misconception.
|
|
- **State 제거 only**: 매 power vacuum → 매 다른 form 의 hierarchy.
|
|
- **DAO 의 1-person-1-vote 무시**: 매 plutocracy 화.
|
|
- **Voluntary 의 coercion 무시**: 매 hidden coercion (economic, social).
|
|
- **Scale 무시**: 매 small commune 의 model 의 nation 의 적용 X.
|
|
|
|
## 🧪 검증 / 중복
|
|
- Verified (concept-level).
|
|
- 신뢰도 B (political philosophy).
|
|
- Related: [[Anarcho-Capitalism]] · [[Anarcho-Primitivism]] · [[DAO]].
|
|
|
|
## 🕓 Changelog
|
|
| 날짜 | 변경 |
|
|
|---|---|
|
|
| 2026-04-20 | Auto-reinforced |
|
|
| 2026-05-08 | Phase 1 normalize |
|
|
| 2026-05-10 | Manual cleanup — 사상가 + 변형 + DAO 응용 + 안티패턴 |
|