healthcare-cdss-patterns

Provide modular CDSS functions for drug interaction checks, dose validation, and clinical scoring.

1|1|Updated Mar 31, 2026
One-click install
npx skills add https://github.com/zardusai-cyber/zardus_setup --skill healthcare-cdss-patterns-zardusai-cyber
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: healthcare-cdss-patterns
Source: https://github.com/zardusai-cyber/zardus_setup/tree/main/ecc/skills/healthcare-cdss-patterns
Command: npx skills add https://github.com/zardusai-cyber/zardus_setup --skill healthcare-cdss-patterns-zardusai-cyber

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

CDSS modules are patient-safety critical — zero tolerance for false negatives. This pattern library provides a structured approach to building deterministic, testable CDSS components that can be integrated into EMR workflows.

Core Features & Use Cases

  • Drug interaction checking
  • Dose validation
  • Clinical scoring (NEWS2, qSOFA, APACHE, GCS)
  • EMR workflow integration for alerting and escalation

Quick Start

Configure a modular CDSS engine that takes patient data, runs interaction checks, dose validations, and clinical scores, and returns actionable alerts for EMR integration.

Frequently Asked Questions about healthcare-cdss-patterns

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

FAQPage Schema
What is clinical decision support in EMR integration and why are pure functions important?

Clinical decision support in EMR integration applies safety-critical checks like drug interaction validation and clinical scoring. Pure functions ensure deterministic, testable logic with zero side effects, preventing false negatives in patient safety scenarios.

How do I implement dose validation and drug interaction checks for EMR workflows?

Implement dose validation and drug interaction checks using modular pure functions like checkInteractions and validateDose. These accept patient data and return structured DoseValidationResult and DrugInteractionPair models for deterministic EMR alerting.

Can I use this CDSS pattern library for calculating NEWS2 and qSOFA clinical scores?

Yes, the CDSS pattern library supports clinical scoring including NEWS2, qSOFA, APACHE, and GCS. It defines calculateNEWS2 functions that return NEWS2Result data models, enabling deterministic score computation for EMR escalation workflows.

Does this clinical decision support library require any external dependencies or frameworks?

No, the clinical decision support library has zero external dependencies. It operates as a standalone pure-function library with no side effects, requiring only patient data inputs to execute interaction checks and clinical scoring.

What's the best way to structure deterministic clinical scoring components for hospital EMR systems?

Structure deterministic clinical scoring components as modular pure functions with clear interfaces like calculateNEWS2. Define typed result models such as NEWS2Result and DrugInteractionPair to ensure testable, side-effect-free EMR workflow integration.

When should I avoid using pure-function patterns for clinical decision support?

Avoid pure-function CDSS patterns when your EMR workflow requires real-time stateful monitoring, ambient event listening, or direct database writes. These patterns focus on deterministic data transformations and return actionable alerts rather than managing persistent clinical state.