AI Patient Risk Alert

AI → Human

AI monitors patient vitals, alerts clinical team on deterioration.

5 nodes · 4 edgeshealthcare
agenthumanevent
Visual
Vitals Monitoringevent

Continuous feed from bedside monitors.

sequentialDeterioration Prediction
Deterioration Predictionagent

Early warning score using vital trends.

conditionalAlert Nursing Station
Alert Nursing Stationapi

Push notification + bedside alarm.

sequentialNurse Bedside Assessment
Nurse Bedside Assessmenthuman

Physical assessment, confirm or dismiss.

conditionalEscalate to Physician
Escalate to Physicianhuman

Rapid response team activation.

uc-patient-risk-alert.osop.yaml
osop_version: "1.0"
id: "patient-risk-alert"
name: "AI Patient Risk Alert"
description: "AI monitors patient vitals, alerts clinical team on deterioration."

nodes:
  - id: "vitals_stream"
    type: "event"
    name: "Vitals Monitoring"
    description: "Continuous feed from bedside monitors."

  - id: "ai_assess"
    type: "agent"
    subtype: "llm"
    name: "Deterioration Prediction"
    description: "Early warning score using vital trends."
    security:
      risk_level: "high"

  - id: "alert_nurse"
    type: "api"
    name: "Alert Nursing Station"
    description: "Push notification + bedside alarm."

  - id: "nurse_assess"
    type: "human"
    subtype: "review"
    name: "Nurse Bedside Assessment"
    description: "Physical assessment, confirm or dismiss."

  - id: "escalate"
    type: "human"
    subtype: "input"
    name: "Escalate to Physician"
    description: "Rapid response team activation."
    security:
      approval_gate: true

edges:
  - from: "vitals_stream"
    to: "ai_assess"
    mode: "sequential"
  - from: "ai_assess"
    to: "alert_nurse"
    mode: "conditional"
    when: "risk_score > 0.7"
  - from: "alert_nurse"
    to: "nurse_assess"
    mode: "sequential"
  - from: "nurse_assess"
    to: "escalate"
    mode: "conditional"
    when: "assessment.critical == true"