Use Cases (अपडेट: 18/7/2026)

क्लिनिक की बुकिंग पूछताछ Claude Code से साफ करें: फोन, फॉर्म और LINE की भूमिका

क्लिनिक के लिए एक workflow, जिससे नए मरीज सही booking path चुनें और reception पर दोहराए सवाल घटें।

क्लिनिक की बुकिंग पूछताछ Claude Code से साफ करें: फोन, फॉर्म और LINE की भूमिका

कई क्लिनिक की booking page पर phone number, web form और LINE button एक साथ रखे होते हैं। अंदर की team को यह मददगार लगता है, लेकिन नया patient अक्सर रुक जाता है: symptoms हैं तो phone करें, documents हैं तो form भरें, या appointment change के लिए LINE भेजें?

Claude Code को medical decision नहीं देना चाहिए। वह diagnosis, urgency, treatment eligibility या insurance decision तय करने का tool नहीं है। लेकिन वह booking flow को साफ कर सकता है: कौन सा channel किस काम के लिए है, page पर कौन से सवाल लिखने हैं, form में कौन से fields चाहिए, और publish से पहले क्या check करना है।

यह article छोटे clinic के लिए है, जहां goal है patient की confusion घटाना और reception पर दोहराए गए सवाल कम करना।

मुख्य बातें

  • Booking page पर एक main CTA चाहिए, तीन बराबर buttons नहीं।
  • Claude Code reception copy, FAQ, form fields और publish checks बना सकता है। Medical judgment humans के पास रहता है।
  • Phone, form और LINE की अलग role होनी चाहिए।
  • शुरुआत एक department, एक page और एक metric से करें।
  • Implementation consultation के लिए current URL और reception के top 10 questions लेकर आएं।

Booking page कहां अटकती है

Problem tools की कमी नहीं होती। Problem यह होती है कि channels patient intent के हिसाब से अलग नहीं होते।

Phone same-day visit, late arrival और direct confirmation वाले cases के लिए ठीक है। Form first visit, referral papers, test reports और structured details के लिए अच्छा है। LINE appointment change और reminder के लिए ठीक है, लेकिन अगर symptoms questions भी वहीं आने लगें तो reception inbox messy हो जाता है।

पहले यह table बनाएं।

Patient situationDoubtBest path
First visit with symptomsक्या लाना है, कैसे बताना हैForm
आज आना चाहता हैclinic ले पाएगा या नहींPhone
Time changeकब तक change कर सकता हैLINE या form
Referral या report हैपहले भेज सकता है या नहींForm

यह table Claude Code को real context देती है। Prompt “page अच्छा करो” नहीं होना चाहिए। Prompt होना चाहिए कि reception questions को booking flow में बदलो।

Claude Code क्या करे और humans क्या तय करें

Claude Code editorial और operational काम करे। वह current page पढ़ सकता है, phone/form/LINE role table बना सकता है, FAQ छोटा कर सकता है, form fields suggest कर सकता है और mobile checklist बना सकता है। वह छोटा script भी बना सकता है जो required fields check करे।

Humans medical और business promise तय करें। कौन सा symptom phone पर जाना चाहिए, referral चाहिए या नहीं, urgency क्या है, minor patient के लिए क्या rule है, ये model से तय नहीं करवाने चाहिए।

Scope तय करते समय official Claude Code settings देखें। Planning, editing और verification के लिए common workflows मदद करते हैं। इस site पर safe autonomy levels भी बताता है कि draft, check, report और approval अलग क्यों होने चाहिए।

Booking flow बनाना

सबसे पहले reception पर आने वाले top 10 questions लिखें। Design से शुरू न करें। Real friction से शुरू करें।

फिर हर question को classify करें।

QuestionPageFormPhone
First visit में क्या लाना हैyesnono
आज visit possible हैyesnoyes
symptoms कैसे लिखेंnoyesurgent हो तो yes
insurance card भूल गयाyesnono
appointment change deadlineyesyesno

यह table Claude Code को page sections, form labels और FAQ order बनाने में मदद देती है।

3 Use case

Use case 1: first-visit form में missing fields कम करना First visit form में patient type, preferred date, symptom summary, phone और consent छूट सकते हैं। Claude Code current fields को minimum list से compare करता है और missing items दिखाता है। Medical wording clinic check करता है।

Use case 2: phone-needed cases पहले दिखाना Patient को पता नहीं होता कि form reply wait करे या phone करे। Page पर same-day visit, late arrival और clinic-defined urgent cases के लिए phone path दिखाया जा सकता है।

Use case 3: LINE को सब कुछ inbox न बनने देना LINE changes और reminders के लिए अच्छा है। First visit details form में जाएं और urgent cases phone पर जाएं। Claude Code auto-reply copy और link text बना सकता है।

