分析家族病史、评估遗传风险、识别家庭健康模式、提供个性化预防建议
本技能提供家庭健康数据的深度分析,包括:
当用户请求以下内容时,使用此技能:
/family report 命令/family risk 命令识别用户请求类型:
数据源:
data/family-health-tracker.jsondata/hypertension-tracker.jsondata/diabetes-tracker.jsondata/profile.json验证项目:
识别算法:
加权计算:
遗传风险评分 = (一级亲属患病数 × 0.4) +
(早发病例数 × 0.3) +
(家族聚集度 × 0.3)
风险等级:
- 高风险: ≥70%
- 中风险: 40%-69%
- 低风险: <40%
建议分类:
示例:
{
"category": "screening",
"action": "定期血压监测",
"frequency": "每周3次",
"start_age": 35,
"priority": "high"
}
HTML报告组件:
输出格式:
每次分析输出必须包含:
⚠️ 免责声明:
1. 本分析基于家族病史统计,仅供参考
2. 遗传风险评估不预测个体发病
3. 所有医疗决策请咨询专业医师
4. 遗传咨询建议咨询专业遗传咨询师
技能版本: v1.0 最后更新: 2025-01-08 维护者: WellAlly Tech
Adapted for @techwavedev/agi-agent-kit Original source: antigravity-awesome-skills
Retrieve prior decisions and patterns to avoid re-discovering solutions. Cache results for instant retrieval in future sessions.
# Check for prior development context before starting
python3 execution/memory_manager.py auto --query "prior work and patterns related to Family Health Analyzer"
After completing work, store development decisions for future sessions:
python3 execution/memory_manager.py store \
--content "Completed task with key insights documented for future reference" \
--type decision --project <project> \
--tags family-health-analyzer default
Share outcomes with other agents so the team stays aligned and avoids duplicate work.
python3 execution/cross_agent_context.py store \
--agent "<your-agent>" \
--action "Task completed — results documented and shared with team" \
--project <project>