docs: finalized wiki integrity maintenance (v3.0 standard) - pruned 1400+ stubs and fixed 11k+ ghost links

This commit is contained in:
Antigravity Agent
2026-05-02 09:18:34 +09:00
parent c84dcb8371
commit 6445fcc05b
13150 changed files with 55394 additions and 100862 deletions
@@ -1,5 +1,5 @@
---
id: [[P-Reinforce]]-AUTO-F57735
id: [[P-Reinforce|P-Reinforce]]-AUTO-F57735
category: "10_Wiki/💡 Topics/Programming & Language"
confidence_score: 0.90
tags: [auto-reinforced]
@@ -7,7 +7,7 @@ last_reinforced: 2026-04-20
github_commit: "[P-Reinforce] Continuous Worker - 단일 책임 원칙(SRP)"
---
# [[단일 책임 원칙(SRP)]]
# [[단일 책임 원칙 (SRP)|단일 책임 원칙(SRP]]
## 📌 한 줄 통찰 (The Karpathy Summary)
> 단일 책임 원칙(SRP, Single Responsibility Principle)은 클래스나 모듈이 단 하나의 변경 이유만 가져야 한다는 소프트웨어 설계 원칙입니다 [1, 2]. 하나의 모듈에 영속성, 데이터 처리, 알림 등 여러 책임이 섞이면 코드가 불안정해지고 조그만 수정에도 예기치 않은 문제가 발생할 위험이 커집니다 [2]. 이 원칙을 준수하면 각 모듈이 한 가지 명확한 역할만 수행하게 되어, 한 영역의 코드를 수정할 때 다른 무관한 로직에 영향을 미치지 않고 안전하게 변경할 수 있습니다 [2, 3].