healthcare-cdss-patterns

Generate pure-function CDSS rules for drug interactions, dose checks, and NEWS2 scoring.

Updated Sep 13, 2025
One-click install
npx skills add https://github.com/llmh333/employee_management_spring --skill healthcare-cdss-patterns-llmh333
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: healthcare-cdss-patterns
Source: https://github.com/llmh333/employee_management_spring/tree/main/.gemini/skills/healthcare-cdss-patterns
Command: npx skills add https://github.com/llmh333/employee_management_spring --skill healthcare-cdss-patterns-llmh333

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The Healthcare CDSS patterns skill helps teams build Clinical Decision Support System logic that reduces patient safety risk by ensuring drug interaction detection, dose validation, and clinical scoring behave predictably and are tested for zero false negatives.

Core Features & Use Cases

  • Drug interaction checking: Compare a new medication against current medications and documented allergies to produce severity-sorted alerts using maintainable interaction pair data.
  • Dose validation: Validate prescribed dose against weight-based, age-adjusted, and renal-adjusted rules and block when critical inputs (like weight for mg/kg dosing) are missing.
  • Clinical scoring & alert classification: Compute early warning scores (e.g., NEWS2) and structure alert severity so the EMR UI can block, warn, or inform with explicit clinician actions.
  • Safety-first testing pattern: Enforce 100% pass criteria with bidirectional interaction checks, malformed input resilience, and hard guardrails for weight-based validation.

Quick Start

Use the healthcare-cdss-patterns skill to generate a pure-function CDSS rule engine for drug interactions, dose checks, and NEWS2 scoring that outputs severity-tagged alerts for your EMR workflow.

Frequently Asked Questions about healthcare-cdss-patterns

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I implement clinical decision support logic for drug interaction checking in an EMR?

Clinical decision support logic for drug interaction checking uses pure-function modules to compare new medications against current medications and allergies, producing severity-sorted alerts. This deterministic approach ensures maintainable interaction pair data and zero false negatives in EMR workflows.

What is the best way to validate medication doses for weight-based and renal-adjusted rules?

Dose validation for weight-based and renal-adjusted rules requires pure-function modules that enforce blocking guardrails when critical inputs like patient weight are missing. This approach prevents unsafe mg/kg dosing calculations and ensures age-adjusted prescriptions meet clinical safety standards.

How does early warning clinical scoring like NEWS2 integrate with alert severity classification?

Early warning clinical scoring computes NEWS2 values and structures alert severity so the EMR UI can block, warn, or inform with explicit clinician actions. Severity-ordered outputs ensure critical alerts surface first while maintaining deterministic behavior across lab interpretations.

Can I use pure functions for clinical decision support systems that require zero false negatives?

Pure functions enable clinical decision support systems to achieve zero false negatives by ensuring deterministic behavior and testable rule execution. Strict bidirectional interaction pair requirements and malformed input resilience guarantee consistent drug interaction detection and dose validation outcomes.

What testing pattern should I use for clinical decision support rules handling drug interactions and dose checks?

A safety-first testing pattern enforces 100% pass criteria with bidirectional interaction checks and hard guardrails for weight-based validation. This ensures dose validation and drug interaction checking maintain zero false negatives even with malformed inputs in EMR workflows.

Why does my CDSS dose validation fail when patient weight is missing for mg/kg dosing?

Dose validation fails when weight is missing because blocking guardrails prevent unsafe mg/kg dosing calculations. This safety-first design ensures critical inputs are present before processing weight-based, age-adjusted, or renal-adjusted medication rules in clinical decision support systems.