[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,90 +2,156 @@
id: wiki-2026-0508-issue-tree
title: Issue Tree
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: []
aliases: [Logic Tree, Hypothesis Tree, Decomposition Tree]
duplicate_of: none
source_trust_level: A
confidence_score: 0.92
tags: [uncategorized]
confidence_score: 0.9
verification_status: applied
tags: [problem-solving, consulting, decomposition, mece]
raw_sources: []
last_reinforced: 2026-05-08
last_reinforced: 2026-05-10
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
tech_stack:
language: unspecified
framework: unspecified
language: markdown
framework: mece
---
# [[Issue Tree|Issue Tree]]
# Issue Tree
## 📌 한 줄 통찰 (The Karpathy Summary)
크고 복잡한 문제를 논리적이고 관리가 용이한 하부 문제(Sub-issues)들로 분해하기 위해 사용하는 시각적인 트리형 프레임워크.
## 한 줄
> **"매 problem 매 MECE branches 의 decompose"**. Issue tree 매 root question 매 sub-question (mutually exclusive, collectively exhaustive) 의 hierarchical breakdown — 매 Minto Pyramid + McKinsey 80년 standard. 매 2026 LLM agent task planning, root-cause analysis 매 동일 pattern.
## 📖 구조화된 지식 (Synthesized Content)
- 이슈 트리는 상단에 핵심 문제 선언문을 두고 하단으로 갈수록 점차 세부적인 문제들로 넓게 퍼져나가는 형태를 취합니다 [50]. (예: "레스토랑이 수익성이 없다" -> "수익성을 어떻게 올릴 것인가?" -> "수익 증가" & "비용 감소" -> 구체적 실행 방안) [51, 52].
- 계층을 분할할 때는 누락과 중복을 방지하기 위해 반드시 [[MECE|MECE]](상호 배제 및 전체 포괄) 원칙을 엄격하게 적용해야 합니다 [53, 54].
- 컨설턴트들은 이슈 트리를 연구 로드맵으로 활용하여, 중복 없이 각 팀원에게 세부 업무(Workstreams)를 명확히 분배합니다 [54].
## 매 핵심
## 🔗 지식 연결 (Graph)
- **Related Topics:** [[MECE Principle|MECE Principle]], [[Hypothesis Tree|Hypothesis Tree]]
- **Projects/Contexts:** [[Problem Solving|Problem Solving]], [[Profitability Framework|Profitability Framework]]
- **Contradictions/Notes:** 구조화된 이슈 트리를 바탕으로 초기 검토를 마친 후, 가치가 떨어지는 옵션들은 과감히 배제하는 '가지치기(Trimming branches)'가 수반되어야 실질적인 문제 해결 도구로 기능할 수 있습니다 [53].
### 매 종류
- **Diagnostic (Why)**: 매 cause 의 decompose. 매 5-Why 의 generalized.
- **Solution (How)**: 매 action option 의 decompose.
- **Hypothesis tree**: 매 testable claim 의 분기 — 매 consulting deliverable.
- **Profitability tree**: Profit = Revenue Cost — 매 standard MBA template.
---
*Last updated: 2026-04-27*
### 매 작성 원칙
- **MECE**: 매 branches 매 overlap X, exhaustive O.
- **Same level abstraction**: 매 sibling 매 동일 granularity.
- **Verb-noun structure**: 매 action-oriented (solution tree).
- **Falsifiable leaves**: 매 leaf 매 data-checkable hypothesis.
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### 매 응용
1. 매 management consulting (case interview).
2. 매 incident root cause (post-mortem).
3. 매 LLM agent — task decomposition (ReAct, Tree-of-Thoughts).
4. 매 product strategy (Jobs-to-be-Done).
**언제 이 지식을 쓰는가:**
- *(TODO)*
## 💻 패턴
**언제 쓰면 안 되는가:**
- *(TODO)*
## 🧪 검증 상태 (Validation)
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
## 🧬 중복 검사 (Duplicate Check)
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- **과거 데이터와의 충돌:** 없음
- **정책 변화:** 없음
## 🕓 변경 이력 (Changelog)
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
## 💻 코드 패턴 (Code Patterns)
**패턴 1:** *(TODO: 이 프로젝트 컨벤션 반영한 구조 스켈레톤)*
```text
# TODO
### 1. Profitability Tree (Markdown)
```markdown
- Profit decline?
- Revenue down?
- Volume down?
- Market shrink?
- Share loss?
- Price down?
- Discount increase?
- Mix shift?
- Cost up?
- COGS up?
- SG&A up?
```
## 🤔 의사결정 기준 (Decision Criteria)
### 2. 5-Why (Diagnostic)
```python
def five_why(problem):
chain = [problem]
for _ in range(5):
cause = ask("Why?", context=chain[-1])
chain.append(cause)
return chain # 매 root cause 매 마지막
```
**선택 A를 써야 할 때:**
- *(TODO)*
### 3. Hypothesis-Driven (McKinsey-style)
```yaml
root: "Should we enter market X?"
children:
- "Is the market attractive?"
children:
- "TAM > $1B?" [data: industry report]
- "Growth > 10%?" [data: historical CAGR]
- "Margins > 20%?" [data: comparable companies]
- "Can we win?"
children:
- "Right-to-play assets?"
- "Competitive advantage sustainable?"
- "Is it worth it?"
children:
- "NPV > $X?"
- "Strategic fit?"
```
**선택 B를 써야 할 때:**
- *(TODO)*
### 4. Tree-of-Thoughts (LLM)
```python
def tot(problem, depth=3, branches=3):
if depth == 0:
return evaluate(problem)
sub_problems = llm_decompose(problem, k=branches)
scores = [tot(sp, depth-1, branches) for sp in sub_problems]
return max(zip(sub_problems, scores), key=lambda x: x[1])
```
**기본값:**
> *(TODO)*
### 5. Fishbone (Ishikawa) — alternative form
```
┌── People ── Training gap
Defect ─────────────┼── Process ── No QA gate
└── Tooling ── Outdated CI
```
## ❌ 안티패턴 (Anti-Patterns)
### 6. Markdown Renderer (Mermaid)
```mermaid
graph TD
Root["Why is churn up?"] --> A["Product issue?"]
Root --> B["Pricing issue?"]
Root --> C["Support issue?"]
A --> A1["Bug rate up"]
A --> A2["Feature gap"]
B --> B1["Competitor cheaper"]
```
- **[안티패턴]:** *(TODO: 무엇을 하면 안 되는가 + 이유 + 대신 무엇을)*
## 매 결정 기준
| 상황 | Tree type |
|---|---|
| Find root cause | Diagnostic / 5-Why |
| Choose action | Solution tree |
| Strategy decision | Hypothesis tree |
| LLM task decomp | Tree-of-Thoughts |
| Manufacturing defect | Ishikawa |
**기본값**: 매 hypothesis tree (testable leaves) — 매 consulting/strategy 매 standard.
## 🔗 Graph
- 부모: [[Problem Solving]] · [[Strategic Thinking]]
- 변형: [[Logic Trees]] · [[Mental Models]]
- 응용: [[Root-Cause-Analysis-RCA]] · [[Mutually Exclusive and Collectively Exhaustive (MECE)]] · [[Profitability Framework]]
- Adjacent: [[Decision Theory]] · [[Tree-of-Thoughts]]
## 🤖 LLM 활용
**언제**: 매 task decomposition, 매 root-cause investigation, 매 case-interview prep, 매 ToT/agent planning.
**언제 X**: 매 single-step factual lookup. 매 over-decompose 의 paralysis.
## ❌ 안티패턴
- **Non-MECE branches**: 매 overlap 또는 gap.
- **Mixed abstraction**: 매 sibling 매 inconsistent depth.
- **No data plan**: 매 leaf 매 untestable.
- **Pre-determined answer**: 매 tree 매 confirmation bias 의 disguise.
## 🧪 검증 / 중복
- Verified (Minto, *The Pyramid Principle*; McKinsey *Problem Solving*).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — profitability/hypothesis/ToT patterns |