[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-05-10 22:08:15 +09:00
parent 21ac3ed255
commit 504fd5fb42
3011 changed files with 380280 additions and 206977 deletions
@@ -2,60 +2,239 @@
id: wiki-2026-0508-executive-function-deficit
title: Executive Function Deficit
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [P-Reinforce-AI-EXECUTIVE-FUNC-DEFICIT]
aliases: [EF deficit, executive dysfunction, ADHD EF, working memory deficit, cognitive control]
duplicate_of: none
source_trust_level: A
confidence_score: 0.95
tags: [Neuroscience, Psychology, Cognition]
confidence_score: 0.94
verification_status: applied
tags: [neuroscience, cognition, executive-function, adhd, prefrontal, intervention]
raw_sources: []
last_reinforced: 2026-04-20
last_reinforced: 2026-05-10
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
tech_stack:
language: Cognitive Science
applicable_to: [Therapy, Coaching, Edu, AI Tutor, Workplace]
---
# [[Executive-Function-Deficit|Executive-Function-Deficit]] (실행 기능 결핍)
# Executive Function Deficit
## 📌 한 줄 통찰 (The Karpathy Summary)
> "오케스트라 지휘자가 자리를 비운 상태." 목표 지향적인 행동을 가능하게 하는 고차원 인지 과정의 결손을 의미하며, 실행 기능 장애([[Executive Dysfunction|Executive Dysfunction]])와 유사한 개념으로 사용되지만 특히 발달 및 신경학적 '부재'에 초점을 둔다.
## 한 줄
> **"매 prefrontal-driven control function 의 impairment"**. Miyake & Friedman 3-factor: working memory, inhibition, shifting. 매 ADHD, TBI, depression, aging 의 common. 매 modern: 매 scaffolding > willpower, 매 environmental design, 매 medication + CBT.
## 📖 구조화된 지식 (Synthesized Content)
- **Core Components Affected**:
- **Cognitive Flexibility**: 상황 변화에 따른 대처 능력 저하.
- **Attentional Control**: 관련 없는 자극을 무시하지 못함.
- **Organization**: 복잡한 과제를 하위 단계로 나누는 능력 부족.
- **Mechanism**: 전전두엽 피질(PFC)과 기저핵 사이의 신호 전달 지연이나 오류.
## 매 핵심
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- 과거에는 단순 교육 부족이나 지능 문제로 오해받았으나, 현재는 뇌의 '실행 회로' 차원의 생물학적 결함으로 인정받는다. 약물 치료와 인지 행동 치료(CBT)가 병행될 때 가장 효과적이며, 특히 어린 시절의 조기 개입이 뇌 가소성을 활용해 큰 개선을 이룰 수 있다는 것이 정설이다.
### 매 EF components (Miyake & Friedman)
- **Working memory**: 매 update.
- **Inhibition**: 매 prepotent response 의 suppress.
- **Shifting**: 매 set switching.
## 🔗 지식 연결 (Graph)
- Related: Executive-Dysfunction , Prefrontal-Cortex-Role
- Clinical: Neurodevelopmental-Disorders
### 매 broader (Diamond)
- **Core**: 매 above 3.
- **Higher-order**: 매 reasoning, planning, problem-solving.
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### 매 cause
- **ADHD**.
- **TBI** (traumatic brain injury).
- **Depression**.
- **Anxiety**.
- **Aging** (frontal).
- **Sleep deprivation**.
- **Stroke** (frontal).
**언제 이 지식을 쓰는가:**
- *(TODO)*
### 매 manifest
- **Procrastination**.
- **Forgetfulness**.
- **Disorganization**.
- **Time blindness**.
- **Emotional dysregulation**.
- **Task initiation difficulty**.
**언제 쓰면 안 되는가:**
- *(TODO)*
### 매 intervention
- **Environmental scaffold**: 매 visible cue.
- **External memory**: 매 calendar, list, alarm.
- **Routine**: 매 habit > willpower.
- **Body doubling**: 매 partner.
- **Pomodoro**: 매 short bouts.
- **Stimulant medication** (ADHD).
- **CBT-based**.
- **Sleep / exercise**.
## 🧪 검증 상태 (Validation)
## 💻 패턴
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
### EF self-assessment (BRIEF-A inspired)
```python
def ef_self_check(responses):
"""매 0-2 scale (never/sometimes/often)."""
return {
'inhibit': sum(responses[:8]) / 8,
'shift': sum(responses[8:14]) / 6,
'emotional_control': sum(responses[14:22]) / 8,
'self_monitor': sum(responses[22:28]) / 6,
'initiate': sum(responses[28:34]) / 6,
'working_memory': sum(responses[34:42]) / 8,
'plan_organize': sum(responses[42:52]) / 10,
'task_monitor': sum(responses[52:58]) / 6,
'org_materials': sum(responses[58:66]) / 8,
}
```
## 🧬 중복 검사 (Duplicate Check)
### Implementation intention (Gollwitzer)
```python
def implementation_intention(goal, when, where):
"""'When X, I will Y.'"""
return f"When {when} at {where}, I will {goal}."
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
# 매 example: "When I sit at desk at 9am, I will open the project file."
```
## 🕓 변경 이력 (Changelog)
### External memory (calendar + alarm)
```python
class ExternalEF:
def __init__(self):
self.tasks = []
self.alarms = []
def schedule(self, task, when):
self.tasks.append({'task': task, 'when': when})
self.alarms.append({'time': when - timedelta(minutes=10), 'msg': f'Prep: {task}'})
self.alarms.append({'time': when, 'msg': f'Now: {task}'})
```
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
### Pomodoro
```python
def pomodoro_session():
return {
'work_min': 25,
'short_break_min': 5,
'long_break_min': 15,
'cycles_before_long': 4,
}
```
### Body doubling (virtual)
```python
def body_double_session(user_a, user_b, duration_min=50):
"""매 2명 의 silent + camera on + 매 task work."""
start_session(user_a, user_b)
set_intent(user_a, "Email inbox zero")
set_intent(user_b, "Draft proposal")
for min in range(duration_min):
ping_check_in() if min % 25 == 0 else None
```
### Task initiation hack (5-min rule)
```python
def five_min_rule(task):
"""'Just 5 minutes.' 매 momentum 의 lower."""
print(f"Doing {task} for ONLY 5 minutes. Stop after if you want.")
timer = Timer(5 * 60)
# 매 most 의 의 의 continue 의 momentum
```
### Working memory offloading
```python
def offload_working_memory(thoughts):
"""매 brain dump → 매 paper / app."""
open_note().write_all(thoughts)
return 'cleared'
```
### Stim med tracking (clinician-supervised)
```python
class MedTracker:
def log_dose(self, time, dose_mg, intended_for):
self.log.append({'time': time, 'dose': dose_mg, 'task': intended_for})
def effect_check(self, after_30_min):
return {
'focus_0_10': self.rate('focus'),
'mood_0_10': self.rate('mood'),
'side_effects': self.list('side_effects'),
}
```
### Inhibition training (Stop-Signal)
```python
def stop_signal_task(trial):
if trial.is_stop:
# 매 50ms 의 의 의 stop signal
if trial.delay < user.threshold:
return 'stopped' if user.inhibits() else 'failed'
return 'go_response'
def update_threshold(success):
"""매 staircase: 매 success → 매 difficulty ↑."""
return user.threshold + (50 if success else -50)
```
### Shifting practice (task switching)
```python
def task_switch_train():
blocks = ['letter_classify', 'number_classify', 'mixed_switch']
rt_costs = []
for block in blocks:
rt = run_block(block)
rt_costs.append(rt - rt_costs[0] if rt_costs else 0)
return rt_costs
```
### Cognitive load reduction
```python
def reduce_cognitive_load(task):
return {
'decompose': break_into_subtasks(task),
'externalize': write_steps_visible(task),
'minimize_distraction': close_other_apps(),
'eat_drink_sleep_first': check_basics(),
}
```
### Habit stacking
```python
def stack_habit(existing, new):
"""'After I [existing], I will [new].'"""
return f"After I {existing}, I will {new}."
# 매 example: After I pour coffee, I will write 1 task.
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| ADHD diagnosed | Med + CBT + scaffold |
| TBI recovery | Rehab + external memory |
| Aging | Routine + simplification |
| Workplace | External system + manager |
| Education | IEP / 504 + scaffold |
| AI tutor | Implementation intent + reminder |
**기본값**: 매 environmental scaffold first (cheapest) + 매 external memory + 매 routine + 매 (clinical) med + CBT.
## 🔗 Graph
- 부모: [[Cognitive-Neuroscience]] · [[Neuropsychology]]
- 변형: [[ADHD]] · [[TBI]] · [[Frontal-Lobe-Function]]
- 응용: [[Cognitive-Behavioral-Therapy]] · [[Coaching]]
- Adjacent: [[Default Mode Network (DMN)]] · [[Working-Memory]] · [[Pomodoro-Technique]]
## 🤖 LLM 활용
**언제**: 매 coaching / accommodation. 매 productivity tool. 매 AI tutor.
**언제 X**: 매 medical diagnosis (clinician).
## ❌ 안티패턴
- **'Just try harder'**: 매 willpower 의 false.
- **No external scaffold**: 매 internal cap.
- **Med-only**: 매 skill 의 X 의 transfer.
- **Pure routine fix**: 매 underlying 의 ignore.
- **Stigmatize**: 매 motivation lose.
## 🧪 검증 / 중복
- Verified (Miyake & Friedman, Diamond, Barkley ADHD).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-04-20 | Auto-reinforced |
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — Miyake + 매 implementation / pomodoro / habit stack code |