Files
2nd/10_Wiki/Topics/Other/Minimal-Viable-Product.md
T
koriweb d8a80f6272 chore(wiki): dangling 링크 canonical 정규화 (768파일/1200건)
이름만 다른(표기 변형) [[위키링크]]를 대상 문서의 canonical 제목으로 치환해
끊겼던 1,200개 링크를 연결. 제목/파일명 정규화 일치만 적용하고 별칭 매칭은
과병합 위험으로 제외(애매성 가드). 원본은 _link_reconcile_backup/ 에 백업.
도구: Datacollect/scripts/link_reconcile_apply.mjs

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-08 12:24:15 +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