Agent Skills
› Zafer-Liu/Data-Analysis-Agent
› report
report
GitHub该技能用于规划结构化业务分析报告。通过查询数据验证指标,生成包含目标、受众等要素的报告大纲供用户确认,不直接输出最终文件,确保流程受控且JSON有效。
Trigger Scenarios
需要生成业务分析报告
请求报告大纲规划
Install
npx skills add Zafer-Liu/Data-Analysis-Agent --skill report -g -y
SKILL.md
Frontmatter
{
"icon": "📄",
"name": "report",
"description": "规划结构化业务分析报告(report 报告生成)",
"allowedTools": [
"get_schema",
"query_data",
"propose_report_outline"
]
}
报告规划
基于真实数据形成目标、受众、结论、证据和建议结构,引用关键指标与表。先提交报告大纲供确认,不直接生成最终文件;确认后由受控输出流程执行。
Tool routing
- Use
get_schemato identify available source tables, metrics, dimensions, and artifacts. - Use
query_dataonly to validate the numbers and evidence needed for the outline. - Use
propose_report_outlineto create the report structure. Do not export the final report in this skill turn. - After user confirmation, the controlled report command flow may call the export tool.
- Keep the proposal compact: 4–6 sections and no more than 120 Chinese characters per section body. Submit an outline, not the complete report正文, so the tool-call JSON remains bounded and valid.
Implementation reference
- Proposal tool entry:
agent/tools/business/export.py::_tool_propose_report_outline - Export tool entry:
agent/tools/business/export.py::_tool_export_report - Report implementation:
Function/Output/report_export.py
Version History
- d6a2c3e Current 2026-07-24 12:12


