Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
affaan-m avatar

Healthcare Emr Patterns

  • 4.6k installs
  • 238k repo stars
  • Updated August 5, 2026
  • affaan-m/everything-claude-code

healthcare-emr-patterns is an agent skill that 電子医療記録(EMR)パターン、相互運用性、およびHL7/FHIR統合。.

About

電子医療記録 EMR パターン 相互運用性 およびHL7 FHIR統合 name healthcare-emr-patterns description 電子医療記録 EMR パターン 相互運用性 およびHL7 FHIR統合 origin Health1 Super Speciality Hospitals contributed by Dr Keyur Patel version 1 0 0 Healthcare EMR Development Patterns Patterns for building Electronic Medical Record EMR and Electronic Health Record EHR systems Prioritizes patient safety clinical accuracy and practitioner efficiency When to Use Building patient encounter workflows complaint exam diagnosis prescription Implementing clinical note-taking structured free text voice-to-text Designing prescription medication modules with drug interaction checking Integrating Clinical Decision Support Systems CDSS Building lab result displays with reference range highlighting Implementing audit trails for clinical data Designing healthcare-accessible UIs for clinical data entry How It Works Patient Safety First Every design decision must be evaluated against Could this harm a patient Drug interactions MUST alert not silently pass Abnormal lab values MUST be visually flagged Critical vitals MUST trigger escalation workflows No clinical data modification without audit trail Single-Page Encounter Flow Clinical encounters shou.

  • Healthcare EMR Development Patterns
  • Building patient encounter workflows (complaint, exam, diagnosis, prescription)
  • Implementing clinical note-taking (structured + free text + voice-to-text)
  • Designing prescription/medication modules with drug interaction checking
  • Integrating Clinical Decision Support Systems (CDSS)

Healthcare Emr Patterns by the numbers

  • 4,573 all-time installs (skills.sh)
  • +250 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #134 of 2,203 Security skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

healthcare-emr-patterns capabilities & compatibility

