Generate a daily standup summary for the project.
Steps
- •Check git log for recent commits
- •Check for open PRs
- •Check for failing tests
- •Check for build status
- •Summarize work done and next steps
Commands
bash
# Recent commits git log --oneline -10 --since="yesterday" # Current branch status git status # Open PRs (if gh available) gh pr list --state open
Output Format
markdown
## Daily Standup - [Date] ### Yesterday - [Completed work from commits] ### Today - [Planned work based on context] ### Blockers - [Any issues found] ### Notes - [Build status, test status, etc.]