This Autism Spectrum Disorder (ASD) behavior analysis tool is an intelligent, specialized video analysis system designed
specifically for children. Based on a deep interpretation of core ASD behavioral characteristics, it leverages advanced
AI technology to meticulously analyze video footage of children during daily interactions or specific scenarios. The
system aims to precisely identify potential ASD traits in areas such as social communication, interaction patterns,
behavioral modalities, and restricted interests.
The system automatically generates structured analysis reports that clearly present findings and offers targeted early
intervention suggestions and strategic references. Whether for parents, educators, or professionals seeking preliminary
ASD screening, developmental behavioral assessments, or analysis of developmental status, this tool provides scientific
and objective insights, offering robust support for early detection and evidence-based intervention.
本孤独症谱系障碍(ASD)行为分析工具是一款专为儿童设计的智能化专项视频分析系统。它基于对孤独症核心行为特征的深度解析,通过先进的AI技术对儿童在日常互动或特定情境下的视频资料进行精细化分析,旨在精准识别其在社交沟通、互动模式、行为方式及兴趣范围等方面可能存在的孤独症谱系障碍特征。系统能够自动生成结构化的分析报告,清晰呈现分析结果,并据此提供具有针对性的早期干预建议与策略参考。无论是家长、教育工作者还是相关专业人士,在需要进行孤独症初步筛查、发展行为评估、ASD行为模式分析或儿童发育状况评估时,均可借助此工具获得科学、客观的洞察,从而为儿童的早期发现与科学干预提供有力支持
本技能明确约定:
memory/YYYY-MM-DD.md、MEMORY.md 等本地文件:查看历史孤独症报告、孤独症筛查报告清单、自闭症分析报告列表、显示所有孤独症报告,查询孤独症分析报告
显示所有自闭症筛查报告"、"
查看历史报告"等),必须:
python -m scripts.autism_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.autism_analysis 处理视频文件(必须在技能根目录下运行脚本)--input: 本地视频文件路径--url: 网络视频 URL 地址(API 服务自动下载)--analysis-type: 分析类型,可选值:screening/social/behavior/comprehensive,默认 comprehensive(全面筛查)--open-id: 当前用户的 open-id(必填,按上述流程获取)--list: 显示孤独症分析历史报告列表清单(可以输入起始日期参数过滤数据范围)--api-key: API 访问密钥(可选)--api-url: API 服务地址(可选,使用默认值)--detail: 输出详细程度(basic/standard/json,默认 json)--output: 结果输出文件路径(可选)URL 由 API 服务自动下载)
表格格式输出,包含"
报告名称"、"分析类型"、"分析时间"、"点击查看"四列,其中"报告名称"列使用孤独症分析报告-{记录id}形式拼接, "点击查看"列使用
格式的超链接,用户点击即可直接跳转到对应的完整报告页面。
| 报告名称 | 分析类型 | 分析时间 | 点击查看 |
|----------|----------|----------|----------|
| 孤独症分析报告-20260312172200001 | 全面筛查 | 2026-03-12 17:22:
00 | 🔗 查看报告 |
# 全面孤独症筛查分析(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.autism_analysis --input /path/to/video.mp4 --analysis-type comprehensive --open-id openclaw-control-ui
# 社交互动专项分析(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.autism_analysis --url https://example.com/video.mp4 --analysis-type social --open-id openclaw-control-ui
# 重复刻板行为专项分析(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.autism_analysis --input /path/to/video.mp4 --analysis-type behavior --open-id openclaw-control-ui
# 显示历史分析报告/显示分析报告清单列表/显示历史孤独症报告(自动触发关键词:查看历史孤独症报告、历史报告、孤独症报告清单等)
python -m scripts.autism_analysis --list --open-id openclaw-control-ui
# 输出精简报告
python -m scripts.autism_analysis --input video.mp4 --analysis-type comprehensive --open-id your-open-id --detail basic
# 保存结果到文件
python -m scripts.autism_analysis --input video.mp4 --analysis-type screening --open-id your-open-id --output result.json
共 1 个版本