spark-recipe-weekly-digest

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Recipe: Weekly Digest

方案:每周摘要

Generate a weekly summary covering calendar events, unread email by category, and team status.
Prerequisite: Read the
use-spark
base skill for command reference and filter syntax.
Access level required: read-only.
生成一份涵盖日历事件、按分类划分的未读邮件以及团队状态的每周摘要。
前提条件: 阅读
use-spark
基础技能文档以获取命令参考和过滤语法。
所需访问权限: 只读。

Steps

步骤

Step 1: This week's calendar

步骤1:本周日历

bash
spark events --week
List all meetings and events for the week.
bash
spark events --week
列出本周所有会议和事件。

Step 2: Unread email breakdown by category

步骤2:按分类划分的未读邮件明细

bash
spark emails Inbox --filter "category:priority is:unread newer_than:7d"
spark emails Inbox --filter "category:personal is:unread newer_than:7d"
spark emails Inbox --filter "category:notification is:unread newer_than:7d"
spark emails Inbox --filter "category:newsletter newer_than:7d"
Count items in each category for the summary.
bash
spark emails Inbox --filter "category:priority is:unread newer_than:7d"
spark emails Inbox --filter "category:personal is:unread newer_than:7d"
spark emails Inbox --filter "category:notification is:unread newer_than:7d"
spark emails Inbox --filter "category:newsletter newer_than:7d"
统计每个分类中的邮件数量用于总结。

Step 3: Team status

步骤3:团队状态

bash
spark team "Team Name"
Review assignment summary - open items per member, unassigned work.
bash
spark team "Team Name"
查看任务分配摘要 - 每位成员的未完成项、未分配工作。

Step 4: Recent meeting transcripts

步骤4:近期会议记录

bash
spark meetings --filter "newer_than:7d"
List meetings that have transcripts available for review.
bash
spark meetings --filter "newer_than:7d"
列出有可查看会议记录的会议。

Step 5: Present the digest

步骤5:呈现摘要

Summarize for the user:
  • Calendar: N events this week (highlight important ones)
  • Email: unread counts by category (people: M, priority: K, notifications: L, newsletters: J)
  • Team: open assignments, any bottlenecks
  • Meetings: transcripts available for review
为用户总结:
  • 日历: 本周共N个事件(突出重要事件)
  • 邮件: 各分类未读数量(联系人:M,优先级:K,通知:L,通讯简报:J)
  • 团队: 未完成任务、任何瓶颈问题
  • 会议: 可查看会议记录

Tips

小贴士

  • Run this recipe on Monday morning for a forward-looking view, or Friday afternoon for a retrospective.
  • Skip the team step if the user doesn't work with teams.
  • For the email breakdown, just report counts - don't list individual emails unless asked.
  • If the user has multiple accounts, run
    spark accounts
    first and report per-account.
  • Combine with
    recipe-inbox-by-category
    to process the most active categories first.
  • 周一上午运行此方案可获得前瞻性视角,周五下午运行则可进行回顾总结。
  • 如果用户不参与团队工作,可跳过团队步骤。
  • 邮件明细只需报告数量,除非用户要求,否则无需列出单个邮件。
  • 如果用户有多个账户,先运行
    spark accounts
    并按账户分别报告。
  • 结合
    recipe-inbox-by-category
    可优先处理最活跃的分类。