"매 throw-away artifact 의 fast 의 build — 매 question 의 answer". 매 production 의 X — 매 specific assumption (UX, API shape, feasibility) 의 validate 의 minimum 의 build. 2026 의 LLM-assisted scaffolding (v0, Bolt, Cursor Composer) + serverless (Vercel, Fly Machines) 의 cycle 의 hours, 매 not weeks.
매 핵심
매 prototype types
Paper/wireframe: 매 UX flow — Figma, Excalidraw.
Clickable mockup: 매 user testing — Figma prototype mode.
Vertical slice: 매 single feature end-to-end (UI → API → DB).
Spike: 매 technical feasibility (e.g., "vector DB 의 latency 가 OK?").
Wizard-of-Oz: 매 backend 의 human (Mechanical Turk) — 매 demand 의 validate.
매 5 rules
Time-box: 매 1 day / 1 week 의 hard limit.
One question per prototype: 매 scope 의 narrow.
Throw it away: 매 reuse 의 의 prod 의 X — 매 lessons 의 만 carry.
Hardcode shamelessly: 매 fake data, mock auth, no tests.
Demo, not deploy: 매 stakeholder 의 see — production 의 ≠.
매 응용
New product idea 의 user feedback 의 collect.
Tech-stack bake-off (Postgres vs ScyllaDB latency).
UX pattern 의 A/B mockup.
LLM agent flow 의 feasibility (tool-use chain).
💻 패턴
LLM-scaffolded Next.js prototype
# 매 v0.dev / Bolt 의 starter — 매 minutes 의 ship
npx create-next-app@latest proto --ts --tailwind --app
cd proto && npx shadcn@latest init -d
npx shadcn@latest add button card form
# 매 Cursor Composer / Claude Code 의 "build a $FEATURE landing"
// 매 user request → Slack channel — 매 human responder
asyncfunctionhandleQuery(q: string){awaitfetch(SLACK_WEBHOOK,{method:'POST',body: JSON.stringify({text:`[WoZ] ${q}`}),});// 매 polling for human answer in mock store
returnawaitpollForAnswer(q);}