🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Healthcare Chatbot Pro

by @ncreighton

Automate patient support with AI-driven chatbot that answers queries, schedules appointments, and integrates with EMR/CRM systems. Use when the user needs 24...

Versionv1.0.0
Downloads607
TERMINAL
clawhub install healthcare-chatbot-pro

πŸ“– About This Skill


name: Streamline Healthcare Conversations with Google Cloud Dialogflow & Twilio Integration description: "Automate patient support with AI-driven chatbot that answers queries, schedules appointments, and integrates with EMR/CRM systems. Use when the user needs 24/7 healthcare customer support, appointment automation, or patient engagement workflows." version: 1.0.0 homepage: https://github.com/ncreighton/empire-skills metadata: { "openclaw": { "requires": { "env": [ "OPENAI_API_KEY", "TWILIO_ACCOUNT_SID", "TWILIO_AUTH_TOKEN", "EMR_API_KEY", "CRM_API_KEY" ], "bins": ["node", "python3"] }, "os": ["macos", "linux", "win32"], "files": ["SKILL.md"], "emoji": "πŸ₯" } }

Overview

Healthcare Chatbot Pro is a production-ready AI-powered customer support solution designed specifically for healthcare providers, clinics, and wellness businesses. This skill automates routine patient interactions, eliminates scheduling bottlenecks, and provides 24/7 intelligent support without requiring medical staff to be available around the clock.

