Agent Skills
› Zafer-Liu/Data-Analysis-Agent
› prophet
prophet
GitHub利用Prophet模型进行时间序列预测,分解趋势与季节性。需识别时间列、目标及节假日,验证数据频率与异常,执行预测并可视化结果,提示结构突变。
Trigger Scenarios
需要进行时间序列预测
需要分解数据的趋势和季节性成分
Install
npx skills add Zafer-Liu/Data-Analysis-Agent --skill prophet -g -y
SKILL.md
Frontmatter
{
"icon": "🔮",
"name": "prophet",
"description": "使用 Prophet 分解趋势季节性并预测(forecast 时间序列预测)",
"allowedTools": [
"get_schema",
"query_data",
"run_analysis",
"generate_chart"
]
}
Prophet 预测
确认时间列、目标、频率、预测期及已知节假日。用时间切分验证,展示趋势、季节性、预测区间和误差;异常点或结构突变应单独提示。
Tool routing
- Use
get_schemato identify the time column, target column, known holiday or event fields, and source table. - Use
query_dataonly to verify frequency, gaps, outliers, and enough history for trend and seasonality. - Use
run_analysiswithanalysis_name="Time_Series_Prophet"for the actual forecast computation. - Use
generate_charton forecast, trend, or seasonality 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/Time_Series_Prophet/analyze.py - Chart implementation:
Function/Charts_generation/chart_generate.py
Version History
- d6a2c3e Current 2026-07-24 12:12


