spark-recipe-delegate-and-track
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseRecipe: Delegate and Track
方案:委派与跟踪
Assign emails to teammates with context, set due dates, and track delegation status to completion.
Prerequisite: Read the base skill for command reference and filter syntax.
use-sparkAccess level required: triage.
为队友分配带上下文的邮件,设置截止日期,并跟踪委派状态直至完成。
前提条件: 阅读基础技能文档以了解命令参考和过滤语法。
use-spark所需权限级别: triage。
Steps
步骤
Step 1: Review the team
步骤1:查看团队信息
bash
spark team "Team Name"See who's available and their current assignment load.
bash
spark team "Team Name"查看团队成员的可用情况及当前任务负载。
Step 2: Identify items to delegate
步骤2:确定待委派的邮件
bash
spark emails Inbox --filter "category:personal is:unread"Or for shared inbox items:
bash
spark emails shared@company.com:Inbox --filter "assigned_to:unassigned"bash
spark emails Inbox --filter "category:personal is:unread"针对共享收件箱的邮件:
bash
spark emails shared@company.com:Inbox --filter "assigned_to:unassigned"Step 3: Read before delegating
步骤3:委派前查看邮件内容
bash
spark thread <id>Understand the context so you can write a meaningful assignment comment.
bash
spark thread <id>了解邮件上下文,以便撰写有意义的委派备注。
Step 4: Assign with context
步骤4:带上下文委派邮件
bash
spark action assign <id> --assignee bob@co.com --comment "Customer needs API key rotation, your area of expertise"For time-sensitive items, add a due date:
bash
spark action assign <id> --assignee bob@co.com --date 2026-04-10 --comment "Needs response by Friday"bash
spark action assign <id> --assignee bob@co.com --comment "Customer needs API key rotation, your area of expertise"对于时间敏感的邮件,添加截止日期:
bash
spark action assign <id> --assignee bob@co.com --date 2026-04-10 --comment "Needs response by Friday"Step 5: Track your delegations
步骤5:跟踪委派任务
bash
spark emails --filter "assigned_by:me"Review the list of items you've delegated. Check progress periodically.
bash
spark emails --filter "assigned_by:me"查看你已委派的任务列表,并定期检查进度。
Step 6: Complete or reopen
步骤6:完成或重新开启委派任务
When a delegation is done:
bash
spark action delegationComplete <id>If more work is needed:
bash
spark action delegationReopen <id>当委派任务完成时:
bash
spark action delegationComplete <id>若还需进一步处理:
bash
spark action delegationReopen <id>Tips
小贴士
- Always include a when assigning - it saves the assignee from having to re-read the entire thread.
--comment - Check for the assignment summary before delegating to avoid overloading one person.
spark team - Use for items with real deadlines - it creates visibility for the assignee.
--date - Run daily to monitor your delegation pipeline.
spark emails --filter "assigned_by:me" - Complete delegations promptly to keep the tracking view clean.
- 委派时务必添加参数——这能让被委派者无需重新阅读整个邮件线程。
--comment - 委派前查看的任务汇总,避免让单个成员任务过载。
spark team - 对有实际截止日期的任务使用参数——这能让被委派者清晰看到时间要求。
--date - 每日运行以监控你的委派任务流程。
spark emails --filter "assigned_by:me" - 及时标记委派任务完成,保持跟踪视图整洁。