A simple tool to generate activity reports from GitHub, inspired by Elon Musk's "What did you get done this week?" question. Perfect for team leads and managers who want to track progress and achievements.
- Generate activity reports for individual GitHub users
- Create team activity summaries
- Export reports in Markdown format
- Easy sharing and review
- Automatic dependency management with uv
The script uses uv's inline script metadata for dependency management, so you only need:
- Install uv:
curl -LsSf https://astral.sh/uv/install.sh | sh
- Set up GitHub token:
export GITHUB_TOKEN=your_token_here
That's it! The script will automatically manage its own dependencies.
./whatdidyougetdone.py report username
Options:
--days N
: Look back N days (default: 7)--output FILE
: Specify output file
./whatdidyougetdone.py team username1 username2 username3
Options:
--days N
: Look back N days (default: 7)
# What did erikbjare get done?
Activity report for the last 7 days:
## ErikBjare/gptme
- 💻 feat: add RAG support
- 🔀 Implement context management (#59)
## ActivityWatch/activitywatch
- 💻 fix: improve error handling
- 💻 docs: update installation instructions
The script is designed to be standalone with its dependencies managed by uv. To develop:
- Clone the repository:
git clone https://github.com/yourusername/whatdidyougetdone.git
cd whatdidyougetdone
- Make the script executable:
chmod +x whatdidyougetdone.py
- Run directly:
./whatdidyougetdone.py
Dependencies will be automatically managed in an isolated environment.
MIT License