"매 zoom out before you zoom in". Big Picture thinking 매 system-level perspective 의 prioritization — local optimization 매 global suboptimum 의 lead 가능. 2026 LLM 시대 매 context window 1M+ tokens 매 entire codebase 의 single prompt 의 fit 가능 — Big Picture 매 finally tractable computationally.
L3 (system): full application, deployment topology.
L4 (ecosystem): organization, market, regulation.
매 mistake: L0 의 stuck — never L3 까지 zoom out.
매 When to zoom out
매 stuck 30+ min 의 single bug → L2 의 zoom out.
매 architectural decision → L3 mandatory.
매 hiring / team structure → L4.
매 PR review → L1 + L2 mix.
매 응용
Architecture review (data flow diagram).
Incident postmortem (5 whys → systemic cause).
Roadmap planning (quarter-level priorities).
Code review (cross-cutting concerns).
💻 패턴
Pattern 1: Context map (L3 view)
# Visualize bounded contexts (DDD-style)contexts={"auth":{"depends_on":[],"exposes":["user_id","session"]},"billing":{"depends_on":["auth"],"exposes":["invoice","subscription"]},"notification":{"depends_on":["auth","billing"],"exposes":[]},}deffind_critical_path(contexts):"""매 highest fan-in 의 service 의 SPOF candidate."""fan_in={ctx:0forctxincontexts}forctx,infoincontexts.items():fordepininfo["depends_on"]:fan_in[dep]+=1returnsorted(fan_in.items(),key=lambdax:-x[1])
Pattern 2: Zoom-out checklist
ZOOM_OUT_QUESTIONS=["Who else is affected by this change?","What breaks if this fails at 3am?","Is this the right problem to solve right now?","What does success look like in 6 months?","Who owns this when I leave?",]defreview_pr(pr_diff:str)->list[str]:return[qforqinZOOM_OUT_QUESTIONSifnotanswered_in(pr_diff,q)]
Pattern 3: Pre-mortem (L4 thinking)
defpremortem(project:str)->dict:"""매 launch 전 의 'imagine it failed' exercise."""return{"tech_failure":"What technical assumption was wrong?","market_failure":"Why did users not adopt?","team_failure":"What organizational dynamic killed it?","regulation":"What law/policy blocked it?",}
언제: Architecture review, repo onboarding, postmortem synthesis, roadmap drafting. 매 1M context 의 entire codebase 의 fit 가능 — 매 truly novel 2026 capability.
언제 X: Tactical bug fix (L0/L1), perf tuning of single function. 매 LLM 매 generic advice 의 emit — local context 의 lose.
❌ 안티패턴
Premature zoom-out: 매 every bug 의 L4 의 escalate — 매 paralysis.
Ivory tower architecture: L3 만 — implementation reality 의 ignore.
Big-picture-only PR review: 매 nitpick 의 miss.
Solo big-picture: 매 architect 매 single person — bus factor 1.
🧪 검증 / 중복
Verified: Donella Meadows "Thinking in Systems" (2008), Eric Evans "DDD" (2003), Nicole Forsgren "Accelerate" (2018).
신뢰도 A.
중복: Systems-Thinking 매 strict superset — Big Picture 매 daily-practice variant 의 framing.
🕓 Changelog
날짜
변경
2026-05-08
Phase 1
2026-05-10
Manual cleanup — full content with L0-L4 levels, zoom-out patterns, LLM 1M context architecture summary