Agent Skills
› Zafer-Liu/Data-Analysis-Agent
› kmeans
kmeans
GitHub该技能用于执行K-Means聚类分析,对业务对象进行客户分群。流程包括确认实体特征、数据清洗标准化、计算聚类结果及生成可视化图表,最终输出簇画像与质量报告。
触发场景
需要对企业客户或用户进行分群画像
要求对数值型业务数据进行无监督聚类分析
安装
npx skills add Zafer-Liu/Data-Analysis-Agent --skill kmeans -g -y
SKILL.md
Frontmatter
{
"icon": "🔵",
"name": "kmeans",
"description": "使用 K-Means 对业务对象进行聚类画像(clustering 客户分群)",
"allowedTools": [
"get_schema",
"query_data",
"run_analysis",
"generate_chart"
]
}
K-Means 聚类
确认聚类实体与特征,处理缺失值并标准化数值变量。比较合理的 K 值,报告聚类质量、各簇规模、中心特征和业务画像,并说明异常点及稳定性限制。
Tool routing
- Use
get_schemato identify the entity key, candidate numeric features, and source table. - Use
query_datato verify feature availability, missingness, and scale before modeling. - Use
run_analysiswithanalysis_name="K_Means"for the clustering computation. - Use
generate_charton cluster profiles, elbow output, or label result tables afterrun_analysissucceeds.
Implementation reference
- Tool entry:
agent/tools/business/data.py::_tool_run_analysis - Analysis registry:
Function/Analyze/registry.py - Analysis implementation:
Function/Analyze/K-Means/analyze.py - Chart implementation:
Function/Charts_generation/chart_generate.py
版本历史
- d6a2c3e 当前 2026-07-24 12:12


