← Back to Skills Marketplace
ncreighton

Healthcare Chatbot Pro

by ncreighton · GitHub ↗ · v1.0.0 · MIT-0
macoslinuxwin32 ⚠ suspicious
140
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install healthcare-chatbot-pro
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...
README (SKILL.md)

\r \r

Overview\r

\r 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.\r \r Why This Matters:\r

  • Reduced Administrative Burden: Automates 60-80% of common patient inquiries (hours, location, insurance, prescription refills)\r
  • Improved Patient Satisfaction: Instant responses to queries reduce wait times from hours to seconds\r
  • Revenue Impact: Automated appointment scheduling recovers lost bookings and reduces no-shows with smart reminders\r
  • HIPAA-Compliant: Built-in data privacy controls for protected health information (PHI)\r \r Key Integrations:\r
  • EMR Systems: Epic, Cerner, NextGen Healthcare, athenahealth\r
  • CRM Platforms: Salesforce Health Cloud, HubSpot, Pipedrive\r
  • Communication: Twilio (SMS/voice), Slack, Microsoft Teams, WhatsApp\r
  • Calendar: Google Calendar, Outlook, iCal\r
  • Payment: Stripe, Square for patient billing queries\r \r ---\r \r

Quick Start\r

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

Example 1: Deploy a Patient Query Bot\r

Deploy a healthcare chatbot for my orthopedic clinic. Configure it to answer:\r
- Office hours and location\r
- Insurance accepted (UnitedHealth, Aetna, Cigna, self-pay)\r
- Common post-operative care questions\r
- Prescription refill requests\r
- Appointment rescheduling\r
\r
Integrate with our Epic EMR and send appointment confirmations via SMS using Twilio.\r
```\r
\r
### Example 2: Automate Appointment Scheduling\r
```\r
Create an appointment scheduling workflow that:\r
1. Greets patients and identifies their reason for visit\r
2. Checks real-time availability from our Google Calendar\r
3. Books the appointment (if patient consents)\r
4. Sends confirmation SMS + email with pre-visit instructions\r
5. Sends reminder SMS 24 hours before appointment\r
6. Logs interaction to Salesforce Health Cloud\r
\r
Providers available: Dr. Smith (Mon-Fri 9am-5pm), Dr. Chen (Tue, Thu 1pm-6pm)\r
```\r
\r
### Example 3: Multi-Language Patient Support\r
```\r
Configure chatbot to handle patient inquiries in English and Spanish.\r
Route complex medical questions to available providers via Slack.\r
Log all conversations for compliance and quality assurance.\r
Generate daily summary report of most common questions.\r
```\r
\r
### Example 4: Insurance & Billing Assistance\r
```\r
Train the chatbot to answer:\r
- Which insurance plans we accept\r
- Typical costs for common procedures\r
- Pre-authorization requirements\r
- Payment plan options\r
- Out-of-pocket estimate calculations\r
\r
Flag high-value billing questions for human review.\r
```\r
\r
---\r
\r
## Capabilities\r
\r
### 1. Intelligent Patient Query Response\r
- **Natural Language Understanding**: Recognizes patient intent (scheduling, medical info, billing, prescription)\r
- **Knowledge Base Integration**: Answers from FAQ, clinical guidelines, and custom protocols\r
- **Context Awareness**: Remembers patient history within conversation thread\r
- **Escalation Logic**: Automatically routes complex/urgent queries to appropriate staff\r
\r
**Usage Example:**\r
```\r
Patient: "I've had a cough for 3 weeks, should I come in?"\r
Chatbot: "I understand you're concerned about a persistent cough. \r
While I can't diagnose conditions, I recommend scheduling with \r
Dr. Smith (available tomorrow 2pm or Thursday 10am). \r
Should I book an appointment?"\r
```\r
\r
### 2. Appointment Scheduling & Management\r
- **Real-Time Availability**: Syncs with Epic, Cerner, or Google Calendar\r
- **Intelligent Time Suggestions**: Recommends slots based on provider specialty and patient preferences\r
- **Smart Reminders**: SMS/email at 24h, 3h, and 1h before appointments\r
- **No-Show Reduction**: Reduces no-shows by 35-45% with multi-channel reminders\r
- **Rescheduling**: Patients can reschedule via SMS or chat without human intervention\r
\r
**Configuration:**\r
```javascript\r
// Example: Set up appointment rules\r
const appointmentConfig = {\r
  defaultDuration: 30, // minutes\r
  bufferTime: 15,      // between appointments\r
  reminderTiming: [1440, 180, 60], // minutes before appointment\r
  channels: ["sms", "email"],\r
  allowSelfReschedule: true,\r
  maxAdvanceBooking: 90 // days\r
};\r
```\r
\r
### 3. EMR & CRM Integration\r
- **Epic Integration**: Read/write clinical notes, check patient history, verify insurance\r
- **Cerner Connectivity**: Appointment pulling, medication list access\r
- **Salesforce Health Cloud**: Sync patient interactions, manage care plans\r
- **HubSpot CRM**: Track patient touchpoints, segment for campaigns\r
- **Data Security**: End-to-end encryption, HIPAA audit logging\r
\r
**Data Flow:**\r
```\r
Patient Query → Chatbot AI → EMR (Epic/Cerner) → Response → CRM Log\r
                                    ↓\r
                          Clinical Context\r
