Generates structured follow-up tasks from encounter data including pending results, referral tracking, medication monitoring, and screening reminders. Creates FHIR Task resources for care team tracking. Use when asked to generate follow-up tasks, create to-do list, post-visit tasks, pending follow-up items, or results management tasks.
Use when a clinician needs to generate actionable follow-up tasks after an encounter, ensuring nothing falls through the cracks.
fhir_search to pull the recent Encounter and its associated resourcesfhir_search to identify pending ServiceRequest resources (labs ordered but not resulted, imaging ordered, referrals sent)fhir_search to identify new MedicationRequest resources requiring follow-up monitoring (new statin -> recheck LFTs in 6 weeks; new ACEi -> recheck BMP in 2 weeks)fhir_search to identify Condition resources with time-based follow-up needsfhir_create to create Task resources in FHIRfhir_search(resourceType="ServiceRequest", queryParams="patient=[patient-id]&status=active&_sort=-authored&_count=50")
fhir_create(resourceType="Task", resource={"resourceType":"Task","status":"requested","intent":"order","priority":"routine","description":"[task description]","for":{"reference":"Patient/[patient-id]"},"executionPeriod":{"end":"[due-date]"}})