"매 cheapest test 매 maximum learning". 매 paper sketches → Figma → v0 / Claude Artifacts / Lovable / Bolt 매 2026 매 generative prototyping era. 매 hours 단위 product validation.
매 핵심
매 fidelity ladder
Paper / whiteboard: minutes — 매 flow validation.
Wireframe (Figma, Excalidraw): hours — 매 layout.
Mid-fi (Figma + interactions): day — 매 user testing.
High-fi clickable (ProtoPie, Framer): days — 매 stakeholder demo.
Functional MVP (v0, Lovable, Claude Artifacts): hours-days — 매 real users.
매 prototyping types (Houde & Hill 1997)
Role: what does it do for users?
Look & feel: 매 sensory experience.
Implementation: 매 technical feasibility.
Integration: 매 all three.
매 응용
매 startup MVP — Lovable + Supabase 매 day.
매 enterprise feature spike — Claude Artifact for stakeholder.
매 UX research — Figma clickable, usertesting.com.
매 hardware — 3D print + Arduino.
💻 패턴
Claude Artifact prototype (React)
// User: "prototype a Pomodoro timer"
import{useState,useEffect}from'react';exportdefaultfunctionPomodoro() {const[secs,setSecs]=useState(1500);const[run,setRun]=useState(false);useEffect(()=>{if(!run)return;constid=setInterval(()=>setSecs(s=>Math.max(0,s-1)),1000);return()=>clearInterval(id);},[run]);return(<divclassName="text-6xl font-mono">{Math.floor(secs/60)}:{String(secs%60).padStart(2,'0')}<buttononClick={()=>setRun(r=>!r)}>{run?'Pause':'Start'}</button></div>);}
v0.dev prompt-to-UI
Prompt: "dashboard with sidebar nav, 3 KPI cards, line chart of revenue,
recent orders table. shadcn/ui, dark mode."
→ Generates Next.js + Tailwind + shadcn components
→ Edit via natural language follow-ups
Wizard-of-Oz prototype (fake AI)
# Test demand before building real MLdeffake_classifier(text:str)->str:# human in loop via Slackrequests.post(SLACK,json={"text":f"Classify: {text}"})returnwait_for_human_response()# poll DB
언제: 매 prototyping itself 매 LLM-native task — Claude Artifact / v0 매 prompt → working code in seconds. 매 iteration via natural language.
언제 X: 매 production architecture decision — prototype 와 production 매 different concerns. 매 throw away.
❌ 안티패턴
Prototype → production: 매 throwaway code 가 매 prod 로 — 매 tech debt source #1. 매 명시적 rewrite.
Over-fidelity early: 매 high-fi 부터 매 시작 — 매 sunk cost, 매 hard to throw away.
No success criteria: 매 prototype 매 무엇 validate 인지 미정 — 매 nothing learned.
Too few users: 매 1 명 testing — 매 idiosyncratic feedback.
🧪 검증 / 중복
Verified (Houde & Hill — "What Do Prototypes Prototype?" 1997; IDEO methods).
신뢰도 A.
🕓 Changelog
날짜
변경
2026-05-08
Phase 1
2026-05-10
Manual cleanup — full prototyping entry with 2026 generative tools