Design safer EMR/EHR workflows, prescribing modules, and accessible clinical data-entry interfaces.
This skill appears to be a prompt/documentation-style set of EMR/EHR development patterns, with no required secrets, no declared remote endpoints, and no indicated code execution or local data access. Given the open-source GitHub source and strong community adoption, the overall security risk is low, though medical-domain content still requires independent validation for compliance and clinical correctness.
The material explicitly states that no keys or environment variables are required; as a prompt-only skill, it does not appear to request API tokens, account credentials, or other sensitive secrets, so credential exposure and abuse risk is low.
No remote endpoint is declared, and the README is primarily design-pattern and workflow guidance; there is no indication of sending user data to third-party services or unknown hosts.
The system flags it as prompt-only; the TypeScript shown in the document is illustrative interface syntax and does not indicate local process spawning, script execution, or use of system capabilities.
There is no declared permission to read or write local files, databases, the clipboard, or other resources; the content mainly discusses EMR design principles and audit-trail patterns rather than actual data access or overbroad permissions.
The source is an open-source GitHub repository with very strong community adoption (about 210k stars), which supports auditability and source trust; while the license and maintenance status are not clearly stated, this is only a minor information gap and does not justify a higher risk rating based on the provided material.
Copy the install command and let the AI configure it · recommended for beginners
Please install the "healthcare-emr-patterns" skill from askskill: 1. Download https://raw.githubusercontent.com/affaan-m/ECC/main/skills/healthcare-emr-patterns/SKILL.md 2. Save it as ~/.claude/skills/healthcare-emr-patterns/SKILL.md 3. Reload skills and tell me it's ready
Design a complete outpatient EMR encounter workflow covering check-in, triage, chief complaint, history taking, physical exam, diagnosis, orders, and discharge summary. Include key data structures, state transitions, clinical safety validations, and frontend UI component recommendations for each step.
A structured outpatient workflow design with page modules, data models, validation rules, and safety guidance.
Give me a development pattern for an e-prescription module that supports medication search, dose and frequency entry, allergy checks, drug interaction alerts, refill handling, and printable output. Emphasize how to reduce prescribing errors and include backend API and frontend form interaction recommendations.
An architecture and interaction plan for prescribing, highlighting clinical risk controls, alerting, and implementable APIs.
Create a clinical decision support integration plan for an inpatient EMR page and provide accessibility-first form design guidelines. Cover alert trigger timing, ways to reduce alert fatigue, keyboard accessibility, screen reader compatibility, color and contrast requirements, and optimization ideas for high-frequency clinician data entry.
A practical design specification that balances CDS integration with accessible clinician workflows.
Patterns for building Electronic Medical Record (EMR) and Electronic Health Record (EHR) systems. Prioritizes patient safety, clinical accuracy, and practitioner efficiency.
Every design decision must be evaluated against: "Could this harm a patient?"
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
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.
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.
Once a clinical encounter is signed:
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.
Healthcare UIs have stricter requirements than typical web apps:
…
Audit Claude skills and commands with quick scans or full stocktakes.
Create iOS liquid glass interfaces with dynamic visuals and interactive morphing.
Record polished web app UI demo videos for walkthroughs, tutorials, and showcases.
Plan demand forecasts, safety stock, and replenishment for multi-location retail inventory.
Unify multi-channel notifications for routing, deduplication, escalation, and inbox consolidation.
Audit, plan, and implement SEO improvements for better search visibility.
Design CDSS rules, scoring alerts, and EMR-integrated clinical workflows.
Design compliant PHI and PII protection patterns for healthcare applications.
Automate patient-safety checks for healthcare deployments and block unsafe releases.
Securely access integrated patient and unit clinical data from multiple healthcare systems.
Connect to SMART on FHIR records and analyze personal health data.
Access Healthpoint HL7 FHIR data read-only for healthcare queries and integrations.