Generate weekly work summary from git activity
/plugin marketplace add gopherguides/gopher-ai/plugin install productivity@gopher-ai[weeks-back]haiku## Context - Current git user: !`git config user.name` - This week's commits: !`git log --author="$(git config user.name)" --since="last monday" --format="%h %s" --all 2>/dev/null | head -15` - Week start: !`date -v-monday +%Y-%m-%d 2>/dev/null || date -d "last monday" +%Y-%m-%d 2>/dev/null || echo "Monday"` **If `$ARGUMENTS` is empty or not provided:** Generate a summary of this week's git activity. **Usage:** `/weekly-summary [weeks-back]` **Examples:** - `/weekly-summary` - Current week (since Monday) - `/weekly-summary 1` - Last week - `/weekly-summary 2` - Two weeks ago **Workfl...