Performs comprehensive discharge readiness assessment by checking pending labs, imaging, medication reconciliation, follow-up appointments, patient education, DME orders, and home health referrals. Calculates LACE readmission risk index. Use when asked to check discharge readiness, discharge checklist, is patient ready for discharge, or prepare for discharge.
Use when a clinician needs to verify discharge readiness by checking all CMS Condition of Participation requirements and calculating readmission risk.
fhir_search to retrieve the current inpatient Encounter (status=in-progress, class=IMP)fhir_search to check for pending ServiceRequest resources (active/draft labs, imaging, consults)fhir_search to check for pending Observation results (status=preliminary/registered)fhir_search to verify medication reconciliation: compare active MedicationRequest against MedicationStatement for discrepanciesfhir_search to check for scheduled follow-up Appointments (status=booked, date >= today)fhir_search to check for patient education DocumentReference resources (LOINC 69981-9)fhir_searchfhir_search(resourceType="ServiceRequest", queryParams="patient=[patient-id]&status=active,draft&encounter=[encounter-id]")
fhir_search(resourceType="Appointment", queryParams="patient=[patient-id]&status=booked,proposed&date=ge[today]")
fhir_search(resourceType="Encounter", queryParams="patient=[patient-id]&class=http://terminology.hl7.org/CodeSystem/v3-ActCode|EMER&date=ge[6-months-ago]")