Generates daily inpatient progress notes from FHIR data including overnight events, current vitals, labs, I/O, medication changes, and updated assessment/plan. Use when asked to write a progress note, daily note, inpatient rounding note, or hospital day update.
Use when a clinician needs a daily inpatient progress note summarizing the patient's hospital course, overnight events, current clinical status, and updated plan.
fhir_search to retrieve the current inpatient Encounter (calculate hospital day number)fhir_read to retrieve Patient demographics for note headerfhir_search to pull Observation resources (vitals from last 24h with trends, overnight extremes)fhir_search to pull Observation resources (labs from last 24h)fhir_search to pull active MedicationRequest with changes from last 24h (compare authoredOn)fhir_search to pull active Condition resources for problem listfhir_search to pull pending ServiceRequest resources for outstanding ordersfhir_search(resourceType="Observation", queryParams="patient=[patient-id]&category=vital-signs&date=ge[24-hours-ago]&_sort=-date&_count=50")
fhir_search(resourceType="Observation", queryParams="patient=[patient-id]&category=laboratory&date=ge[today]&_sort=-date")