Operational command center for care-pathway coordination, handoff risk, and follow-up escalation across patient journeys.
Care operations rarely fail because teams lack data. They fail because handoffs drift, queues hide urgency, and no one owns the next action clearly enough. This repo models a care coordination layer that keeps discharge, referral, follow-up, and outreach work visible under pressure.
- Scores active patient pathways by risk, delay pressure, and follow-up friction
- Prioritizes a coordination queue for nurses, navigators, and outreach teams
- Tracks cross-team handoffs with cause, severity, and recommended response
- Publishes human-readable proof surfaces and API-friendly outputs from the same service layer
cd care-pathway-command-center
py -3.11 -m venv .venv
.\.venv\Scripts\pip.exe install -r requirements.txt
.\.venv\Scripts\python.exe -m app.mainOpen:
http://127.0.0.1:4887/http://127.0.0.1:4887/queuehttp://127.0.0.1:4887/handoffshttp://127.0.0.1:4887/docs
.\.venv\Scripts\python.exe -m unittest discover -s tests
.\.venv\Scripts\python.exe scripts\run_demo.py
.\.venv\Scripts\python.exe scripts\smoke_check.py
.\.venv\Scripts\python.exe scripts\render_readme_assets.pyapp/main.pyFastAPI routes and local runtime entrypointapp/services/care_pathway_service.pycoordination scoring and sample payload logicapp/data/sample_pathways.jsonsample pathway, handoff, and intervention dataapp/render.pyREADME proof surface generationdocs/architecture.mdsystem framing and data flow



