/standup
Compile a standup update by:
- •Get the GitHub username via
gh api user - •Determine the time window. The user is in PST (UTC-8). The window covers yesterday 00:00 PST through the current minute today. Convert yesterday 00:00 PST to UTC for the
--merged-atquery (i.e. yesterday 08:00 UTC). - •Search for PRs in that window:
- •Authored by the user:
gh search prs --author=<username> --merged --merged-at="<yesterday>.." - •Involved (reviewed/merged by user, including
create-inc-service-accountPRs):gh search prs --merged --merged-at="<yesterday>.." --involves=<username> - •Deduplicate results across both queries.
- •Authored by the user:
- •Fetch PR bodies with
gh pr viewfor each PR to get context - •Compile a concise standup summary grouped by theme, not individual PRs. Mention PR numbers inline as references. Keep it short — a few bullet points, not a wall of text.