Files
2nd/10_Wiki/Topics/Domain_General/From_Other/Antinomianism.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

4.5 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-antinomianism Antinomianism 10_Wiki/Topics verified self
Anti-law
Lawless ethics
Spiritual libertinism
none A 0.85 applied
theology
ethics
philosophy
history
2026-05-10 pending
language framework
na 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

@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

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

# 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

🤖 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