A GitHub CLI extension that generates AI-powered standup reports using GitHub activity data. It uses GitHub Models for inference by default, and can also use GitHub Copilot as an alternative backend.
gh extension install sgoedecke/gh-standup
gh standupTo ensure the GitHub CLI can access your organization's data:
# Authenticate with GitHub CLI (if not already done)
gh auth login
# Authenticate with your organizations
gh auth refresh -h github.com -s read:org- GitHub CLI installed and authenticated
- Optional for
--provider copilot: GitHub Copilot CLI installed and authenticated
Generate a standup report for yesterday's activity:
gh standup# Look back multiple days
gh standup --days 3
# Generate report for specific user
gh standup --user octocat
# Generate report for specific repository
gh standup --repo owner/repo
# Use a different AI model
gh standup --model xai/grok-3-mini
# Use GitHub Copilot instead of GitHub Models
gh standup --provider copilot
# Use a specific GitHub Copilot model
gh standup --provider copilot --model gpt-4.1
# Choose your language (default: English)
gh standup --language englishContributions are welcome. In particular, I encourage tweaking of the prompt. Since I've extracted it into a file, you should be able to fork the repo and iterate on the prompt via the GitHub Models UI:
https://github.com/[your-username]/gh-standup/models/prompt/compare/main/internal/llm/standup.prompt.yml