⚙️ 自动化 📖 官方

工作流程优化

分析现有工作流程并创建优化的自动化脚本

★★★ 高级 40 min 2025年1月13日
📋

使用场景

重复性的工作流程不仅浪费时间,还容易引入人为错误。Cowork 可以分析你记录的现有流程,创建自动化脚本来简化操作,大幅提升工作效率。

💬

提示词

I have a documented workflow in ~/Workflows/daily_report.md that describes my daily report generation process. Currently it involves:

1. Export data from 3 Google Sheets
2. Download logs from server
3. Process CSVs to extract KPIs
4. Generate charts
5. Compile into Word document
6. Email to stakeholders

Please:
1. Analyze this workflow for automation opportunities
2. Create a single script that automates everything possible
3. Identify steps that still need manual intervention
4. Estimate time savings
5. Create the automation at ~/Scripts/daily_report/

预期结果

Claude 会: 1. 分析工作流程,评估每个步骤的耗时和可自动化程度 2. 生成详细的分析报告(通常可节省 90% 以上时间) 3. 创建完整的 Python 自动化脚本 4. 指出自动化的限制条件(如需要 API 凭证等)

💡

使用技巧

  • 首先将你的工作流程记录在文档中
  • 在生产环境使用前,请用测试数据验证脚本的正确性
  • 建议保留关键步骤的人工确认环节
  • 将自动化脚本与定时任务结合使用,可以实现完全无人值守