Agent Skills
› Zafer-Liu/Data-Analysis-Agent
› export
export
GitHub用于规划并确认Excel数据导出方案。通过查询Schema和数据验证范围,生成包含字段、筛选条件及工作表组织的导出提案,待用户确认后由受控流程写入文件,确保导出的准确性与可控性。
触发场景
需要导出业务数据到Excel
规划数据导出格式与内容
安装
npx skills add Zafer-Liu/Data-Analysis-Agent --skill export -g -y
SKILL.md
Frontmatter
{
"icon": "📥",
"name": "export",
"description": "规划并确认 Excel 数据导出(export 导出)",
"allowedTools": [
"get_schema",
"query_data",
"propose_excel_export"
]
}
Excel 导出
检查数据范围、字段、筛选条件和工作表组织,生成可确认的导出方案。先提案,不直接生成文件;用户确认后由受控导出流程写入 outputs。
Tool routing
- Use
get_schemato identify exportable tables and fields. - Use
query_dataonly to validate row counts, filters, or preview values needed for the export plan. - Use
propose_excel_exportto create a confirmation-ready export plan. Do not write files in this skill turn. - After user confirmation, the controlled export command flow writes the final workbook.
Implementation reference
- Proposal tool entry:
agent/tools/business/export.py::_tool_propose_excel_export - Export tool entry:
agent/tools/business/export.py::_tool_export_excel - Export implementation:
Function/Output/excel_export.py
版本历史
- d6a2c3e 当前 2026-07-24 12:12


