Family health history management and genetic risk assessment. Use when user mentions family medical history, hereditary diseases, family risk factors, parents' health conditions, genetic predisposition, or asks about inherited disease risks. Triggers on: family history, hereditary, genetic risk, family health, parents' conditions, inherited diseases, family disease pattern.
Manage family health history and assess genetic predisposition risk based on documented family disease patterns. Provide personalized screening recommendations and preventive care guidance.
Ask the user about their family health history. Use Socratic approach:
First-degree relatives (ask about each):
Second-degree relatives (if provided):
For each condition, record:
Based on OpenClaw family-health-analyzer algorithm:
Genetic Risk Score = (F1 × 0.4) + (F2 × 0.3) + (F3 × 0.3)
Where:
- F1 = First-degree relatives with condition (weight 0.4)
- F2 = Early-onset cases (<50 years) × 0.3
- F3 = Family clustering score × 0.3
| Pattern | Score |
|---|---|
| No family history | 0 |
| 1 second-degree relative | 0.2 |
| 1 first-degree relative | 0.4 |
| 2 first-degree relatives (same condition) | 0.6 |
| 3+ first-degree relatives | 0.8 |
| Cross-generational (parent + grandparent) | 0.7 |
| Age at Diagnosis | Multiplier |
|---|---|
| ≥60 years | 0 |
| 50-59 years | 0.2 |
| 40-49 years | 0.5 |
| <40 years | 1.0 |
| Risk Level | Score | Interpretation |
|---|---|---|
| Low | <40 | Normal population risk, follow standard screening |
| Moderate | 40-69 | Elevated risk, consider earlier/more frequent screening |
| High | ≥70 | Significant genetic predisposition, personalized screening plan required |
Cardiovascular
Diabetes
Cancer
Mental Health
Thyroid/Nodules
Based on risk score, recommend:
Family history should inform other skills:
| Family History | Auto-Correlations to Trigger |
|---|---|
| Cardiovascular | vital-monitor (BP priority), chronic-care (hypertension), preventive-care (cardiac screening) |
| Diabetes | chronic-care (glucose monitoring), nutrition-advisor (carbs control) |
| Cancer | preventive-care (cancer screening), mental-health (cancer anxiety) |
| Thyroid | chronic-care (thyroid nodule monitoring), vital-monitor (TSH tracking) |
| Mental Health | mental-health (more frequent PHQ-9), sleep-analyzer (sleep-health link) |
Store in health/ directory:
health/
├── Family History.md
└── Family History.json
{
"family_history": {
"first_degree": [
{
"relative": "father",
"conditions": [
{
"name": "Type 2 Diabetes",
"age_at_diagnosis": 55,
"severity": "controlled",
"notes": "On metformin"
}
]
}
],
"second_degree": [
{
"relative": "maternal_grandmother",
"conditions": [
{
"name": "Breast Cancer",
"age_at_diagnosis": 62,
"severity": "treated",
"notes": "Early stage, no recurrence"
}
]
}
]
},
"risk_assessment": {
"cardiovascular": {
"score": 52,
"level": "moderate",
"factors": ["father MI at 58"]
},
"diabetes": {
"score": 40,
"level": "moderate",
"factors": ["father T2DM at 55"]
}
},
"screening_recommendations": [
{
"test": "HbA1c",
"start_age": 35,
"frequency": "annual",
"reason": "Family history of T2DM"
}
],
"last_updated": "2026-03-21"
}
# Family Health Assessment — [Date]
## Family History Summary
| Relative | Condition | Age at Dx | Notes |
|----------|-----------|-----------|-------|
| Father | Type 2 Diabetes | 55 | On metformin |
| Mother | Hypertension | 58 | Controlled |
| Mat. Grandmother | Breast Cancer | 62 | Treated |
## Genetic Risk Scores
| Condition | Score | Risk Level | Key Factors |
|-----------|-------|------------|-------------|
| Type 2 Diabetes | 52 | Moderate | Father T2DM at 55 |
| Cardiovascular | 45 | Moderate | Father MI at 58 |
| Breast Cancer | 32 | Low | 1 second-degree, age >50 |
## Screening Recommendations
**Diabetes Screening**
- Start: Age 35 (10 years before father's diagnosis)
- Frequency: Annual
- Test: HbA1c or fasting glucose
**Cardiovascular Screening**
- Start: Age 30 (earlier due to family history)
- Frequency: Annual lipid panel + BP check
- Consider: CAC scoring after 40
## Cross-Dimensional Correlations
🔗 Family history of T2DM + cardiovascular disease → increased monitoring priority
→ Recommend: nutrition-advisor (carb awareness), vital-monitor (BP + glucose tracking)
## Action Plan
- [ ] Complete detailed family health interview
- [ ] Schedule HbA1c test at next checkup
- [ ] Discuss lipid panel with doctor
- [ ] Add BP monitoring to weekly routine
Can Do:
Cannot Do:
Every output must include:
⚠️ This risk assessment is based on family health history patterns and is for informational purposes only. It does not constitute a medical diagnosis. Consult your healthcare provider for personalized screening plans and medical advice. Genetic counseling is recommended for high-risk families.