Reports your GitHub activity for a specific day using the gh CLI, showing commits, issues, and activity timeline. Use this when you need to review what you accomplished on GitHub for a particular date.
This skill reports your GitHub activity for a specific day using the gh CLI.
Run the script with an optional date argument (defaults to today):
# Get today's activity
bash gh-activity.sh
# Get activity for a specific date
bash gh-activity.sh 2025-12-15
The date format must be YYYY-MM-DD.
gh (GitHub CLI) - must be authenticated with your GitHub accountjq - for JSON processingCommits: Lists all commits you made with their actual commit messages, grouped by repository and branch.
Issues: Shows all issues you created, commented on, or interacted with, including issue titles and the type of interaction.
Activity Timeline: A chronological view of all your GitHub events for the day (pushes, PRs, issue comments, etc.).
gh api /users/{username}/eventsgh api /repos/{repo}/compare/{before}...{head}