feat(assessments): layered clinical assessment engine end-to-end
Deploy Ladill Care / deploy (push) Successful in 1m26s

Add a template-driven assessment system with universal intake, clinical
pathways, disease instruments (stroke MVP + extended, diabetes, and ten
specialty packs), scoring, patient outcome trends, REST/API + FHIR
export, and Enterprise org-level assessment analytics. Seed packs and
design/licensing docs ship for deploy and pre-GA review.
This commit is contained in:
isaacclad
2026-07-16 22:58:09 +00:00
parent 8896088425
commit 2ce4bc8993
94 changed files with 13430 additions and 56 deletions
+68
View File
@@ -0,0 +1,68 @@
{
"pathway": {
"code": "stroke",
"name": "Stroke",
"description": "Acute and follow-up stroke clinical pathway (includes TIA as subtype on assessments).",
"match_rules": {
"icd_prefixes": ["I60", "I61", "I62", "I63", "I64", "G45"],
"keywords": [
"stroke",
"cva",
"tia",
"transient ischaemic attack",
"transient ischemic attack",
"cerebrovascular",
"hemiplegia",
"ischaemic stroke",
"ischemic stroke",
"hemorrhagic stroke",
"haemorrhagic stroke"
],
"exclude_keywords": ["family history"]
},
"is_active": true,
"sort_order": 10,
"meta": {
"specialty": "neurology",
"color": "rose"
}
},
"templates": [
{
"template_code": "nihss",
"is_required_on_activation": true,
"phase": "acute",
"sort_order": 1
},
{
"template_code": "mrs",
"is_required_on_activation": true,
"phase": "acute",
"sort_order": 2
},
{
"template_code": "gcs",
"is_required_on_activation": false,
"phase": "acute",
"sort_order": 3
},
{
"template_code": "stroke_clinical",
"is_required_on_activation": false,
"phase": "acute",
"sort_order": 4
},
{
"template_code": "stroke_swallow",
"is_required_on_activation": false,
"phase": "acute",
"sort_order": 5
},
{
"template_code": "barthel",
"is_required_on_activation": false,
"phase": "follow_up",
"sort_order": 6
}
]
}