--- name: whatidid description: "Generate a daily analytics report of what GitHub Copilot helped accomplish. Shows tasks completed, human effort equivalent, token usage, and a narrative story. Sends a formatted email summary. Use when the user asks about their daily activity, what Copilot helped with today, or wants a digest of the day's work." --- # What I Did (Copilot) — Impact Report Generator Run the following from the repo root to generate and email today's activity report: ```bash python whatidid.py --email user@example.com ``` If the user asks for a specific date range, use: ```bash python whatidid.py --date 30D --email user@example.com ``` After running, tell the user: - How many sessions and projects were found - The headline and primary focus identified - The total human effort estimate vs elapsed time (leverage ratio) - That the email has been sent (or HTML saved) The report is always opened in the browser automatically — no need to add --html. If there are no sessions for the date, explain that Copilot session data is stored in the user's Copilot session-state directory (for example, `~/.copilot/session-state/` on macOS/Linux or `%USERPROFILE%\.copilot\session-state\` on Windows) and suggest checking the date. For full methodology, see [effort-estimation-methodology.md](../../docs/effort-estimation-methodology.md).