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 폴더 제거.
5.7 KiB
5.7 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-ethical-decision-making | Ethical Decision Making | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
Ethical Decision Making
매 한 줄
"매 multiple framework 의 cross-check — 매 single doctrine 의 absolutism 회피". 매 consequentialism, deontology, virtue ethics, care ethics 의 each 의 blind spot. 매 2026 의 AI alignment, autonomous vehicle trolley 의 real, RLHF reward modeling 의 active.
매 핵심
매 4 frameworks
- Consequentialism (utilitarian): 매 outcome 만 — sum of utility 의 maximize. Bentham, Mill, Singer.
- Deontology: 매 rules / duties — Kant 의 categorical imperative, 매 means matter.
- Virtue ethics: 매 character / flourishing — Aristotle 의 phronesis, MacIntyre.
- Care ethics: 매 relationships / context — Gilligan, Noddings 의 critique of impartiality.
매 process (Rest 4-component model)
- Moral awareness: 매 ethical issue 의 recognize.
- Moral judgment: 매 right action 의 reason.
- Moral motivation: 매 ethics 의 prioritize over self-interest.
- Moral character: 매 follow-through 의 capacity.
매 응용
- AI deployment review (Anthropic 의 RSP, OpenAI 의 Preparedness).
- Medical triage (ICU bed allocation).
- Whistleblowing / dual-use research.
- Autonomous vehicle 의 unavoidable harm scenario.
💻 패턴
Multi-framework decision matrix
from dataclasses import dataclass
from typing import Callable
@dataclass
class Action:
name: str
consequences: dict[str, float] # outcome → utility
rules_violated: list[str]
virtues_expressed: list[str]
care_relations_impact: dict[str, float]
def evaluate(a: Action) -> dict:
util = sum(a.consequences.values())
deont = -10 * len(a.rules_violated)
virtue = len(a.virtues_expressed)
care = sum(a.care_relations_impact.values())
return {"utilitarian": util, "deontological": deont,
"virtue": virtue, "care": care,
"consensus": all(s >= 0 for s in [util, deont, virtue, care])}
Veil of ignorance simulator (Rawlsian)
import random
def veil_of_ignorance(policy_payoffs: dict[str, list[float]], trials: int = 10_000) -> dict:
"""Rank policies by expected worst-off welfare (maximin)."""
ranks = {}
for policy, payoffs in policy_payoffs.items():
worst = sum(min(random.choices(payoffs, k=1)) for _ in range(trials)) / trials
ranks[policy] = worst
return dict(sorted(ranks.items(), key=lambda kv: -kv[1]))
Trolley-problem framing test
def reframe_test(scenario: dict) -> list[str]:
"""Detect framing dependence — flip wording, check if judgment flips."""
variants = [
scenario["original"],
scenario["original"].replace("kill", "let die"),
scenario["original"].replace("save 5", "sacrifice 1"),
]
return variants # judge each, compare consistency
LLM ethics reasoner
from anthropic import Anthropic
client = Anthropic()
def ethical_review(situation: str) -> str:
return client.messages.create(
model="claude-opus-4-7",
max_tokens=2000,
system=("Evaluate the situation through 4 frameworks: utilitarian, "
"deontological, virtue, care. Surface tensions. Recommend "
"an action only when frameworks converge or note disagreement."),
messages=[{"role": "user", "content": situation}],
).content[0].text
Stakeholder impact map
def stakeholder_matrix(action: str, stakeholders: list[str]) -> dict[str, dict]:
return {
s: {"benefits": [], "harms": [], "consent": None, "voice": None}
for s in stakeholders
}
매 결정 기준
| 상황 | Framework |
|---|---|
| Aggregate welfare, scale | utilitarian |
| Inviolable rights, consent | deontological |
| Long-term character, profession | virtue |
| Dependency, vulnerability | care |
| Policy under uncertainty | Rawlsian veil of ignorance |
| Frameworks conflict | seek convergence; if none, default to deontological floor + utilitarian tiebreak |
기본값: 매 multi-framework cross-check + stakeholder impact map. 매 single-framework dogmatism X.
🔗 Graph
- 부모: Applied Ethics
- 변형: AI Ethics · Research Ethics
- 응용: AI Alignment
🤖 LLM 활용
언제: 매 framework comparison, 매 stakeholder enumeration, 매 dual-use risk surfacing, 매 Socratic counter-argument. 언제 X: 매 final decision 의 LLM 의 outsource — 매 accountability 의 human. 매 jurisdiction-specific legal/ethical compliance 의 expert review.
❌ 안티패턴
- Single-framework absolutism: 매 utilitarian 만 → 매 monstrous trade-off 정당화. 매 deontology 만 → 매 catastrophic outcome 의 무시.
- Ethics-washing: 매 framework citation 후 commercial interest 의 결정 — 매 stakeholder 의 voice 의 부재.
- Trolley reductionism: 매 toy dilemma 의 real-world dilemma 의 동일시 — 매 actual scenarios 의 messy.
- Moral licensing: 매 prior good act 의 next questionable act 의 정당화.
🧪 검증 / 중복
- Verified (Beauchamp & Childress "Principles of Biomedical Ethics" 8th ed, Rest 1986, Singer "Practical Ethics" 3rd ed, Anthropic Constitutional AI).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — 4-framework matrix, Rest model, LLM ethics review pattern 추가 |