9148c358d0
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 폴더 제거.
114 lines
4.5 KiB
Markdown
114 lines
4.5 KiB
Markdown
---
|
|
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 |
|