최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 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);}