Files
2nd/10_Wiki/Topic_Business/From_Other/Minimal-Viable-Product.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.2 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-minimal-viable-product Minimal Viable Product 10_Wiki/Topics verified self
MVP
Minimum Viable Product
none A 0.95 applied
product
lean-startup
validation
2026-05-10 pending
language framework
conceptual lean-startup

Minimal Viable Product (MVP)

매 한 줄

"매 학습 단위로서의 가장 작은 product". 매 Eric Ries (2011) 가 정의한 MVP 는 매 customer hypothesis 를 매 minimum effort 로 validate 하는 product version. 매 2026 의 MVP 는 매 AI-augmented prototyping (Claude Opus, Replit Agent) 으로 매 days-not-weeks scale.

매 핵심

매 MVP 의 진짜 의미

  • Minimum: 매 build effort 의 minimization (X feature count).
  • Viable: 매 real user 의 real job 을 매 end-to-end 수행 가능.
  • Product: 매 learning vehicle — 매 metric capture 가능해야.

매 MVP 의 X

  • 매 buggy half-product (X — viable 아님).
  • 매 feature-complete v1 (X — minimum 아님).
  • 매 internal demo (X — product 아님, no users).

매 응용

  1. Concierge MVP: 매 manual backend, 매 user 는 magic UX 로 인식.
  2. Wizard-of-Oz: 매 fake automation, 매 human-in-loop.
  3. Landing page: 매 product X, 매 demand signal capture only.
  4. Single-feature: 매 one core job, 매 polished.

💻 패턴

Hypothesis canvas

mvp:
  hypothesis: "User X will pay $Y for solving Z"
  riskiest_assumption: "User X actually has problem Z"
  minimum_test:
    type: landing_page
    success_metric: "100 sign-ups in 7 days"
    kill_metric: "<10 sign-ups → pivot"

Concierge MVP scaffold

# Fake the backend, learn from real users
from fastapi import FastAPI

app = FastAPI()

@app.post("/recommend")
async def recommend(user_query: str):
    # MVP: send query to founder's phone
    await sms_to_founder(user_query)
    # Founder manually crafts recommendation
    response = await wait_for_founder_reply()
    return {"recommendation": response}

Build-Measure-Learn loop

class MVPCycle:
    def __init__(self, hypothesis):
        self.hypothesis = hypothesis
    def build(self):  # smallest experiment
        return prototype(self.hypothesis)
    def measure(self, prototype, n_users=20):
        return collect_metrics(prototype, n_users)
    def learn(self, metrics):
        if metrics["activation"] > 0.4:
            return "persevere"
        return "pivot"

AI-augmented MVP (2026)

# Claude Code + Replit Agent stack
claude-code "build MVP for <hypothesis>" --scaffold next.js
# Days-not-weeks: AI generates 80% boilerplate

Kill criteria gate

def should_kill(metrics: dict, kill_threshold: dict) -> bool:
    """매 honest evaluation — sunk cost ignore."""
    return all(
        metrics[k] < kill_threshold[k]
        for k in kill_threshold
    )

매 결정 기준

상황 MVP type
매 demand 의 unknown Landing page
매 UX 의 unknown, backend 매 hard Concierge / Wizard-of-Oz
매 demand 매 confirmed, 매 build feasible Single-feature MVP
매 enterprise B2B Design partner pilot (X cold MVP)

기본값: Landing page → Concierge → Single-feature 의 progression.

🔗 Graph

🤖 LLM 활용

언제: 매 hypothesis articulation, 매 riskiest assumption 의 surfacing, 매 MVP scaffold generation. 언제 X: 매 already-validated product 의 v2 — MVP framing 의 X.

안티패턴

  • Feature creep MVP: 매 minimum 무시 → 매 8주 build, 매 launch 실패.
  • Vanity metrics: 매 page views / signups 만 측정 → activation / retention X.
  • No kill criteria: 매 sunk cost trap.
  • MVP = bad quality: 매 minimum 은 scope, X quality.

🧪 검증 / 중복

  • Verified (Ries 2011 The Lean Startup; Blank Four Steps to the Epiphany).
  • 신뢰도 A.

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — MVP types, build-measure-learn, AI-augmented 2026 stack