From MVP to Production: A Launch Playbook That Survives Real Users
An MVP is not a prototype you throw away. What to cut, what to never cut, and how to launch a small product that stands up to real users on day one.

Obsidian Super Admin
3 min readObsidian Wolves Team
The most expensive misunderstanding in early-stage product work is treating “MVP” as a synonym for “prototype.” A prototype answers can this be built? and is meant to be thrown away. An MVP answers will anyone actually use this? — and it answers that question in production, with real users, real data, and real failures. It has to be small. It cannot be flimsy.
Cut features, never foundations
The discipline of a good MVP is knowing what to cut. The lists are surprisingly consistent across products.
Safe to cut
Admin dashboards — a database client covers the first months.
Settings and customization — pick good defaults instead.
Edge-case flows — handle them manually, and log how often they occur.
Native mobile apps — a responsive web app tests the same assumption at a fraction of the cost.
Never cut
Authentication and security basics — a breach permanently destroys a young product’s trust.
Backups and data integrity — you cannot apologize a lost dataset back into existence.
Error tracking and monitoring — without them you are blind at exactly the moment you most need to learn.
Payment correctness — charge someone wrongly once, and the refund is the cheapest part of the damage.
Choose boring technology
An MVP is the worst possible moment for experimental tools. Every unfamiliar technology consumes attention that should be spent on the product. Pick a stack the team already knows, use managed services for everything undifferentiated — database, auth, email, hosting — and spend your limited innovation tokens on the one thing that makes your product different.
The pre-launch checklist
Monitoring and alerts on the critical path: signup, checkout, the core action.
Error tracking wired to a channel someone actually reads.
Rate limiting on public endpoints — abuse tends to arrive earlier than traction.
A tested rollback plan: back to the previous version in minutes, not hours.
A load test of the one flow that would embarrass you if it fell over on launch day.
Launch week
Ship behind feature flags and roll out in stages: a private group first, then a percentage, then everyone. A staged rollout converts a launch-day disaster into a small, fixable incident. Keep the dashboards open, keep the hotfix path warm, and resist shipping anything else that week.
After launch: measure activation, not applause
Signups and page views are applause. The numbers that predict survival are quieter:
Activation — what share of signups reach the product’s core value at least once.
Retention — who comes back in week two, and week four.
Time to value — how long from signup to first success; every minute shaved off compounds.
And talk to users. Five real conversations will reorder your roadmap more reliably than any dashboard.
The bottom line
An MVP earns its name by being minimal in scope and viable in quality. Cut everything that doesn’t test your riskiest assumption; keep everything that lets you learn safely. Launch small, watch closely, and let real usage — not the backlog — decide what gets built next.
Further reading
The Lean Startup — Eric Ries.
“Choose Boring Technology” — Dan McKinley.
Inspired: How to Create Tech Products Customers Love — Marty Cagan.
