用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Zafer-Liu/Data-Analysis-Agent --skill winsorize命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | winsorize |
| description | 对极端值执行缩尾处理并验证影响(outlier 缩尾) |
| icon | ✂️ |
| allowedTools | ["get_schema","profile_data","clean_data","query_data"] |
识别目标数值字段和异常分布,说明上下界规则后再缩尾。不得默认覆盖原始数据;比较处理前后的分布、均值和关键指标,并记录边界与受影响行数。
get_schema to identify the target table and candidate numeric columns.profile_data to quantify distribution tails before modification.clean_data with the winsorize operation only after the percentile bounds are clear.query_data after cleaning to verify clipped values, row counts, and key metric changes.agent/tools/business/data.py::_tool_profile_data, agent/tools/business/data.py::_tool_clean_dataFunction/Clean/data_profile.pyFunction/Clean/winsorize.py