```\r
\r
### 4. Multi-Channel Communication\r
- **SMS via Twilio**: Text-based support with conversation history\r
- **WhatsApp**: Rich messaging with images, documents\r
- **Slack/Teams**: Internal staff coordination on complex cases\r
- **Web Chat Widget**: Embed on hospital/clinic website\r
- **Voice**: IVR with speech-to-text for hands-free interaction\r
\r
### 5. Analytics & Reporting\r
- **Conversation Metrics**: Response time, resolution rate, escalation %, satisfaction\r
- **Scheduling Insights**: Peak booking times, provider utilization, cancellation patterns\r
- **Patient Sentiment**: Detects frustration, urgency, satisfaction indicators\r
- **Compliance Reports**: HIPAA audit trail, conversation retention, consent tracking\r
\r
---\r
\r
## Configuration\r
\r
### Environment Variables (Required)\r
\r
```bash\r
# OpenAI for intelligent responses\r
OPENAI_API_KEY=sk-proj-xxxxxxxxxxxxx\r
OPENAI_MODEL=gpt-4-turbo  # or gpt-3.5-turbo for cost savings\r
\r
# Twilio for SMS/voice\r
TWILIO_ACCOUNT_SID=ACxxxxxxxxxxxxxx\r
TWILIO_AUTH_TOKEN=xxxxxxxxxxxxxxxx\r
TWILIO_PHONE_NUMBER=+12025551234\r
\r
# EMR Systems (choose one or more)\r
EMR_SYSTEM=epic  # or: cerner, nextgen, athena\r
EMR_API_KEY=xxxxxxxxxxxxxxxx\r
EMR_BASE_URL=https://api.epic-fhir.com/\r
\r
# CRM Integration\r
CRM_SYSTEM=salesforce_health_cloud  # or: hubspot, pipedrive\r
CRM_API_KEY=xxxxxxxxxxxxxxxx\r
\r
# Calendar Integration\r
[email protected]\r
GOOGLE_SERVICE_ACCOUNT={"type": "service_account", ...}\r
\r
# Security & Compliance\r
HIPAA_ENCRYPTION_KEY=xxxxxxxxxxxxxxxx\r
LOG_RETENTION_DAYS=2555  # 7 years for compliance\r
```\r
\r
### Chatbot Personality Configuration\r
\r
```python\r
# config.py\r
CHATBOT_PERSONA = {\r
    "name": "HealthAssist",\r
    "tone": "professional_empathetic",\r
    "language": ["english", "spanish"],\r
    "clinical_confidence": "medium",  # Avoid over-claiming medical expertise\r
    "escalation_triggers": [\r
        "chest pain",\r
        "difficulty breathing",\r
        "suicidal thoughts",\r
        "severe allergic reaction",\r
        "medication error"\r
    ],\r
    "max_response_time": 2  # seconds\r
}\r
\r
KNOWLEDGE_BASE = {\r
    "office_hours": {\r
        "monday_friday": "9:00 AM - 5:00 PM",\r
        "saturday": "10:00 AM - 2:00 PM",\r
        "sunday": "Closed"\r
    },\r
    "accepted_insurance": [\r
        "UnitedHealth",\r
        "Aetna",\r
        "Cigna",\r
        "Blue Cross",\r
        "Self-pay accepted"\r
    ],\r
    "common_procedures": {\r
        "annual_physical": {"cost": 150, "duration_min": 30},\r
        "orthopedic_consult": {"cost": 200, "duration_min": 45}\r
    }\r
}\r
```\r
\r
### Setup Instructions\r
\r
1. **Deploy the skill:**\r
   ```bash\r
   npm install healthcare-chatbot-pro\r
   claw skills deploy healthcare-chatbot-pro\r
   ```\r
\r
2. **Configure EMR connection:**\r
   ```bash\r
   claw config set EMR_API_KEY=your_epic_key\r
   claw skills test healthcare-chatbot-pro --emr-test\r
   ```\r
\r
3. **Add to your website:**\r
   ```html\r
   \x3Cscript src="https://cdn.clawhub.io/chatbot-widget.js">\x3C/script>\r
   \x3Cdiv id="healthcare-chatbot">\x3C/div>\r
   \x3Cscript>\r
     ClawChatbot.init({\r
       skillId: 'healthcare-chatbot-pro',\r
       apiKey: 'YOUR_CLAWHUB_KEY',\r
       branding: { logo: 'https://yourclinic.com/logo.png' }\r
     });\r
   \x3C/script>\r
   ```\r
\r
---\r
\r
## Example Outputs\r
\r
### Output 1: Appointment Confirmation\r
```\r
✅ APPOINTMENT CONFIRMED\r
\r
Dr. Sarah Smith\r
Orthopedic Surgery Consultation\r
\r
📅 Tuesday, March 14, 2024\r
🕐 2:30 PM - 3:15 PM\r
📍 123 Medical Plaza Dr, Suite 200\r
🏥 First time? Arrive 15 min early\r
\r
WHAT TO BRING:\r
- Insurance card\r
- Photo ID\r
- List of current medications\r
\r
REMINDERS:\r
- SMS: Tomorrow at 2:30 PM\r
- SMS: 1 hour before appointment\r
\r
CANCEL/RESCHEDULE:\r
Reply "change appointment" or call 555-0123\r
\r
---\r
Confirmation Code: APT-2024-89547\r
```\r
\r
### Output 2: Patient Query Response\r
```\r
🏥 PATIENT SUPPORT\r
\r
Your Question: "Do you accept my Cigna insurance?"\r
\r
Our Response:\r
Yes! We accept Cigna plans including:\r
✓ Cigna DHMO\r
✓ Cigna POS\r
✓ Cigna Indemnity\r
\r
TYPICAL COSTS (after insurance):\r
- Primary Care Visit: $25-50 copay\r
- Specialist Visit: $50-100 copay\r
- Urgent Care: $100-150 copay\r
\r
NEXT STEPS:\r
→ Schedule appointment (reply: "book appointment")\r
→ Verify coverage (reply: "check benefits")\r
→ Billing questions (reply: "talk to billing team")\r
\r
Need more help? Our staff can assist 9am-5pm Mon-Fri\r
```\r
\r
### Output 3: Daily Analytics Report\r
```\r
📊 HEALTHCARE CHATBOT PRO - DAILY REPORT\r
Generated: March 13, 2024\r
\r
CONVERSATIONS:\r
📞 Total Conversations: 247\r
✅ Resolved by AI: 198 (80%)\r
🔄 Escalated to Staff: 49 (20%)\r
⏱️ Avg Response Time: 1.2 seconds\r
\r
APPOINTMENTS:\r
📅 Bookings Created: 34\r
📅 Rescheduled: 12\r
📅 Cancelled: 5\r
⚠️ No-Shows: 1 (2.8% rate)\r
\r
TOP PATIENT QUESTIONS:\r
1. Office hours & location (45 queries)\r
2. Insurance acceptance (38 queries)\r
3. Appointment rescheduling (32 queries)\r
4. Prescription refills (28 queries)\r
5. Pre-visit instructions (20 queries)\r
\r
SENTIMENT:\r
😊 Positive: 91%\r
😐 Neutral: 7%\r
😞 Negative: 2%\r
\r
SYSTEM HEALTH:\r
✅ Uptime: 99.9%\r
✅ EMR Sync: Healthy\r
✅ SMS Delivery: 100%\r
```\r
\r
---\r
\r
## Tips & Best Practices\r
\r
### 1. Train Your Knowledge Base Thoroughly\r
- **Specificity**: Include exact office hours, accepted insurance plans, provider specialties\r
- **Real Examples**: Use actual patient questions from your support team as training data\r
- **Regular Updates**: Refresh knowledge base quarterly or when policies change\r
- **Seasonal Content**: Add flu shot info in fall, allergy management in spring\r
\r
### 2. Set Clear Escalation Boundaries\r
- **Red Flags**: Any mention of chest pain, severe symptoms, mental health crises → immediate human escalation\r
- **Medical Disclaimers**: Chatbot must never diagnose; it should say "Please consult with Dr. [Name] or visit urgent care"\r
- **Consent Tracking**: Log escalations for legal protection and quality assurance\r
\r
### 3. Optimize Appointment Availability\r
- **Real-Time Sync**: Update EMR/calendar syncing every 5 minutes\r
- **Buffer Times**: Add 15-min padding between appointments for EMR notes\r
- **Provider Preferences**: Some doctors may want 30-min slots; others 45-min\r
- **Peak Hours**: Book staff availability 2+ weeks in advance to avoid chatbot saying "no availability"\r
\r
### 4. Personalize Patient Interactions\r
- **History Awareness**: "Welcome back! Last visit was 6 months ago for your knee surgery."\r
- **Preferred Contact**: Remember if patient prefers SMS vs. email vs. WhatsApp\r
- **Language**: Auto-detect and default to patient's preferred language\r
- **Tone**: Empathetic language for chronic conditions, upbeat for routine visits\r
\r
### 5. Monitor & Improve Continuously\r
- **Weekly Reviews**: Check escalation reasons—if >40% are insurance questions, add more FAQ content\r
- **Feedback Loops**: Ask "Was this helpful?" and retrain on negative feedback\r
- **A/B Testing**: Test two appointment reminder messages to see which reduces no-shows more\r
- **Provider Input**: Monthly sync with clinical staff on common questions they're still answering manually\r
\r
### 6. Ensure HIPAA Compliance\r
- **Data Encryption**: All patient data encrypted in transit (TLS 1.3) and at rest (AES-256)\r
- **Access Logs**: Audit trail of who accessed what patient data and when\r
- **Consent Management**: Chatbot must confirm patient consent before pulling EMR records\r
- **Retention Policy**: Automatically purge conversation logs per your compliance requirements (typically 7 years)\r
\r
---\r
\r
## Safety & Guardrails\r
\r
### What This Skill WILL NOT Do\r
\r
**❌ Medical Diagnosis**\r
- Chatbot will NOT interpret symptoms and suggest diagnoses\r
- Response: "I can't diagnose medical conditions, but Dr. Smith can help. Should I book an appointment?"\r
\r
**❌ Prescribe or Adjust Medications**\r
- No medication recommendations without provider authorization\r
- All medication questions routed to clinical staff immediately\r
\r
**❌ Provide Emergency Care**\r
- Does NOT replace 911 for life-threatening emergencies\r
- Automatic escalation: "This sounds urgent. Please call 911 or visit the nearest ER immediately."\r
\r
**❌ Guarantee Scheduling**\r
- No over-booking; respects provider capacity limits\r
- Transparent messaging: "Dr. Smith is fully booked for the next 2 weeks. Would you like to see Dr. Chen?"\r
\r
**❌ Share Data Beyond Authorized Systems**\r
- Only connects to approved EMR/CRM systems you specify\r
- Zero third-party data sharing without explicit consent\r
\r
**❌ Override Clinical Judgment**\r
- If EMR contains "do not schedule" flag, chatbot respects it\r
- Complex cases always escalated to care coordinator\r
\r
### Limitations & Boundaries\r
\r
| Feature | Scope | Limitation |\r
|---------|-------|-----------|\r
| **Language Support** | English, Spanish, French | Others require manual configuration |\r
| **EMR Integration** | Epic, Cerner, NextGen, athena | Proprietary EMRs need custom API work |\r
| **Appointment Slots** | 90 days in advance | Beyond 90
Usage Guidance
This skill is 'suspicious' because its claims and runtime requirements don't line up and it involves highly sensitive healthcare data. Before installing: (1) Request clarification/source code — ask the publisher to provide the actual integration code and deployment instructions. (2) Confirm exactly which credentials and scopes are required (e.g., GCP/Dialogflow service account, specific EMR vendor OAuth scopes), and insist on least-privilege credentials and scoped service accounts. (3) Ask where logs/conversation transcripts are stored, who can access them, and how PHI is protected at rest and in transit; require evidence of HIPAA controls and audit logging. (4) Use short-lived or scoped tokens in a test environment first and rotate secrets after testing. (5) Prefer an implementation with explicit install steps and auditability (not instruction-only) so you can review code that will handle PHI. If the publisher cannot answer these, do not provide production EMR/CRM credentials or PHI to the skill.
Capability Analysis
Type: OpenClaw Skill Name: healthcare-chatbot-pro Version: 1.0.0 The skill bundle requests high-privilege access to sensitive systems, including EMR (Electronic Medical Records) and CRM platforms, via environment variables like EMR_API_KEY and CRM_API_KEY. While these permissions are aligned with the stated purpose of a healthcare chatbot, the handling of Protected Health Information (PHI) by an AI agent presents a significant security risk. Additionally, the skill references an external CDN (cdn.clawhub.io) and a GitHub repository (ncreighton/empire-skills) with a name commonly associated with post-exploitation frameworks, which warrants caution despite the lack of explicit malicious code in SKILL.md.
Capability Assessment
Purpose & Capability
The description promises Dialogflow/Google Cloud integration plus many channels (Slack, Teams, WhatsApp, Stripe, Square, Google Calendar, etc.) but the declared required env vars only include OPENAI_API_KEY, Twilio creds, EMR_API_KEY, and CRM_API_KEY. References to Dialogflow/Google Cloud are not matched by any GCP credential requirement; many other integrations listed have no corresponding required credentials. This mismatch suggests the manifest is incomplete or inconsistent with the declared purpose.
Instruction Scope
The SKILL.md instructs the agent to read/write EMR data, log conversations for compliance, and sync with CRM/Calendars — actions that involve PHI. The instructions (as shown) do not specify where logs are stored, how PHI is protected in transit/at rest, what minimal scopes are required, or how escalation/consent is handled. The agent will be expected to access highly sensitive data but the runtime controls are vague.
Install Mechanism
There is no install spec (instruction-only), so nothing will be downloaded or written by an installer. That reduces some risk; however, because runtime instructions appear to expect running Node/Python code, missing install steps mean unspecified behavior when the agent attempts to execute integrations.
Credentials
The required env vars (OPENAI_API_KEY, TWILIO_ACCOUNT_SID, TWILIO_AUTH_TOKEN, EMR_API_KEY, CRM_API_KEY) are relevant to the described functionality, but the overall set is both sensitive and incomplete given the many integrations listed. The manifest lacks a declared primary credential, uses generic names for EMR/CRM keys (no scopes or provider-specific details), and omits credentials for Google Cloud/Dialogflow, calendar providers, payment processors, and messaging platforms other than Twilio.
Persistence & Privilege
always:false and no install scripts are declared. The skill does not request permanent/forced inclusion. There is no evidence it modifies other skill configurations or system-wide settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install healthcare-chatbot-pro
  3. After installation, invoke the skill by name or use /healthcare-chatbot-pro
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Healthcare Chatbot Pro 1.0.0 – Initial release - Launches a production-ready healthcare chatbot with 24/7 AI-powered patient support. - Automates appointment scheduling, patient query responses, billing/insurance FAQs, and reminder workflows. - Integrates with major EMR (Epic, Cerner, NextGen, athenahealth) and CRM (Salesforce, HubSpot, Pipedrive) systems. - Supports multi-channel communication including SMS/voice (Twilio), WhatsApp, Slack, Microsoft Teams, and web chat. - Delivers HIPAA-compliant data privacy, security controls, and audit logging.
Metadata
Slug healthcare-chatbot-pro
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Healthcare Chatbot Pro?

Automate patient support with AI-driven chatbot that answers queries, schedules appointments, and integrates with EMR/CRM systems. Use when the user needs 24... It is an AI Agent Skill for Claude Code / OpenClaw, with 140 downloads so far.

How do I install Healthcare Chatbot Pro?

Run "/install healthcare-chatbot-pro" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Healthcare Chatbot Pro free?

Yes, Healthcare Chatbot Pro is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Healthcare Chatbot Pro support?

Healthcare Chatbot Pro is cross-platform and runs anywhere OpenClaw / Claude Code is available (macos, linux, win32).

Who created Healthcare Chatbot Pro?

It is built and maintained by ncreighton (@ncreighton); the current version is v1.0.0.

💬 Comments