Copy-paste prompt

You are editing a clinic booking flow.
Do not make medical judgments. Work only on reception guidance, form fields, FAQ, and pre-publish checks.

Context:
- Department:
- Current booking page:
- Booking paths: phone / form / LINE
- Ten common reception questions:

Output:
1. Role table for phone, form, and LINE
2. Opening copy for first-time patients
3. Required first-visit form fields
4. FAQ items that could reduce repeated calls
5. Mobile launch checklist

Constraints:
- Do not decide diagnosis, treatment eligibility, or urgency
- Do not output patient names, phone numbers, insurance IDs, or private notes
- Use one primary CTA
- Keep sentences short enough for reception staff to read aloud

चलने वाला check code

const requiredFields = [
  "patientType",
  "preferredDate",
  "preferredTime",
  "symptomSummary",
  "phone",
  "consent",
];

const clinicFormFields = [
  "patientType",
  "preferredDate",
  "preferredTime",
  "symptomSummary",
  "email",
  "phone",
];

const missing = requiredFields.filter((field) => !clinicFormFields.includes(field));

if (missing.length > 0) {
  console.error("Missing fields:", missing.join(", "));
  process.exit(1);
}

console.log("Reservation form fields are ready for review.");

यह script patient data process नहीं करता। यह सिर्फ field names check करता है।

Pitfall: आम गलतियां

गलती 1: हर channel main दिखता है अगर phone, form, LINE और email एक जैसे दिखते हैं, patient को खुद workflow बनाना पड़ता है। एक main CTA रखें।

गलती 2: AI medical promise लिखता है Claude Code से symptom treatment का answer न लिखवाएं। उससे reception text साफ करवाएं और medical lines को human review में भेजें।

गलती 3: form बहुत लंबा है Booking से पहले जरूरी fields और visit के समय पूछे जाने वाले fields अलग करें।

गलती 4: mobile check नहीं किया कई patients smartphone से book करते हैं। Phone link, LINE button, field width और text spacing देखें।

ROI कैसे देखें

पहले महीने में तीन चीजें देखें: page से form submit rate, reception repeated questions, और form के बाद follow-up calls। अगर calls 20 से 12 per week हो जाएं, page real काम कर रही है।

AI workflow में patient names या phone numbers न डालें। Date, question category, channel और count पर्याप्त हैं।

Consultation path

Real page पर लागू करने के लिए training and implementation support से शुरू करें। Current URL, channels और top questions लाएं। Boundary सीखनी हो तो permission decision logs पढ़ें। Team workflow में Claude Code hooks publish से पहले checks रोकने में मदद कर सकते हैं।

Verified result

इस article में clinic booking flow के लिए role table, Claude Code prompt और field check script बनाया गया। Code patient data नहीं छूता, सिर्फ field names check करता है।

सबसे मजबूत सुधार नया button जोड़ना नहीं था। Stronger change यह था कि roles अलग हुए: first visit form, urgent phone, changes LINE। इससे page की main CTA साफ होती है और next improvement measure करना आसान होता है।

संबंधित लेख

डेंटल क्लिनिक के लिए Claude Code: अपॉइंटमेंट रिमाइंडर, प्रश्नावली और मरीज़ों को समझाने वाले मैसेज का ड्राफ़्ट AI से बनाने का तरीका
Use Cases

डेंटल क्लिनिक के लिए Claude Code: अपॉइंटमेंट रिमाइंडर, प्रश्नावली और मरीज़ों को समझाने वाले मैसेज का ड्राफ़्ट AI से बनाने का तरीका

डेंटल क्लिनिक के लिए Claude Code से रिमाइंडर, प्रश्नावली और मरीज़ों को समझाने वाले मैसेज का ड्राफ़्ट बनाने का तरीका, प्रॉम्प्ट के साथ।

पशु अस्पताल के लिए Claude Code: मालिक को समझाने वाले पत्र, अपॉइंटमेंट और सर्जरी के बाद की देखभाल तेज़ करें
Use Cases

पशु अस्पताल के लिए Claude Code: मालिक को समझाने वाले पत्र, अपॉइंटमेंट और सर्जरी के बाद की देखभाल तेज़ करें

पशु अस्पताल के लिए: मालिक को पत्र, अपॉइंटमेंट कन्फर्मेशन और सर्जरी के बाद की गाइड Claude Code से तैयार करने का तरीका और prompt।

#claude-code #clinic #reservation #healthcare #workflow
मुफ़्त

मुफ़्त PDF: Claude Code cheatsheet

Email डालें और commands, review habits तथा safe workflow वाली एक-page PDF पाएँ.

हम आपका data सुरक्षित रखते हैं और spam नहीं भेजते.

Masa

लेखक के बारे में

Masa

Claude Code workflow और team adoption पर काम करने वाला engineer.