Generate a standup report from recent git activity. Use when the user says /standup, asks for a standup update, daily summary, what they worked on yesterday, or a status report based on recent commits. Triggers: standup, daily update, what did I do, status report, yesterday's work, daily summary.
Generate a concise standup report from recent git activity.
git config user.name and git config user.email.git log --author="<email>" --since="<date>" --pretty=format:"%h %s (%ar)" --allgit branch --sort=-committerdate --format="%(refname:short) %(committerdate:relative)" | head -10## Standup — YYYY-MM-DD
### Yesterday
- Worked on <feature/area>: <concise summary of commits>
- Fixed <bug>: <summary>
### Today
- Plan to continue <work in progress>
- [Suggested based on open branches and recent context]
### Blockers
- [Any merge conflicts, failing CI, or stale PRs detected]
gh CLI is available, include open PRs authored by the user.