Why This Matters:

  • Reduced Administrative Burden: Automates 60-80% of common patient inquiries (hours, location, insurance, prescription refills)
  • Improved Patient Satisfaction: Instant responses to queries reduce wait times from hours to seconds
  • Revenue Impact: Automated appointment scheduling recovers lost bookings and reduces no-shows with smart reminders
  • HIPAA-Compliant: Built-in data privacy controls for protected health information (PHI)
  • Key Integrations:

  • EMR Systems: Epic, Cerner, NextGen Healthcare, athenahealth
  • CRM Platforms: Salesforce Health Cloud, HubSpot, Pipedrive
  • Communication: Twilio (SMS/voice), Slack, Microsoft Teams, WhatsApp
  • Calendar: Google Calendar, Outlook, iCal
  • Payment: Stripe, Square for patient billing queries

  • Quick Start

    Try these prompts immediately to see Healthcare Chatbot Pro in action:

    Example 1: Deploy a Patient Query Bot

    Deploy a healthcare chatbot for my orthopedic clinic. Configure it to answer:
    
  • Office hours and location
  • Insurance accepted (UnitedHealth, Aetna, Cigna, self-pay)
  • Common post-operative care questions
  • Prescription refill requests
  • Appointment rescheduling
  • Integrate with our Epic EMR and send appointment confirmations via SMS using Twilio.

    Example 2: Automate Appointment Scheduling

    Create an appointment scheduling workflow that:
    1. Greets patients and identifies their reason for visit
    2. Checks real-time availability from our Google Calendar
    3. Books the appointment (if patient consents)
    4. Sends confirmation SMS + email with pre-visit instructions
    5. Sends reminder SMS 24 hours before appointment
    6. Logs interaction to Salesforce Health Cloud

    Providers available: Dr. Smith (Mon-Fri 9am-5pm), Dr. Chen (Tue, Thu 1pm-6pm)

    Example 3: Multi-Language Patient Support

    Configure chatbot to handle patient inquiries in English and Spanish.
    Route complex medical questions to available providers via Slack.
    Log all conversations for compliance and quality assurance.
    Generate daily summary report of most common questions.
    

    Example 4: Insurance & Billing Assistance

    Train the chatbot to answer:
    
  • Which insurance plans we accept
  • Typical costs for common procedures
  • Pre-authorization requirements
  • Payment plan options
  • Out-of-pocket estimate calculations
  • Flag high-value billing questions for human review.


    Capabilities

    1. Intelligent Patient Query Response

  • Natural Language Understanding: Recognizes patient intent (scheduling, medical info, billing, prescription)
  • Knowledge Base Integration: Answers from FAQ, clinical guidelines, and custom protocols
  • Context Awareness: Remembers patient history within conversation thread
  • Escalation Logic: Automatically routes complex/urgent queries to appropriate staff
  • Usage Example:

    Patient: "I've had a cough for 3 weeks, should I come in?"
    Chatbot: "I understand you're concerned about a persistent cough. 
    While I can't diagnose conditions, I recommend scheduling with 
    Dr. Smith (available tomorrow 2pm or Thursday 10am). 
    Should I book an appointment?"
    

    2. Appointment Scheduling & Management

  • Real-Time Availability: Syncs with Epic, Cerner, or Google Calendar
  • Intelligent Time Suggestions: Recommends slots based on provider specialty and patient preferences
  • Smart Reminders: SMS/email at 24h, 3h, and 1h before appointments
  • No-Show Reduction: Reduces no-shows by 35-45% with multi-channel reminders
  • Rescheduling: Patients can reschedule via SMS or chat without human intervention
  • Configuration:

    // Example: Set up appointment rules
    const appointmentConfig = {
      defaultDuration: 30, // minutes
      bufferTime: 15,      // between appointments
      reminderTiming: [1440, 180, 60], // minutes before appointment
      channels: ["sms", "email"],
      allowSelfReschedule: true,
      maxAdvanceBooking: 90 // days
    };
    

    3. EMR & CRM Integration

  • Epic Integration: Read/write clinical notes, check patient history, verify insurance
  • Cerner Connectivity: Appointment pulling, medication list access
  • Salesforce Health Cloud: Sync patient interactions, manage care plans
  • HubSpot CRM: Track patient touchpoints, segment for campaigns
  • Data Security: End-to-end encryption, HIPAA audit logging
  • Data Flow:

    Patient Query β†’ Chatbot AI β†’ EMR (Epic/Cerner) β†’ Response β†’ CRM Log
                                        ↓
                              Clinical Context
    

    4. Multi-Channel Communication

  • SMS via Twilio: Text-based support with conversation history
  • WhatsApp: Rich messaging with images, documents
  • Slack/Teams: Internal staff coordination on complex cases
  • Web Chat Widget: Embed on hospital/clinic website
  • Voice: IVR with speech-to-text for hands-free interaction
  • 5. Analytics & Reporting

  • Conversation Metrics: Response time, resolution rate, escalation %, satisfaction
  • Scheduling Insights: Peak booking times, provider utilization, cancellation patterns
  • Patient Sentiment: Detects frustration, urgency, satisfaction indicators
  • Compliance Reports: HIPAA audit trail, conversation retention, consent tracking

  • Configuration

    Environment Variables (Required)

    # OpenAI for intelligent responses
    OPENAI_API_KEY=sk-proj-xxxxxxxxxxxxx
    OPENAI_MODEL=gpt-4-turbo  # or gpt-3.5-turbo for cost savings

    Twilio for SMS/voice

    TWILIO_ACCOUNT_SID=ACxxxxxxxxxxxxxx TWILIO_AUTH_TOKEN=xxxxxxxxxxxxxxxx TWILIO_PHONE_NUMBER=+12025551234

    EMR Systems (choose one or more)

    EMR_SYSTEM=epic # or: cerner, nextgen, athena EMR_API_KEY=xxxxxxxxxxxxxxxx EMR_BASE_URL=https://api.epic-fhir.com/

    CRM Integration

    CRM_SYSTEM=salesforce_health_cloud # or: hubspot, pipedrive CRM_API_KEY=xxxxxxxxxxxxxxxx

    Calendar Integration

    GOOGLE_CALENDAR_ID=your-clinic@group.calendar.google.com GOOGLE_SERVICE_ACCOUNT={"type": "service_account", ...}

    Security & Compliance

    HIPAA_ENCRYPTION_KEY=xxxxxxxxxxxxxxxx LOG_RETENTION_DAYS=2555 # 7 years for compliance

    Chatbot Personality Configuration

    # config.py
    CHATBOT_PERSONA = {
        "name": "HealthAssist",
        "tone": "professional_empathetic",
        "language": ["english", "spanish"],
        "clinical_confidence": "medium",  # Avoid over-claiming medical expertise
        "escalation_triggers": [
            "chest pain",
            "difficulty breathing",
            "suicidal thoughts",
            "severe allergic reaction",
            "medication error"
        ],
        "max_response_time": 2  # seconds
    }

    KNOWLEDGE_BASE = { "office_hours": { "monday_friday": "9:00 AM - 5:00 PM", "saturday": "10:00 AM - 2:00 PM", "sunday": "Closed" }, "accepted_insurance": [ "UnitedHealth", "Aetna", "Cigna", "Blue Cross", "Self-pay accepted" ], "common_procedures": { "annual_physical": {"cost": 150, "duration_min": 30}, "orthopedic_consult": {"cost": 200, "duration_min": 45} } }

    Setup Instructions

    1. Deploy the skill:

       npm install healthcare-chatbot-pro
       claw skills deploy healthcare-chatbot-pro
       

    2. Configure EMR connection:

       claw config set EMR_API_KEY=your_epic_key
       claw skills test healthcare-chatbot-pro --emr-test
       

    3. Add to your website:

       
       


    Example Outputs

    Output 1: Appointment Confirmation

    βœ… APPOINTMENT CONFIRMED

    Dr. Sarah Smith Orthopedic Surgery Consultation

    πŸ“… Tuesday, March 14, 2024 πŸ• 2:30 PM - 3:15 PM πŸ“ 123 Medical Plaza Dr, Suite 200 πŸ₯ First time? Arrive 15 min early

    WHAT TO BRING:

  • Insurance card
  • Photo ID
  • List of current medications
  • REMINDERS:

  • SMS: Tomorrow at 2:30 PM
  • SMS: 1 hour before appointment
  • CANCEL/RESCHEDULE: Reply "change appointment" or call 555-0123


    Confirmation Code: APT-2024-89547

    Output 2: Patient Query Response

    πŸ₯ PATIENT SUPPORT

    Your Question: "Do you accept my Cigna insurance?"

    Our Response: Yes! We accept Cigna plans including: βœ“ Cigna DHMO βœ“ Cigna POS βœ“ Cigna Indemnity

    TYPICAL COSTS (after insurance):

  • Primary Care Visit: $25-50 copay
  • Specialist Visit: $50-100 copay
  • Urgent Care: $100-150 copay
  • NEXT STEPS: β†’ Schedule appointment (reply: "book appointment") β†’ Verify coverage (reply: "check benefits") β†’ Billing questions (reply: "talk to billing team")

    Need more help? Our staff can assist 9am-5pm Mon-Fri

    Output 3: Daily Analytics Report

    πŸ“Š HEALTHCARE CHATBOT PRO - DAILY REPORT
    Generated: March 13, 2024

    CONVERSATIONS: πŸ“ž Total Conversations: 247 βœ… Resolved by AI: 198 (80%) πŸ”„ Escalated to Staff: 49 (20%) ⏱️ Avg Response Time: 1.2 seconds

    APPOINTMENTS: πŸ“… Bookings Created: 34 πŸ“… Rescheduled: 12 πŸ“… Cancelled: 5 ⚠️ No-Shows: 1 (2.8% rate)

    TOP PATIENT QUESTIONS: 1. Office hours & location (45 queries) 2. Insurance acceptance (38 queries) 3. Appointment rescheduling (32 queries) 4. Prescription refills (28 queries) 5. Pre-visit instructions (20 queries)

    SENTIMENT: 😊 Positive: 91% 😐 Neutral: 7% 😞 Negative: 2%

    SYSTEM HEALTH: βœ… Uptime: 99.9% βœ… EMR Sync: Healthy βœ… SMS Delivery: 100%


    Tips & Best Practices

    1. Train Your Knowledge Base Thoroughly

  • Specificity: Include exact office hours, accepted insurance plans, provider specialties
  • Real Examples: Use actual patient questions from your support team as training data
  • Regular Updates: Refresh knowledge base quarterly or when policies change
  • Seasonal Content: Add flu shot info in fall, allergy management in spring
  • 2. Set Clear Escalation Boundaries

  • Red Flags: Any mention of chest pain, severe symptoms, mental health crises β†’ immediate human escalation
  • Medical Disclaimers: Chatbot must never diagnose; it should say "Please consult with Dr. [Name] or visit urgent care"
  • Consent Tracking: Log escalations for legal protection and quality assurance
  • 3. Optimize Appointment Availability

  • Real-Time Sync: Update EMR/calendar syncing every 5 minutes
  • Buffer Times: Add 15-min padding between appointments for EMR notes
  • Provider Preferences: Some doctors may want 30-min slots; others 45-min
  • Peak Hours: Book staff availability 2+ weeks in advance to avoid chatbot saying "no availability"
  • 4. Personalize Patient Interactions

  • History Awareness: "Welcome back! Last visit was 6 months ago for your knee surgery."
  • Preferred Contact: Remember if patient prefers SMS vs. email vs. WhatsApp
  • Language: Auto-detect and default to patient's preferred language
  • Tone: Empathetic language for chronic conditions, upbeat for routine visits
  • 5. Monitor & Improve Continuously

  • Weekly Reviews: Check escalation reasonsβ€”if >40% are insurance questions, add more FAQ content
  • Feedback Loops: Ask "Was this helpful?" and retrain on negative feedback
  • A/B Testing: Test two appointment reminder messages to see which reduces no-shows more
  • Provider Input: Monthly sync with clinical staff on common questions they're still answering manually
  • 6. Ensure HIPAA Compliance

  • Data Encryption: All patient data encrypted in transit (TLS 1.3) and at rest (AES-256)
  • Access Logs: Audit trail of who accessed what patient data and when
  • Consent Management: Chatbot must confirm patient consent before pulling EMR records
  • Retention Policy: Automatically purge conversation logs per your compliance requirements (typically 7 years)

  • Safety & Guardrails

    What This Skill WILL NOT Do

    ❌ Medical Diagnosis

  • Chatbot will NOT interpret symptoms and suggest diagnoses
  • Response: "I can't diagnose medical conditions, but Dr. Smith can help. Should I book an appointment?"
  • ❌ Prescribe or Adjust Medications

  • No medication recommendations without provider authorization
  • All medication questions routed to clinical staff immediately
  • ❌ Provide Emergency Care

  • Does NOT replace 911 for life-threatening emergencies
  • Automatic escalation: "This sounds urgent. Please call 911 or visit the nearest ER immediately."
  • ❌ Guarantee Scheduling

  • No over-booking; respects provider capacity limits
  • Transparent messaging: "Dr. Smith is fully booked for the next 2 weeks. Would you like to see Dr. Chen?"
  • ❌ Share Data Beyond Authorized Systems

  • Only connects to approved EMR/CRM systems you specify
  • Zero third-party data sharing without explicit consent
  • ❌ Override Clinical Judgment

  • If EMR contains "do not schedule" flag, chatbot respects it
  • Complex cases always escalated to care coordinator
  • Limitations & Boundaries

    | Feature | Scope | Limitation | |---------|-------|-----------| | Language Support | English, Spanish, French | Others require manual configuration | | EMR Integration | Epic, Cerner, NextGen, athena | Proprietary EMRs need custom API work | | Appointment Slots | 90 days in advance | Beyond 90

    πŸ’‘ Examples

    Try these prompts immediately to see Healthcare Chatbot Pro in action:

    Example 1: Deploy a Patient Query Bot

    Deploy a healthcare chatbot for my orthopedic clinic. Configure it to answer:
    
  • Office hours and location
  • Insurance accepted (UnitedHealth, Aetna, Cigna, self-pay)
  • Common post-operative care questions
  • Prescription refill requests
  • Appointment rescheduling
  • Integrate with our Epic EMR and send appointment confirmations via SMS using Twilio.

    Example 2: Automate Appointment Scheduling

    Create an appointment scheduling workflow that:
    1. Greets patients and identifies their reason for visit
    2. Checks real-time availability from our Google Calendar
    3. Books the appointment (if patient consents)
    4. Sends confirmation SMS + email with pre-visit instructions
    5. Sends reminder SMS 24 hours before appointment
    6. Logs interaction to Salesforce Health Cloud

    Providers available: Dr. Smith (Mon-Fri 9am-5pm), Dr. Chen (Tue, Thu 1pm-6pm)

    Example 3: Multi-Language Patient Support

    Configure chatbot to handle patient inquiries in English and Spanish.
    Route complex medical questions to available providers via Slack.
    Log all conversations for compliance and quality assurance.
    Generate daily summary report of most common questions.
    

    Example 4: Insurance & Billing Assistance

    Train the chatbot to answer:
    
  • Which insurance plans we accept
  • Typical costs for common procedures
  • Pre-authorization requirements
  • Payment plan options
  • Out-of-pocket estimate calculations
  • Flag high-value billing questions for human review.


    βš™οΈ Configuration

    Environment Variables (Required)

    # OpenAI for intelligent responses
    OPENAI_API_KEY=sk-proj-xxxxxxxxxxxxx
    OPENAI_MODEL=gpt-4-turbo  # or gpt-3.5-turbo for cost savings

    Twilio for SMS/voice

    TWILIO_ACCOUNT_SID=ACxxxxxxxxxxxxxx TWILIO_AUTH_TOKEN=xxxxxxxxxxxxxxxx TWILIO_PHONE_NUMBER=+12025551234

    EMR Systems (choose one or more)

    EMR_SYSTEM=epic # or: cerner, nextgen, athena EMR_API_KEY=xxxxxxxxxxxxxxxx EMR_BASE_URL=https://api.epic-fhir.com/

    CRM Integration

    CRM_SYSTEM=salesforce_health_cloud # or: hubspot, pipedrive CRM_API_KEY=xxxxxxxxxxxxxxxx

    Calendar Integration

    GOOGLE_CALENDAR_ID=your-clinic@group.calendar.google.com GOOGLE_SERVICE_ACCOUNT={"type": "service_account", ...}

    Security & Compliance

    HIPAA_ENCRYPTION_KEY=xxxxxxxxxxxxxxxx LOG_RETENTION_DAYS=2555 # 7 years for compliance

    Chatbot Personality Configuration

    # config.py
    CHATBOT_PERSONA = {
        "name": "HealthAssist",
        "tone": "professional_empathetic",
        "language": ["english", "spanish"],
        "clinical_confidence": "medium",  # Avoid over-claiming medical expertise
        "escalation_triggers": [
            "chest pain",
            "difficulty breathing",
            "suicidal thoughts",
            "severe allergic reaction",
            "medication error"
        ],
        "max_response_time": 2  # seconds
    }

    KNOWLEDGE_BASE = { "office_hours": { "monday_friday": "9:00 AM - 5:00 PM", "saturday": "10:00 AM - 2:00 PM", "sunday": "Closed" }, "accepted_insurance": [ "UnitedHealth", "Aetna", "Cigna", "Blue Cross", "Self-pay accepted" ], "common_procedures": { "annual_physical": {"cost": 150, "duration_min": 30}, "orthopedic_consult": {"cost": 200, "duration_min": 45} } }

    Setup Instructions

    1. Deploy the skill:

       npm install healthcare-chatbot-pro
       claw skills deploy healthcare-chatbot-pro
       

    2. Configure EMR connection:

       claw config set EMR_API_KEY=your_epic_key
       claw skills test healthcare-chatbot-pro --emr-test
       

    3. Add to your website: