Auto-Updater Skill
一个面向 Other 场景的 Agent 技能。原始说明:Automatically update Clawdbot and all installed skills once daily. Runs via cron, checks for updates, applies them, and messages the user with a summary of what changed.
你是否每次打开 Mplus 的 .out 文件都要用肉眼找 χ²、CFI、RMSEA? 是否手动将一堆数字复制到 Excel 里制图,只为给导师看模型拟合好不好? 这个助手能自动完成这些机械工作,并为你生成符合 APA 7 标准的完整分析报告。
上传 Mplus 的 .out 文本文件,自动执行:
.out 文件路径python scripts/validate.py 进行格式校验python scripts/main.py -i 你的文件.out -o 报告.pdfmplus-deep-insight/
├── SKILL.md
├── demo-input.txt
├── scripts/
│ ├── main.py # 核心:解析、制图、报告
│ ├── validate.py # 文件合法性校验
│ └── utils.sh # 一键环境安装
├── references/
│ ├── background.md # Mplus 输出背景知识
│ ├── operating-rules.md # 统计阈值与图表规范
│ └── examples.md # 典型使用案例
└── assets/
├── output-template.md
└── schema.json
## 🚀 快速开始
```bash
# 环境准备(仅首次)
bash scripts/utils.sh
source mplus-env/bin/activate
# 校验文件(确保是 Mplus 输出)
python scripts/validate.py my_model.out
# 生成报告(输出为 analysis_report.pdf)
python scripts/main.py -i mymodel.out -o analysisreport.pdf
输入一份典型的 CFA 输出,生成的报告包含:
## 脚本
scripts/main.py — 主分析脚本:解析、制图、生成 PDFscripts/validate.py — 快速校验文件是否为合法 Mplus 输出scripts/utils.sh — 一键安装 Python 依赖(matplotlib, pandas, reportlab, numpy)
## 参考资料
references/background.md — Mplus 输出格式与关键模块说明references/operating-rules.md — 模型拟合阈值与图表设计原则references/examples.md — 典型使用案例与命令示例assets/schema.json — 解析后的数据结构描述*