用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Zafer-Liu/Data-Analysis-Agent --skill inset命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | inset |
| description | 诊断并处理缺失值(missing value 缺失值处理) |
| icon | 🩹 |
| allowedTools | ["get_schema","profile_data","clean_data","query_data"] |
先量化字段和行级缺失,判断缺失机制及业务含义,再选择删除、常数、统计量或分组插补。修改前说明影响,保留可追溯结果,并在处理后验证缺失率和分布变化。
get_schema to identify tables, nullable fields, and candidate columns.profile_data to quantify missingness before any modification.clean_data with the appropriate missing-value operation only when the user intent is clear.query_data after cleaning to verify row counts, remaining nulls, and distribution changes.agent/tools/business/data.py::_tool_profile_data, agent/tools/business/data.py::_tool_clean_dataFunction/Clean/data_profile.pyFunction/Clean/missing_handler.py