Capabilities
healthcare emr development patterns · building patient encounter workflows (complaint, · implementing clinical note taking (structured + · designing prescription/medication modules with d · integrating clinical decision support systems (c
Use cases
documentation
From the docs

What healthcare-emr-patterns says it does

--- name: healthcare-emr-patterns description: 電子医療記録(EMR)パターン、相互運用性、およびHL7/FHIR統合。 origin: Health1 Super Speciality Hospitals — contributed by Dr.
SKILL.md
Keyur Patel version: "1.0.0" --- # Healthcare EMR Development Patterns Patterns for building Electronic Medical Record (EMR) and Electronic Health Record (EHR) systems.
SKILL.md
Prioritizes patient safety, clinical accuracy, and practitioner efficiency.
SKILL.md
Chief Complaint (structured templates + free text) ├── 2.
SKILL.md
npx skills add https://github.com/affaan-m/everything-claude-code --skill healthcare-emr-patterns

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs4.6k
repo stars238k
Security audit3 / 3 scanners passed
Last updatedAugust 5, 2026
Repositoryaffaan-m/everything-claude-code

What problem does healthcare-emr-patterns solve for developers using this skill?

電子医療記録(EMR)パターン、相互運用性、およびHL7/FHIR統合。

Who is it for?

Developers who need healthcare-emr-patterns patterns described in the cached skill documentation.

Skip if: Skip when docs are empty or the task is outside the skill's documented scope.

When should I use this skill?

電子医療記録(EMR)パターン、相互運用性、およびHL7/FHIR統合。

What you get

Actionable workflows and conventions from SKILL.md for healthcare-emr-patterns.

  • Clinical workflow pattern guidance
  • Accessible medical UI implementation patterns

By the numbers

  • Ships at version 1.0.0 with EMR/EHR patterns contributed by Health1 Super Speciality Hospitals

Files

SKILL.mdMarkdownGitHub ↗

Healthcare EMR Development Patterns

Patterns for building Electronic Medical Record (EMR) and Electronic Health Record (EHR) systems. Prioritizes patient safety, clinical accuracy, and practitioner efficiency.

When to Use

  • Building patient encounter workflows (complaint, exam, diagnosis, prescription)
  • Implementing clinical note-taking (structured + free text + voice-to-text)
  • Designing prescription/medication modules with drug interaction checking
  • Integrating Clinical Decision Support Systems (CDSS)
  • Building lab result displays with reference range highlighting
  • Implementing audit trails for clinical data
  • Designing healthcare-accessible UIs for clinical data entry

How It Works

Patient Safety First

Every design decision must be evaluated against: "Could this harm a patient?"

  • Drug interactions MUST alert, not silently pass
  • Abnormal lab values MUST be visually flagged
  • Critical vitals MUST trigger escalation workflows
  • No clinical data modification without audit trail

Single-Page Encounter Flow

Clinical encounters should flow vertically on a single page — no tab switching:

Patient Header (sticky — always visible)
├── Demographics, allergies, active medications
│
Encounter Flow (vertical scroll)
├── 1. Chief Complaint (structured templates + free text)
├── 2. History of Present Illness
├── 3. Physical Examination (system-wise)
├── 4. Vitals (auto-trigger clinical scoring)
├── 5. Diagnosis (ICD-10/SNOMED search)
├── 6. Medications (drug DB + interaction check)
├── 7. Investigations (lab/radiology orders)
├── 8. Plan & Follow-up
└── 9. Sign / Lock / Print

Smart Template System

interface ClinicalTemplate {
  id: string;
  name: string;             // e.g., "Chest Pain"
  chips: string[];          // clickable symptom chips
  requiredFields: string[]; // mandatory data points
  redFlags: string[];       // triggers non-dismissable alert
  icdSuggestions: string[]; // pre-mapped diagnosis codes
}

Red flags in any template must trigger a visible, non-dismissable alert — NOT a toast notification.

Medication Safety Pattern

User selects drug
  → Check current medications for interactions
  → Check encounter medications for interactions
  → Check patient allergies
  → Validate dose against weight/age/renal function
  → If CRITICAL interaction: BLOCK prescribing entirely
  → Clinician must document override reason to proceed past a block
  → If MAJOR interaction: display warning, require acknowledgment
  → Log all alerts and override reasons in audit trail

Critical interactions block prescribing by default. The clinician must explicitly override with a documented reason stored in the audit trail. The system never silently allows a critical interaction.

Locked Encounter Pattern

Once a clinical encounter is signed:

  • No edits allowed — only an addendum (a separate linked record)
  • Both original and addendum appear in the patient timeline
  • Audit trail captures who signed, when, and any addendum records

UI Patterns for Clinical Data

Vitals Display: Current values with normal range highlighting (green/yellow/red), trend arrows vs previous, clinical scoring auto-calculated (NEWS2, qSOFA), escalation guidance inline.

Lab Results Display: Normal range highlighting, previous value comparison, critical values with non-dismissable alert, collection/analysis timestamps, pending orders with expected turnaround.

Prescription PDF: One-click generation with patient demographics, allergies, diagnosis, drug details (generic + brand, dose, route, frequency, duration), clinician signature block.

Accessibility for Healthcare

Healthcare UIs have stricter requirements than typical web apps:

  • 4.5:1 minimum contrast (WCAG AA) — clinicians work in varied lighting
  • Large touch targets (44x44px minimum) — for gloved/rushed interaction
  • Keyboard navigation — for power users entering data rapidly
  • No color-only indicators — always pair color with text/icon (colorblind clinicians)
  • Screen reader labels on all form fields
  • No auto-dismissing toasts for clinical alerts — clinician must actively acknowledge

Anti-Patterns

  • Storing clinical data in browser localStorage
  • Silent failures in drug interaction checking
  • Dismissable toasts for critical clinical alerts
  • Tab-based encounter UIs that fragment the clinical workflow
  • Allowing edits to signed/locked encounters
  • Displaying clinical data without audit trail
  • Using any type for clinical data structures

Examples

Example 1: Patient Encounter Flow

Doctor opens encounter for Patient #4521
  → Sticky header shows: "Rajesh M, 58M, Allergies: Penicillin, Active Meds: Metformin 500mg"
  → Chief Complaint: selects "Chest Pain" template
    → Clicks chips: "substernal", "radiating to left arm", "crushing"
    → Red flag "crushing substernal chest pain" triggers non-dismissable alert
  → Examination: CVS system — "S1 S2 normal, no murmur"
  → Vitals: HR 110, BP 90/60, SpO2 94%
    → NEWS2 auto-calculates: score 8, risk HIGH, escalation alert shown
  → Diagnosis: searches "ACS" → selects ICD-10 I21.9
  → Medications: selects Aspirin 300mg
    → CDSS checks against Metformin: no interaction
  → Signs encounter → locked, addendum-only from this point

Example 2: Medication Safety Workflow

Doctor prescribes Warfarin for Patient #4521
  → CDSS detects: Warfarin + Aspirin = CRITICAL interaction
  → UI: red non-dismissable modal blocks prescribing
  → Doctor clicks "Override with reason"
  → Types: "Benefits outweigh risks — monitored INR protocol"
  → Override reason + alert stored in audit trail
  → Prescription proceeds with documented override

Example 3: Locked Encounter + Addendum

Encounter #E-2024-0891 signed by Dr. Shah at 14:30
  → All fields locked — no edit buttons visible
  → "Add Addendum" button available
  → Dr. Shah clicks addendum, adds: "Lab results received — Troponin elevated"
  → New record E-2024-0891-A1 linked to original
  → Timeline shows both: original encounter + addendum with timestamps

Related skills

Forks & variants (1)

Healthcare Emr Patterns has 1 known copy in the catalog totaling 1.4k installs. They canonicalize to this original listing.

FAQ

What does healthcare-emr-patterns do?

電子医療記録(EMR)パターン、相互運用性、およびHL7/FHIR統合。

When should I use healthcare-emr-patterns?

電子医療記録(EMR)パターン、相互運用性、およびHL7/FHIR統合。

Is healthcare-emr-patterns safe to install?

Review the Security Audits panel on this page before installing in production.

Securityappsec

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.