Files
2nd/10_Wiki/Topic_Programming/Architecture/Problem Solving Skills.md
T
Antigravity Agent 9148c358d0 docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
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 폴더 제거.
2026-07-05 00:33:48 +09:00

4.1 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-problem-solving-skills Problem Solving Skills 10_Wiki/Topics verified self
Problem Solving
문제 해결 능력
debugging skills
none A 0.9 applied
meta
debugging
engineering
methodology
2026-05-10 pending
language framework
meta methodology

Problem Solving Skills

매 한 줄

"매 problem 정의가 매 solution의 매 절반". Problem solving은 매 ill-defined situation을 매 well-defined sub-problems으로 매 decompose하고 매 hypothesis-test loop으로 매 narrow down하는 매 transferable skill set. Polya (1945) 4-step부터 매 modern debugging 까지 매 동일한 backbone.

매 핵심

매 Polya 4-step (1945)

  1. Understand: 매 input/output/constraint 매 명시.
  2. Plan: 매 known similar problem과 매 mapping.
  3. Execute: 매 plan 매 step-by-step.
  4. Review: 매 result verify, 매 generalize.

매 Debugging 전용 loop

  • 매 Reproduce: 매 minimal repro case.
  • 매 Bisect: 매 git bisect / binary search.
  • 매 Hypothesize: 매 1개 변수만 매 변경.
  • 매 Verify: 매 test 매 추가.
  • 매 Postmortem: 매 root cause + prevention.

매 응용

  1. Production incident response (5-why).
  2. Algorithm design (decomposition + invariants).
  3. LLM prompt debugging (delta isolation).

💻 패턴

Minimal repro extraction

# Bisect a failing input down to minimal case
def minimal_repro(input_list, fails):
    while True:
        for i in range(len(input_list)):
            candidate = input_list[:i] + input_list[i+1:]
            if fails(candidate):
                input_list = candidate
                break
        else:
            return input_list

Git bisect automation

git bisect start HEAD v1.0.0
git bisect run pytest tests/test_regression.py::test_bug
# 매 Bisect 자동 종료 → first-bad-commit 매 출력

5-why root cause

# postmortem.yaml
incident: api 500 spike
why_1: db connections exhausted
why_2: connection leak in /search handler
why_3: exception bypassed `with` cleanup
why_4: custom context manager swallowed asyncio.CancelledError
why_5: copy-pasted snippet from Stack Overflow without review
fix: replace with asynccontextmanager + add lint rule

Hypothesis-driven test

# Change ONE variable per iteration
import time
def measure(config):
    t = time.time(); run(config); return time.time() - t

base = {"batch": 32, "workers": 4, "cache": True}
for k in base:
    cfg = {**base, k: not base[k] if isinstance(base[k], bool) else base[k]*2}
    print(k, measure(cfg))

Rubber-duck logger

def trace_state(label, **vars):
    print(f"[{label}]", " | ".join(f"{k}={v!r}" for k, v in vars.items()))

trace_state("before-loop", i=0, total=len(data), seen=set())

매 결정 기준

상황 Approach
Bug 매 reproducible Bisect + minimal repro
Bug 매 intermittent Logging + statistical test
Algorithm 매 unknown Polya + analogy from known
Production incident 5-why + postmortem

기본값: Reproduce → Bisect → Hypothesize → Verify → Document.

🔗 Graph

🤖 LLM 활용

언제: 매 ill-defined task decomposition, 매 stuck-state escape, 매 LLM prompt 디버깅. 언제 X: 매 trivial 1-line typo (overhead).

안티패턴

  • 매 Shotgun debugging: 매 random 변경 후 매 동작하면 commit.
  • 매 Symptom-only fix: 매 root cause 무시.
  • 매 No repro: 매 "내 환경에선 됨".
  • 매 Heisenbug 회피: 매 logging 추가하면 매 사라지는 bug 매 무시.

🧪 검증 / 중복

  • Verified (Polya "How to Solve It" 1945, Zeller "Why Programs Fail" 2nd ed.).
  • 신뢰도 A.

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — Polya + debugging loop + repro/bisect patterns