Files
2nd/10_Wiki/Topics/Domain_Programming/AI_and_ML/Anarchism.md
T
Antigravity Agent c24165b8bc 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>
2026-07-11 11:05:56 +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 응용 + 안티패턴