healthcare-emr-patterns

healthcare-emr-patterns is a skill for Claude Code, Codex from EthanYoQ/Skill-hub. It costs 63 tokens per session (1,474 once invoked), scanned A, a copy of healthcare-emr-patterns, MIT.

A collection of design patterns for EMR and EHR software: systems that store and manage patients’ medical records. It focuses on safe clinical workflows, prescriptions, lab results, decision support, audit trails, and accessible data-entry screens.

In plain words
What is it for?
Use it when building patient encounters, clinical notes, prescriptions, drug-interaction warnings, lab displays, vital-sign alerts, audit logs, or healthcare forms.
Why use it?
It helps prevent software design choices that could hide warnings, lose clinical history, or make medical work harder to use safely. It emphasizes visible alerts and traceable changes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when building patient encounters, clinical notes, prescriptions, drug-interaction warnings, lab displays, vital-sign alerts, audit logs, or healthcare forms.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ethanyoq/skill-hub/healthcare-emr-patterns
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add EthanYoQ/Skill-hub --skill healthcare-emr-patterns
Clone the repo
git clone --depth 1 https://github.com/EthanYoQ/Skill-hub

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for healthcare-emr-patterns

README.md
[![agentmods](https://agentmods.dev/badge/skills/ethanyoq/skill-hub/healthcare-emr-patterns/github.svg)](https://agentmods.dev/skills/ethanyoq/skill-hub/healthcare-emr-patterns)
Your own site
<a href="https://agentmods.dev/skills/ethanyoq/skill-hub/healthcare-emr-patterns"><img src="https://agentmods.dev/badge/skills/ethanyoq/skill-hub/healthcare-emr-patterns/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for healthcare-emr-patterns

Your own site · 80×15
<a href="https://agentmods.dev/skills/ethanyoq/skill-hub/healthcare-emr-patterns"><img src="https://agentmods.dev/badge/skills/ethanyoq/skill-hub/healthcare-emr-patterns.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,474 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 88% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00063 $0.01474
Opus 5 $0.00032 $0.00737
Sonnet 5 $0.00013 $0.00295
Haiku 4.5 $0.00006 $0.00147

Measured 11d ago against content hash 117e1861c531, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

healthcare-emr-patterns scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

88% identical to healthcare-emr-patterns — 29 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/10-business-industry/healthcare-emr-patterns/SKILL.md · 161 lines

How it starts

The opening of the file, as written. The whole thing — 161 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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.

Read the full file on GitHub · 161 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 161 lines · 63 tokens per session scan A 117e1861c531

Subscribe to this mod's changes

healthcare-emr-patterns is a skill published in the GitHub repository EthanYoQ/Skill-hub (9 stars, last pushed 5d ago), licensed MIT. It adds 63 tokens to every session and 1,474 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 88% identical to healthcare-emr-patterns, differing in 29 lines, and is treated as a copy.

Related

Other skills, from other repositories

api-documenter

Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals.

ranbot-ai/awesome-skills · 39 tokens

api-analyzer

Validates whether an API request is correct based on provided inputs (method, URL, headers, body, auth, query params).

ranbot-ai/awesome-skills · 30 tokens

api-and-interface-design

Use when designing stable APIs, module boundaries, type contracts, public interfaces, REST or GraphQL endpoints, or frontend/backend contracts.

FluxonLab/Skillry · 31 tokens

mermaid-diagrams

Create software diagrams using Mermaid text-based syntax. Use for class diagrams (domain modeling, OOP design), sequence diagrams (API flows, interactions), flowcharts (processes, algorithms, user journeys), ERD (database schemas), C4 architecture diagrams, state diagrams, git graphs, gantt charts, and data…

saajunaid/caddis-plugin · 70 tokens

design-an-interface

Generate multiple radically different interface designs for a module using parallel sub-agents. Use when user wants to design an API, explore interface options, compare module shapes, or mentions "design it twice".

klimentij/klimkit · 43 tokens

design-an-interface

Generate multiple radically different interface designs for a module using parallel sub-agents. Use when user wants to design an API, explore interface options, compare module shapes, or mentions "design it twice".

mhrsdev/AI-Agent-Skills-Library · 43 tokens