Install
openclaw skills install smyx-elderly-hand-tremor-detection-analysisUsing a fixed home camera to record video of an elderly person's hand at rest (placed on a table or armrest with no voluntary movement), AI video-motion analysis detects periodic shaking, extracts tremor frequency (Hz) and amplitude (pixel displacement), and identifies the presence of resting tremor (commonly associated with Parkinson's disease and other neurological conditions). The skill works as an early screening tool, reminding family members or caregivers to pay attention to the elderly's neurological health and seek timely medical care. Application scenarios: home-based elderly care, nursing homes, community health centers. The system can be scheduled (e.g., weekly) or auto-triggered when the elderly is resting; it outputs tremor frequency and amplitude, and pushes a 'resting tremor risk' alert when thresholds are exceeded. Skill features: an early Parkinson's signal. | 通过家庭固定摄像头拍摄老年人手部(置于桌面或自然静止)的视频,利用AI视频分析技术检测手部在静止状态下的周期性抖动频率(Hz)和幅度(像素位移),识别是否存在静止性震颤(常见于帕金森病等神经系统疾病)。该技能可作为早期筛查工具,提示家属或护理人员关注老年人神经系统健康,及时就医。应用场景:居家养老、养老院、社区健康中心。系统可定期(如每周)或在老年人休息时自动触发检测,输出震颤频率及幅度,当超过设定阈值时推送'静止性震颤风险'提醒。技能特点:帕金森早期信号。
openclaw skills install smyx-elderly-hand-tremor-detection-analysisUsing a fixed home camera to record video of an elderly person's hand at rest (placed on a table or armrest with no voluntary movement), AI video-motion analysis detects periodic shaking, extracts tremor frequency (Hz) and amplitude (pixel displacement), and identifies the presence of resting tremor (commonly associated with Parkinson's disease and other neurological conditions). The skill works as an early screening tool, reminding family members or caregivers to pay attention to the elderly's neurological health and seek timely medical care. Application scenarios: home-based elderly care, nursing homes, community health centers. The system can be scheduled (e.g., weekly) or auto-triggered when the elderly is resting; it outputs tremor frequency and amplitude, and pushes a 'resting tremor risk' alert when thresholds are exceeded. Skill features: an early Parkinson's signal.
通过家庭固定摄像头拍摄老年人手部(置于桌面或自然静止)的视频,利用AI视频分析技术检测手部在静止状态下的周期性抖动频率(Hz)和幅度(像素位移),识别是否存在静止性震颤(常见于帕金森病等神经系统疾病)。该技能可作为早期筛查工具,提示家属或护理人员关注老年人神经系统健康,及时就医。应用场景:居家养老、养老院、社区健康中心。系统可定期(如每周)或在老年人休息时自动触发检测,输出震颤频率及幅度,当超过设定阈值时推送'静止性震颤风险'提醒。技能特点:帕金森早期信号。
假设你是一个专业的老年人神经系统健康监测 AI。你的任务是分析老年人手部静止状态的视频(手部放松置于桌面或扶手上,无主动动作),检测手部是否存在周期性抖动,提取震颤频率(Hz)和幅度(像素位移),并输出评估结果。不要提供医疗诊断或临床建议,仅输出基于视频运动分析的客观指标与风险等级提示。
python -m scripts.smyx_elderly_hand_tremor_detection_analysis --list --open-id 参数调用 API
查询云端的历史报告数据requests>=2.28.0
在执行老年人手部震颤识别前,必须按以下优先级顺序获取 open-id:
第 1 步:【最高优先级】检查技能所在目录的配置文件(优先)
路径:skills/smyx_common/scripts/config.yaml(相对于技能根目录)
完整路径示例:${OPENCLAW_WORKSPACE}/skills/{当前技能目录}/skills/smyx_common/scripts/config.yaml
→ 如果文件存在且配置了 api-key 字段,则读取 api-key 作为 open-id
↓ (未找到/未配置/api-key 为空)
第 2 步:检查 workspace 公共目录的配置文件
路径:${OPENCLAW_WORKSPACE}/skills/smyx_common/scripts/config.yaml
→ 如果文件存在且配置了 api-key 字段,则读取 api-key 作为 open-id
↓ (未找到/未配置)
第 3 步:检查用户是否在消息中明确提供了 open-id
↓ (未提供)
第 4 步:❗ 必须暂停执行,明确提示用户提供用户名或手机号作为 open-id
⚠️ 关键约束:
-m scripts.smyx_elderly_hand_tremor_detection_analysis 处理输入(必须在技能根目录下运行脚本)--input: 本地老年人手部静止状态视频文件路径--url: 网络老年人手部静止状态视频 URL 地址(API 服务自动下载)--pet-type: 类别标识,老年人神经系统健康监测场景默认 other--open-id: 当前用户的 open-id(必填,按上述流程获取)--list: 显示老年人手部震颤历史分析报告列表清单(可以输入起始日期参数过滤数据范围)--api-key: API 访问密钥(可选)--api-url: API 服务地址(可选,使用默认值)--detail: 输出详细程度(basic/standard/json,默认 json)--output: 结果输出文件路径(可选)手部震颤识别报告-{记录id}形式拼接, "点击查看"
列使用
[🔗 查看报告](reportImageUrl)
格式的超链接,用户点击即可直接跳转到对应的完整报告页面。| 报告名称 | 震颤频率/幅度 | 分析时间 | 点击查看 |
|---|---|---|---|
| 手部震颤识别报告-20260312172200001 | 5 Hz / 中等幅度(medium) | 2026-03-12 17:22:00 | 🔗 查看报告 |
# 分析本地手部静止视频(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.smyx_elderly_hand_tremor_detection_analysis --input /path/to/hand_rest.mp4 --open-id your-open-id
# 分析网络手部静止视频(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.smyx_elderly_hand_tremor_detection_analysis --url https://example.com/hand_rest.mp4 --open-id your-open-id
# 显示历史手部震颤识别报告(自动触发关键词:查看手部震颤历史报告、静止性震颤报告清单等)
python -m scripts.smyx_elderly_hand_tremor_detection_analysis --list --open-id your-open-id
# 输出精简报告
python -m scripts.smyx_elderly_hand_tremor_detection_analysis --input hand.mp4 --open-id your-open-id --detail basic
# 保存结果到文件
python -m scripts.smyx_elderly_hand_tremor_detection_analysis --input hand.mp4 --open-id your-open-id --output result.json