Files
2nd/10_Wiki/Topic_Programming/AI_and_ML/Anarchism.md
T
Antigravity Agent 9148c358d0 docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
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 폴더 제거.
2026-07-05 00:33:48 +09:00

5.3 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-anarchism Anarchism 10_Wiki/Topics verified self
무정부주의
anarchy
libertarian socialism
mutual aid
anti-authoritarianism
none B 0.85 conceptual
political-philosophy
anarchism
self-governance
mutual-aid
dao
crypto-anarchism
web3
2026-05-10 pending
language applicable_to
political theory
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)

// 매 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

# 매 contributor 의 reputation = merge 된 PR count
def voting_power(contributor):
    return contributor.merged_prs * 1 + contributor.reviews * 0.5

→ 매 권위 X — 매 contribution 의 자연 hierarchy.

Mutual aid platform

// 매 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

🤖 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.

🧪 검증 / 중복

🕓 Changelog

날짜 변경
2026-04-20 Auto-reinforced
2026-05-08 Phase 1 normalize
2026-05-10 Manual cleanup — 사상가 + 변형 + DAO 응용 + 안티패턴