Agent Skills
› MeisnerDan/mission-control
› standup
standup
GitHub该技能用于生成每日站会摘要。通过读取上下文、任务状态、Git提交日志及目标进度,汇总昨日完成工作、今日进行中的任务与下一步行动、超过三天的阻塞项以及里程碑完成情况。
Trigger Scenarios
用户要求生成每日站会报告
需要总结昨日工作进展和今日计划
查询项目当前任务阻塞情况
Install
npx skills add MeisnerDan/mission-control --skill standup -g -y
SKILL.md
Frontmatter
{
"name": "standup",
"description": "Generate daily standup summary with in-progress tasks, git activity, and goal progress",
"disable-model-invocation": true
}
Generate my daily standup by doing the following:
- Read
mission-control/data/ai-context.mdfor a quick snapshot of current state - Read
mission-control/data/tasks.jsonand find tasks with kanban"in-progress" - Run
git log --oneline --since="yesterday" --allacross all project directories - Read
mission-control/data/goals.jsonto check milestone progress
Format the output as:
Yesterday
- [List completed work from git commits]
Today
- [List in-progress tasks and their next daily actions]
Blockers
- [Any tasks marked important+urgent that have been in-progress for more than 3 days]
Goal Progress
- [Summary of milestone completion percentages]
Version History
- 2b8c402 Current 2026-07-05 15:42


