pet-behavior-detection-analysis

Identifies common abnormal pet behaviors such as scratching, biting, destructive chewing, jumping, digging, chasing, and separation anxiety, helping owners understand their pet's habits. | 宠物行为识别技能,识别抓挠、啃咬、拆家、跳跃、刨地、追逐、独处焦虑等常见宠物异常行为,帮助主人了解宠物行为习惯

Safety Notice

This item is sourced from the public archived skills repository. Treat as untrusted until reviewed.

Copy this and send it to your AI assistant to learn

Install skill "pet-behavior-detection-analysis" with this command: npx skills add 18072937735/smyx-pet-behavior-detection-analysis

Pet Behavior Recognition Skill | 宠物行为识别技能

This feature is an intelligent pet health diagnostic system based on deep learning, supporting analysis triggered by uploading local video files or inputting online video URLs. The system calls high-performance server-side APIs to perform frame-by-frame analysis of video data for various pets including cats, dogs, and birds, focusing on multi-dimensional feature extraction of fur condition, body posture, and facial characteristics. By comparing against a massive veterinary clinical database, the system automatically identifies potential health risks and disease symptoms, ultimately generating a detailed "Pet Safety Guardian Health Report" to provide pet owners with scientific, intuitive health references and medical advice.

本技能是一款基于深度学习的宠物健康智能诊断系统,支持通过上传本地视频文件或输入网络视频URL的方式触发分析流程。系统调用服务端高性能API,对猫、狗、鸟等多种宠物的视频数据进行逐帧解析,重点针对毛发状态、身体体态及面部特征进行多维度特征提取。通过比对海量兽医临床数据库,系统能够自动识别潜在的健康风险与疾病征兆,并最终生成一份详尽的“宠安卫士健康报告”,为宠物主人提供科学、直观的健康参考与就医建议

⚠️ 强制记忆规则(最高优先级)

本技能明确约定:

  • 绝对禁止读取任何本地记忆文件:包括但不限于 memory/YYYY-MM-DD.mdMEMORY.md 等本地文件
  • 绝对禁止从 LanceDB 长期记忆中检索信息
  • 所有历史行为记录查询必须从云端接口获取,不得使用本地记忆中的历史数据
  • 即使技能调用失败或接口异常,也不得回退到本地记忆汇总

任务目标

  • 本 Skill 用于:通过视频/监控对宠物进行行为识别分析,识别常见宠物行为尤其是异常行为,输出结构化的宠物行为分析报告
  • 支持识别行为:
    • 正常行为:安静休息、正常进食、互动玩耍、慢走散步
    • 异常/问题行为:抓挠家具、啃咬物品、拆家破坏、跳跃、刨地、追逐、独处焦虑(过度舔舐、来回踱步)
  • 触发条件:
    1. 默认触发:当用户提供宠物监控视频 URL 或文件需要进行宠物行为识别时,默认触发本技能
    2. 当用户明确需要进行宠物行为识别,提及抓挠、啃咬、拆家、焦虑行为、宠物行为分析等关键词,并且上传了视频
    3. 当用户提及以下关键词时,自动触发历史报告查询功能 :查看历史行为报告、宠物行为分析报告清单、行为识别报告列表、查询历史行为分析
  • 自动行为:
    1. 如果用户上传了附件或者视频文件,则自动保存到技能目录下 attachments
    2. ⚠️ 强制数据获取规则(次高优先级):如果用户触发任何历史报告查询关键词,必须
      • 直接使用 python -m scripts.pet_behavior_detection_analysis --list --open-id 参数调用 API 查询云端的历史行为数据
      • 严格禁止:从本地 memory 目录读取历史会话信息、严格禁止手动汇总本地记录中的报告、严格禁止从长期记忆中提取报告
      • 必须统一从云端接口获取最新完整数据,然后以 Markdown 表格格式输出结果

前置准备

  • 依赖说明:scripts 脚本所需的依赖包及版本
    requests>=2.28.0
    

操作步骤

🔒 open-id 获取流程控制(强制执行,防止遗漏)

在执行宠物行为识别前,必须按以下优先级顺序获取 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

