Install
openclaw skills install smyx-vaccination-reminder-analysisTriggers when a user provides a pet facial image or video URL/file for vaccination reminder analysis; uses AI facial recognition to confirm pet identity, automatically queries the linked vaccination records (last dose date, vaccine type) from the hospital management database, and compares with current date. When the gap since last vaccination exceeds 11 months (or the preset reminder cycle), outputs a due/overdue reminder and suggests re-vaccination. Helps pet hospitals automate client management, raise vaccination coverage and avoid missed doses. Application: hospital front-desk registration, boarding center check-in, pet insurance underwriting. Does NOT provide medical advice — only returns database-comparison results. | 当用户提供宠物面部图像或视频URL/文件时,触发本技能进行疫苗到期提醒分析;利用AI面部识别确认宠物个体身份,自动关联数据库中该宠物的疫苗接种记录(上次接种日期、疫苗类型)并与当前日期比对;若距离上次接种超过11个月(或预设的提醒周期),输出到期/逾期提醒,并建议尽快补种。该技能可帮助宠物医院实现自动化客户管理、提升疫苗接种率、防止漏种。应用场景:宠物医院前台登记、宠物寄养中心入住检查、宠物保险核保。仅输出基于数据库比对的结果,不提供医疗建议。
openclaw skills install smyx-vaccination-reminder-analysisTriggers when a user provides a pet facial image or video URL/file for vaccination reminder analysis; uses AI facial recognition to confirm pet identity, automatically queries the linked vaccination records (last dose date, vaccine type) from the hospital management database, and compares with current date. When the gap since last vaccination exceeds 11 months (or the preset reminder cycle), outputs a due/overdue reminder and suggests re-vaccination. Helps pet hospitals automate client management, raise vaccination coverage and avoid missed doses. Application: hospital front-desk registration, boarding center check-in, pet insurance underwriting. Does NOT provide medical advice — only returns database-comparison results.
当用户提供宠物面部图像或视频URL/文件时,触发本技能进行疫苗到期提醒分析;利用AI面部识别确认宠物个体身份,自动关联数据库中该宠物的疫苗接种记录(上次接种日期、疫苗类型)并与当前日期比对;若距离上次接种超过11个月(或预设的提醒周期),输出到期/逾期提醒,并建议尽快补种。该技能可帮助宠物医院实现自动化客户管理、提升疫苗接种率、防止漏种。应用场景:宠物医院前台登记、宠物寄养中心入住检查、宠物保险核保。仅输出基于数据库比对的结果,不提供医疗建议。
你是一个专业的宠物医疗管理AI。你的任务是接收一张宠物面部图像或视频,通过面部特征匹配识别宠物身份(个体ID),然后查询本地或云端数据库获取该宠物的最近一次疫苗接种记录(疫苗类型、接种日期、有效期类型/周期),并与当前日期进行比较。若距离上次接种超过建议的间隔周期(默认犬猫核心疫苗为11个月),则输出到期提醒。不要提供医疗建议,仅输出基于数据库比对的结果。
python -m scripts.smyx_vaccination_reminder_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_vaccination_reminder_analysis 处理面部输入(必须在技能根目录下运行脚本)--input: 本地宠物面部图像/视频文件路径--url: 网络面部图像/视频 URL 地址(API 服务自动下载)--pet-type: 宠物类型,可选值:cat/dog/other,默认 dog--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.smyx_vaccination_reminder_analysis --input /path/to/pet_face.jpg --pet-type dog --open-id your-open-id
# 分析网络宠物面部图像/视频(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.smyx_vaccination_reminder_analysis --url https://example.com/pet_face.mp4 --pet-type dog --open-id your-open-id
# 显示历史分析报告/疫苗提醒历史清单(自动触发关键词:查看历史疫苗报告、疫苗提醒清单等)
python -m scripts.smyx_vaccination_reminder_analysis --list --open-id your-open-id
# 输出精简报告
python -m scripts.smyx_vaccination_reminder_analysis --input pet_face.jpg --pet-type dog --open-id your-open-id --detail basic
# 保存结果到文件
python -m scripts.smyx_vaccination_reminder_analysis --input pet_face.jpg --pet-type dog --open-id your-open-id --output result.json