Back to all blogs
Apr 2026MVP6 min read

From Missed Calls to a Healthcare MVP in Two Weeks

Every strong product starts with a sharp customer pain.

From Missed Calls to a Healthcare MVP in Two Weeks

In this case, the idea came from a healthcare operator running a small but growing network of clinics. The business was doing well. Doctors were trusted, patients were returning, and demand was increasing. But the operations team had a problem that was quietly becoming expensive.

Patients were not always booking during office hours. They were calling after work, sending WhatsApp messages late at night, asking for follow-ups, rescheduling appointments, and checking prescription instructions. The front desk team tried to keep up, but the system depended on manual callbacks, sticky notes, shared spreadsheets, and the memory of people who were already overloaded.

The customer's first question to us was simple:

"Can we build an AI assistant that handles patient requests without making the experience feel robotic?"

That one question became the starting point for a product idea: an AI-powered care operations MVP that could capture patient intent, schedule appointments, follow up on unresolved requests, and hand off sensitive cases to the right human team member.

Not a chatbot demoA real workflow product

The important part is how we got there in two weeks.

At AGSFT Digital, we do not rely on one tool or one generic AI builder. We use a structured AI-native delivery system where different tools support different phases: ChatGPT and Gemini for discovery synthesis, Figma AI and Claude Design for interface exploration, Linear AI for sprint planning, Codex and Claude Code for engineering acceleration, v0 and Lovable for rapid UI prototypes, Replit for isolated experiments, and OpenClaw-style multi-agent workflows for parallel implementation and review.

AI speeds up the work. Experienced engineers keep the product grounded. This is not a futuristic factory where software appears by magic. It is a practical delivery method using tools available today, stitched together by a team that understands product, architecture, and execution.

The Customer Idea

The customer did not come to us with a technical specification. They came with symptoms:

Too many missed calls during peak hours.
Patients repeating the same information across phone, WhatsApp, and reception.
Staff spending time on repetitive scheduling instead of patient care.
No reliable view of unresolved patient requests
Follow-ups getting delayed because every clinic had its own informal process.
The product direction

"Build a care operations assistant that captures patient requests from multiple channels, turns them into structured tasks, executes safe workflows, and gives clinic staff full visibility."

The opportunity was clear. If we could centralize patient requests, understand intent, automate low-risk actions, and preserve human control where needed, the clinic network could improve service quality without immediately expanding the operations team.

1

Week 1: Capturing the Requirement With AI-Assisted Clarity

The first phase was not about writing code. It was about removing ambiguity.

We started with a discovery workshop involving the clinic owner, front desk staff, an operations manager, and one doctor. We used the session to map the real workflow instead of the imagined workflow.

The tools were chosen for speed and clarity:

FigJam

For mapping patient journeys and operational handoffs.

ChatGPT and Gemini

For summarizing discovery notes, extracting repeated pain points, and converting conversations into user stories.

Notion

For capturing decisions, assumptions, and open questions.

Figma AI and Claude Design

For early screen flows, staff-facing interface concepts, and alternate interaction patterns.

Google Sheets

For reviewing real appointment patterns and request types.

Linear AI

For turning the agreed MVP scope into epics, tasks, priorities, and acceptance criteria.

Call and message samples

To identify the most common patient intents.

Within the first few hours, we found that the product did not need to "answer everything." It needed to do a few things extremely well:

Intent Triage

Identify whether the patient wanted to book, reschedule, cancel, ask a billing question, request a prescription clarification, or speak to staff.

Minimal Intake

Collect only the minimum information needed for the next step.

Rule Validation

Check doctor availability and clinic rules before confirming appointments.

Human Escalation

Create a task when the request needed human review.

Decision Audit

Keep a complete audit trail of what the assistant understood and what action it took.

This changed the MVP scope completely. Instead of building a generic AI receptionist, we defined a controlled care workflow engine with an AI interface.

That distinction mattered.

By the end of the first discovery phase, the customer had something much more valuable than a vague idea. They had a sharp MVP scope, clickable screens, a prioritized backlog, and a technical delivery plan.

Architecting for Trust, Not Just Speed

Healthcare workflows require more than a clever prompt. The system needed to be safe, observable, and easy for staff to override.

We designed the architecture around five layers:

01

Channel layer

WhatsApp, web chat, and voice intake were treated as inputs into the same request pipeline. This prevented each channel from becoming a separate product.

02

Intent and context layer

An LLM-based intent classifier identified the patient's goal, extracted relevant details, and checked whether the request was safe for automation.

03

Workflow layer

Appointment booking, rescheduling, cancellation, task creation, and escalation were implemented as explicit workflows, not free-form AI actions.

04

Human review layer

Staff could see every open request, review the assistant's summary, approve recommended actions, and take over when needed.

05

Analytics layer

The clinic owner could see missed requests, response times, popular time slots, unresolved cases, and automation rates.

Production Infrastructure Stack

React / Next.js
Node.js APIs
PostgreSQL
Redis
LLM APIs
Twilio / WhatsApp
PostHog
Sentry
GitHub Actions

"The important decision was to keep AI inside boundaries. The assistant could understand and recommend, but business-critical actions were routed through deterministic workflows with validation, permissions, and audit logs. That is the difference between an impressive prototype and a product a business can actually depend on."

