Install
openclaw skills install smyx-incontinence-alert-analysisAutomatically identifies wet clothing and abnormal excretion via visual AI. Instantly notifies caregivers to improve care for incontinent elderly, bedridden patients, and infants, reducing skin issues and complications. | 智能失禁状态提醒技能,基于视觉AI自动识别衣物潮湿、排泄异常等状况,第一时间推送通知给看护人员,提升失能老人、卧床病人、婴幼儿的护理质量,减少皮肤问题和并发症
openclaw skills install smyx-incontinence-alert-analysisBased on visual AI technology, this capability automatically identifies conditions such as damp clothing or abnormal excretion in disabled seniors, bedridden patients, or infants. By analyzing image texture, reflection characteristics, and regional changes, the system monitors body surface and contact area status in real-time. Upon detecting anomalies, it immediately pushes notifications to caregivers to facilitate timely cleaning and changing. It is suitable for scenarios in nursing homes, home care, and maternal-infant care, effectively reducing the risks of skin eczema, diaper rash, and infection, while enhancing nursing quality and response efficiency.
本技能基于视觉AI技术,自动识别失能老人、卧床病人或婴幼儿的衣物潮湿、排泄异常等状况。系统通过分析图像纹理、反射特征及区域变化,实时监测体表与接触面状态,发现异常后第一时间向看护人员推送通知,帮助及时清洁更换。适用于养老机构、居家护理及母婴照护场景,有效降低皮肤湿疹、尿布疹及感染风险,提升护理质量与响应效率。
本技能明确约定:
memory/YYYY-MM-DD.md、MEMORY.md 等本地文件python -m scripts.incontinence_alert_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.incontinence_alert_analysis 处理文件(必须在技能根目录下运行脚本)--input: 本地视频/图片文件路径(使用 multipart/form-data 方式上传)--url: 网络媒体 URL 地址(API 服务自动下载)--user-type: 护理对象类型,可选值:elderly(失能老人)/bedridden(卧床病人)/infant(婴幼儿)/other,默认 other--detection-mode: 检测模式,可选值:real-time(实时监控)/regular-check(定时巡查),默认 real-time--open-id: 当前护理对象/看护人的 open-id(必填,按上述流程获取)--list: 显示历史失禁提醒检测报告列表清单(可以输入起始日期参数过滤数据范围)--api-key: API 访问密钥(可选)--api-url: API 服务地址(可选,使用默认值)--detail: 输出详细程度(basic/standard/json,默认 json)--output: 结果输出文件路径(可选)失禁状态提醒报告-{记录id}形式拼接,点击查看列使用
[🔗 查看报告](reportImageUrl)
格式的超链接,用户点击即可直接跳转到对应的完整报告页面。| 报告名称 | 护理对象 | 分析时间 | 预警等级 | 点击查看 |
|---|---|---|---|---|
| 失禁状态提醒报告 -20260312172200001 | 失能老人 | 2026-03-12 17:22:00 | 🔴 | |
| 需要立即处理 | 🔗 查看报告 |
# 分析失能老人实时监控视频(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.incontinence_alert_analysis --input /path/to/care_video.mp4 --user-type elderly --detection-mode real-time --open-id openclaw-control-ui
# 分析卧床病人巡查图片(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.incontinence_alert_analysis --input /path/to/care_image.jpg --user-type bedridden --detection-mode regular-check --open-id openclaw-control-ui
# 分析婴幼儿监控视频(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.incontinence_alert_analysis --url https://example.com/baby_care.mp4 --user-type infant --detection-mode real-time --open-id openclaw-control-ui
# 显示历史分析报告/显示分析报告清单列表/显示历史护理报告(自动触发关键词:查看历史护理报告、历史报告、护理报告清单等)
python -m scripts.incontinence_alert_analysis --list --open-id openclaw-control-ui
# 输出精简报告
python -m scripts.incontinence_alert_analysis --input video.mp4 --user-type elderly --open-id your-open-id --detail basic
# 保存结果到文件
python -m scripts.incontinence_alert_analysis --input image.jpg --user-type bedridden --open-id your-open-id --output result.json