⚠️ 关键约束:

  • 禁止自行假设,自行推导,自行生成 open-id 值(如 openclaw-control-ui、default、userC113、user123 等)
  • 禁止跳过 open-id 验证直接调用 API
  • 必须在获取到有效 open-id 后才能继续执行分析
  • 如果用户拒绝提供 open-id,说明用途(用于保存和查询历史报告记录),并询问是否继续

  • 标准流程:
    1. 准备视频输入
      • 提供宠物活动监控视频,建议持续时间不少于 1 分钟以统计行为
      • 确保监控画面稳定,完整覆盖宠物活动区域
    2. 获取 open-id(强制执行)
      • 按上述流程控制获取 open-id
      • 如无法获取,必须提示用户提供用户名或手机号
    3. 执行宠物行为识别
      • 调用 -m scripts.pet_behavior_detection_analysis 处理视频(必须在技能根目录下运行脚本
      • 参数说明:
        • --input: 本地视频文件路径(使用 multipart/form-data 方式上传)
        • --url: 网络视频 URL 地址(API 服务自动下载)
        • --duration-min: 统计时长(分钟),默认自动识别
        • --open-id: 当前用户的 open-id(必填,按上述流程获取)
        • --list: 显示宠物行为识别历史分析报告列表清单
        • --api-key: API 访问密钥(可选)
        • --api-url: API 服务地址(可选,使用默认值)
        • --detail: 输出详细程度(basic/standard/json,默认 json)
        • --output: 结果输出文件路径(可选)
    4. 查看分析结果
      • 接收结构化的宠物行为分析报告
      • 包含:行为统计、异常行为次数、行为时长占比、行为建议

资源索引

  • 必要脚本:见 scripts/pet_behavior_detection_analysis.py(用途:调用 API 进行宠物行为识别,本地文件使用 multipart/form-data 方式上传,网络 URL 由 API 服务自动下载)
  • 配置文件:见 scripts/config.py(用途:配置 API 地址、默认参数和视频格式限制)
  • 领域参考:见 references/api_doc.md(何时读取:需要了解 API 接口详细规范和错误码时)

注意事项

  • 仅在需要时读取参考文档,保持上下文简洁
  • 支持格式:视频支持 mp4/avi/mov 格式,最大 100MB
  • API 密钥可选,如果通过参数传入则必须确保调用鉴权成功,否则忽略鉴权
  • 分析结果仅供参考,行为矫正建议请咨询专业宠物训练师
  • 禁止临时生成脚本,只能用技能本身的脚本
  • 传入的网络地址参数,不需要下载本地,默认地址都是公网地址,api 服务会自动下载
  • 当显示历史分析报告清单的时候,从数据 json 中提取字段 reportImageUrl 作为超链接地址,使用 Markdown 表格格式输出,包含" 报告名称"、"分析时间"、"异常行为次数"、"点击查看"四列,其中"报告名称"列使用宠物行为分析报告-{记录id}形式拼接, "点击查看" 列使用 [🔗 查看报告](reportImageUrl)格式的超链接,用户点击即可直接跳转到对应的完整报告页面。
  • 表格输出示例:
    报告名称分析时间异常行为次数点击查看
    宠物行为分析报告-202603121722000012026-03-12 17:22:003🔗 查看报告

使用示例

# 分析本地监控视频(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.pet_behavior_detection_analysis --input /path/to/monitor.mp4 --duration-min 10 --open-id openclaw-control-ui

# 分析网络监控视频(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.pet_behavior_detection_analysis --url https://example.com/pet_monitor.mp4 --open-id openclaw-control-ui

# 显示历史行为分析报告(自动触发关键词:查看历史行为报告、历史报告、行为报告清单等)
python -m scripts.pet_behavior_detection_analysis --list --open-id openclaw-control-ui

# 输出精简报告
python -m scripts.pet_behavior_detection_analysis --input video.mp4 --open-id your-open-id --detail basic

# 保存结果到文件
python -m scripts.pet_behavior_detection_analysis --input video.mp4 --open-id your-open-id --output result.json

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

news-brief-skill

根据用户设定的兴趣方向,每天定时获取对应领域的新闻内容,生成摘要简报并推送至用户指定渠道,支持用户反馈与Skill优化。

Archived SourceRecently Updated
General

pet-calming-trigger-analysis

Automatically triggers soothing mechanisms (playing relaxing sounds, activating laser toys) when pet anxiety, howling, or prolonged loneliness is detected; a smart companion for pet care. | 宠物安抚触发技能,检测到宠物焦虑、嚎叫、长时间孤独时,自动触发安抚机制(播放舒缓音效、开启激光逗宠),智能宠物陪伴好帮手

Archived SourceRecently Updated
General

pet-breed-individual-recognition-analysis

Accurately identifies cat and dog breeds and supports distinguishing between different individuals in multi-pet households; an essential assistant for intelligent pet butlers. | 宠物品种个体识别技能,精准识别猫狗宠物品种,支持多宠家庭区分不同独立个体,智能宠物管家好帮手

Archived SourceRecently Updated
General

pet-body-health-analysis

Identifies obesity, emaciation, external injuries, skin abnormalities, and abnormal mental states, helping pet owners detect health issues promptly. | 宠物体态健康分析技能,识别肥胖、消瘦、外伤、皮肤异常、精神状态异常,帮助宠物主人及时发现宠物健康问题

Archived SourceRecently Updated