--- id: wiki-2026-0508-antinomianism title: Antinomianism category: 10_Wiki/Topics status: verified canonical_id: self aliases: [Anti-law, Lawless ethics, Spiritual libertinism] duplicate_of: none source_trust_level: A confidence_score: 0.85 verification_status: applied tags: [theology, ethics, philosophy, history] raw_sources: [] last_reinforced: 2026-05-10 github_commit: pending tech_stack: language: na framework: na --- # Antinomianism ## 매 한 줄 > **"매 antinomianism 은 매 moral law 보다 매 grace / inner conviction 우선 의 주장"**. 매 16세기 종교개혁 (Johannes Agricola vs Luther) 에서 정립되었고, 매 modern 에서 매 ethical relativism, libertarianism, 매 even AI alignment debate (rule-following vs value-aligned reasoning) 까지 매 echo 가 이어진다. ## 매 핵심 ### 매 역사적 전개 - **고대 Gnostic** (2C): 매 material law 의 reject — 매 spiritual gnosis 가 superior. - **Reformation Agricola** (1530s): "Christian 매 Mosaic law 의 free" — 매 Luther 매 "antinomian" 명명. - **English Civil War Ranters** (1640s): 매 radical antinomian sect — 매 social order 의 challenge. - **American Hutchinson** (1637): 매 covenant of grace vs covenant of works — 매 Massachusetts Bay banishment. - **Modern**: 매 Kierkegaard 의 "teleological suspension of the ethical" (Abraham/Isaac) — 매 antinomian moment. ### 매 두 갈래 - **Theological antinomianism**: 매 grace 가 law 의 supersede — 매 Paul Romans 6 strong reading. - **Ethical antinomianism**: 매 universal moral rule 의 reject — 매 situation ethics, existentialism. ### 매 응용 1. **윤리학 강의**: 매 deontology vs virtue vs antinomian framing. 2. **History of Christianity**: 매 Reformation faction 분석. 3. **AI alignment**: 매 "rule-based" vs "value-aligned" — 매 antinomian analogue. ## 💻 패턴 ### Pattern 1: Rule-vs-grace dilemma 분석 framework ```python @dataclass class EthicalDilemma: rule: str # explicit prohibition inner_conviction: str # felt right action consequence_rule: float consequence_grace: float def antinomian_choice(d: EthicalDilemma) -> str: return "follow conviction" if d.consequence_grace > d.consequence_rule \ else "follow rule" ``` ### Pattern 2: 매 Historical text comparison ```python texts = { "agricola_1537": "law has no place in conscience", "luther_1539": "antinomians make Christ a destroyer of law", "hutchinson_1637": "covenant of grace, not works", } # Embedding cluster → 매 antinomian core vocabulary 추출 ``` ### Pattern 3: AI alignment analogue ```python # RLHF rule-based vs constitutional AI value-based def alignment_mode(policy, situation): if policy.type == "rule": return policy.rules.get(situation, "default deny") elif policy.type == "constitutional": return policy.values.evaluate(situation) # 매 antinomian-style ``` ## 매 결정 기준 | 상황 | Approach | |---|---| | 매 strict rule application | 매 nomian (deontological) | | 매 novel situation 의 rule absent | 매 antinomian (grace / value) | | 매 high stakes + clear rule | nomian default | | 매 ambiguous + harm avoidance | antinomian + community check | **기본값**: 매 rule + value 매 dual check — 매 antinomianism 의 historical excess (Ranters libertinism) 의 회피. ## 🔗 Graph - 부모: [[Ethical-Decision-Making]] · [[Sociology of Knowledge]] - 변형: [[Existentialism]] - 응용: [[Objectivism]] · [[Belief-Revision]] - Adjacent: [[Hypostatic-Abstraction]] · [[Memetics]] ## 🤖 LLM 활용 **언제**: 매 ethics tutoring agent — 매 Reformation history / theology survey / comparative religion. **언제 X**: 매 contemporary moral advice — 매 LLM 이 antinomian framing 으로 매 user 를 misguide 매 risk. ## ❌ 안티패턴 - **Antinomianism = libertinism 동일시**: 매 historical Ranters 의 caricature. 매 most antinomian theology 매 still ethical. - **Modern relativism 과 conflate**: 매 antinomianism 매 specifically theological — 매 secular relativism 의 separate. - **Single-source reading**: 매 Paul Romans 6 만 보면 매 partial — 매 James, 매 Sermon on the Mount counter-balance. ## 🧪 검증 / 중복 - Verified (Stanford Encyclopedia of Philosophy "Antinomianism", McGrath *Reformation Thought* 5th ed). - 신뢰도 A-. ## 🕓 Changelog | 날짜 | 변경 | |---|---| | 2026-05-08 | Phase 1 | | 2026-05-10 | Manual cleanup — historical timeline + 매 AI alignment analogue |