| name | daily-summary |
| description | Morning summary — tasks, PRs, priorities for today |
Daily Summary
Generate a morning briefing with today's priorities, open PRs, and pending tasks.
When to use
- "Good morning"
- "What should I do today?"
- "Morning summary"
- "Daily briefing"
How to execute
Step 1: Check open PRs
gh pr list --search "review-requested:@me"
gh pr list --author @me
Step 2: Check recent issues
gh issue list --assignee @me --state open
Step 3: Check git status
git status
git log --oneline --since="yesterday" --author="$(git config user.name)"
Step 4: Generate summary
Format the output as:
## Today's Summary
### PRs Needing Review
- #42 "Add caching layer" by @teammate (opened 2 days ago)
### Your Open PRs
- #38 "Fix auth bug" — 1 approval, waiting on CI
### Assigned Issues
- #55 "Implement dark mode" — priority: high
- #60 "Update API docs" — priority: low
### Yesterday's Progress
- 3 commits on feature/dark-mode
### Suggested Priority
1. Review #42 (blocking teammate)
2. Continue #55 (high priority)
3. Check CI on #38
Customization
Adapt this skill to your workflow:
- Add calendar integration (check today's meetings)
- Add Slack/email check (unread messages)
- Add deployment status (any failed deploys?)
- Add sprint progress (how many story points left?)
Related skills
project-notes — load context for today's work