2

Week 2: Development With Multiple AI Tools Working in Parallel

Once the MVP scope was clear, we broke the work into parallel tracks.

The design team built clickable staff workflows in Figma: request inbox, appointment timeline, patient conversation view, escalation queue, and analytics dashboard. For early UI exploration, we used v0 and Lovable to quickly compare layout directions before engineers converted the approved direction into the product codebase.

The engineering team built the backend around real clinic rules:

Doctor availability by location.
Appointment duration by service type.
Buffer times between consultations.
Repeat patient vs new patient logic.
Manual approval rules for sensitive cases.
Reminder and no-show follow-up workflows.

The AI-native delivery model

Codex

Helped generate and refactor production code inside the actual repository.

Claude Code

Helped implement backend workflows, review edge cases, and improve test coverage.

ChatGPT

Helped create realistic patient-message test scenarios and acceptance criteria.

Gemini

Helped cross-check product flows, edge cases, and documentation drafts.

Replit

Used for small isolated experiments before merging ideas into the main build.

Linear AI

Kept the sprint backlog clean as decisions changed during delivery.

OpenClaw-style multi-agent workflows

helped split implementation, review, testing, and documentation into parallel tracks.

We did not ask one AI tool to build the whole product. We used the right tool at the right phase, with engineers reviewing the output before it moved forward.

AI was introduced carefully. We tested the assistant against realistic patient messages:

Patient Simulation

[0]"Can I come tomorrow evening?"
[1]"I need to move my appointment with Dr. Meera."
[2]"My child has fever again. Should I come in?"
[3]"I lost the prescription, can you resend it?"
[4]"How much is the scan?"

For each message, we evaluated:

Did the assistant identify the intent correctly?
Did it ask for the right missing information?
Did it avoid giving medical advice?
Did it escalate when the request was clinical or uncertain?
Did the staff dashboard show a clear summary?

We used Playwright for key user-flow testing, API tests for workflow validation, and structured AI evaluation sets to check that the assistant behaved consistently across common patient scenarios. AI helped generate test variations quickly, but final validation stayed with the engineering team.

"The goal was not to make the assistant sound smart. The goal was to make the clinic more responsive, more organized, and more reliable."

The Two-Week Delivery Rhythm

The customer saw progress every few days, not only at the end.

Days 1-2

Discovery & Scope Freeze

Workshop, workflow mapping, AI-assisted requirement synthesis, and MVP scope freeze.

Days 3-4

Visualization & Logic

Figma flows, v0 and Lovable UI exploration, architecture decisions, and sprint backlog creation in Linear.

Days 5-9

AI-Native Build

Parallel development using Codex, Claude Code, and engineer-led implementation across frontend, backend, workflows, and integrations.

Days 10-11

Hardening & Review

Testing, AI behavior evaluation, Playwright flows, bug fixing, and customer walkthroughs.

Days 12-14

Launch & Handover

Production hardening, deployment, monitoring setup, documentation, and handover.

This rhythm is why "two weeks" is not just a marketing line. The speed comes from compressing the feedback loop across product, design, architecture, development, and QA

Delivery: What the MVP Included

The delivered MVP included:

A patient-facing WhatsApp intake flow.
A web-based request inbox for clinic staff.
Appointment booking and rescheduling workflows.
AI-generated conversation summaries.
Escalation rules for clinical and sensitive requests.
Reminder workflows for pending patient responses.
Admin configuration for doctors, services, locations, and clinic timings.
Analytics for request volume, response time, and automation coverage.
Deployment pipeline, monitoring, and production handover documentation.

The product was not overloaded with features. It focused on the operational moments that created the most friction.

That is what made it usable from day one.

The Business Impact

The most valuable outcome was not "we added AI."

The real outcome was operational clarity.

The clinic team could now see every patient request in one place. Staff were no longer switching between phones, spreadsheets, and memory. The owner could finally measure demand outside business hours. Doctors were protected from unnecessary interruptions. Patients got faster responses for routine requests, while sensitive cases still went to humans.

For a growing healthcare business, that foundation matters. It creates consistency before scaling to more locations.

What This Story Says About AGSFT Digital

At AGSFT Digital, we do not treat AI as a shortcut around product thinking. We use it to accelerate the right product process.

In this project story, the value came from combining:

Customer Discovery.
AI-assisted requirement capture.
Figma AI, Claude Design, v0, and Lovable for fast product visualization.
Linear AI for sprint planning and execution visibility.
Codex, Claude Code, ChatGPT, Gemini, Replit, and OpenClaw-style multi-agent workflows for accelerated engineering.
Practical architecture and human review.
Production-grade delivery.

The result was not just an app. It was a working operating system for a real business problem.

"That is the kind of MVP we believe in: focused, usable, measurable, and built on a foundation that can grow."

Closing Thought

Many companies are asking, "How can we use AI?"

The Better Question

Where is the business losing time, trust, or visibility today, and how can AI help fix that without creating new risk?

That is where strong product ideas come from. And that is where AGSFT Digital helps customers move from idea to MVP in two weeks with speed, clarity, and confidence.