con un clic
reminder-setter
设置健康提醒 — 服药提醒、复查提醒、运动提醒、饮水提醒等。当用户要求设置提醒、定时通知、到时间提醒做某事时使用。
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
设置健康提醒 — 服药提醒、复查提醒、运动提醒、饮水提醒等。当用户要求设置提醒、定时通知、到时间提醒做某事时使用。
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
管理首页行动卡片 — 创建、查询、完成、归档。当用户想把某条建议固化到首页、查看当前行动计划、标记完成,使用这个 skill。
Assess chronic disease risk — cardiovascular (modified Framingham), metabolic syndrome (IDF criteria), and 90-day trend analysis. Integrates wearable data (Garmin), labs, vitals, and genetic markers for personalized risk scoring with confidence intervals.
Family health management - medical reports, medications, review calendar, family daily health check. Use when user asks about family members' health, medical exams, medications, checkup schedules, or wants to manage health for parents/spouse/children.
Query and analyze user genetic test data (基因检测). Cross-reference genetics with medical reports, Garmin wearable data, and current health status for personalized nutrition, exercise, drug sensitivity, disease risk, and sleep advice.
Get AI health analysis, daily recommendations, health trend predictions, and health scores. Use when the user asks for health advice, trend analysis, risk assessment, or wellness recommendations.
综合查询健康数据 — Digital Health Twin 快照、Safety 告警、长期趋势、Orchestrator 多专家分析。当用户想了解自己的整体健康状况、趋势变化、安全风险时使用。
| name | reminder-setter |
| description | 设置健康提醒 — 服药提醒、复查提醒、运动提醒、饮水提醒等。当用户要求设置提醒、定时通知、到时间提醒做某事时使用。 |
| version | 1.0.0 |
| metadata | {"agent":{"requires":{"env":["HEALTH_API_URL","HEALTH_API_TOKEN"],"bins":["curl"]},"primaryEnv":"HEALTH_API_TOKEN","emoji":"⏰"}} |
帮用户设置健康相关的定时提醒。
Authorization: Bearer ${HEALTH_API_TOKEN}application/json| 用户说 | 你应该做 |
|---|---|
| "提醒我下午3点喝水" | 创建一次性提醒 |
| "每天晚上9点提醒吃莫米松" | 创建每日重复提醒 |
| "周一三五提醒我跑步" | 创建按星期重复的提醒 |
| "4周后提醒复查肝功能" | 计算日期并创建一次性提醒 |
| "我有哪些提醒" | 查询提醒列表 |
| "取消那个吃药提醒" | 删除提醒 |
curl -s -X POST \
-H "Authorization: Bearer ${HEALTH_API_TOKEN}" \
-H "Content-Type: application/json" \
"${HEALTH_API_URL}/reminders/me" \
-d '{
"title": "喝水",
"message": "下午3点该喝300ml水了",
"remind_at": "2026-04-12T15:00:00+08:00",
"priority": "normal",
"recurrence": null
}'
字段说明:
low / normal / high / urgentnull — 一次性"daily" — 每天"weekdays" — 工作日"weekly:1,3,5" — 每周一三五(1=周一,7=周日)curl -s -H "Authorization: Bearer ${HEALTH_API_TOKEN}" \
"${HEALTH_API_URL}/reminders/me?status=pending"
status: pending(待执行)/ triggered(已触发)/ all
curl -s -X DELETE \
-H "Authorization: Bearer ${HEALTH_API_TOKEN}" \
"${HEALTH_API_URL}/reminders/{reminder_id}"
用户说的时间需要你转成 ISO 8601 格式:
T15:00:00+08:00T08:00:00+08:00T09:00:00+08:00(默认上午9点)T21:00:00+08:00 + recurrence: "daily"{"title": "莫米松鼻喷", "message": "洗澡后使用,每侧2喷", "remind_at": "2026-04-12T21:00:00+08:00", "priority": "high", "recurrence": "daily"}
{"title": "复查肝功能", "message": "去医院复查 ALT/AST/GGT + 腹部超声", "remind_at": "2026-05-24T09:00:00+08:00", "priority": "high", "recurrence": null}
{"title": "喝水", "message": "喝300ml水", "remind_at": "2026-04-12T15:00:00+08:00", "priority": "normal", "recurrence": "weekdays"}
+08:00 时区