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>
This commit is contained in:
Antigravity Agent
2026-07-11 11:05:56 +09:00
parent 6549ead309
commit c24165b8bc
6193 changed files with 1717 additions and 31 deletions
@@ -0,0 +1,113 @@
---
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 |