---
name: standup-digest
description: "Summarise recent git activity into a concise standup update."
allowed-tools: ["Bash(git log:*)", "Read"]
window: "default: since yesterday"
---

# Standup Digest

## Musts

- Read recent history with `git log` over the requested window (default: since yesterday).
- Group commits into themes/features, not a raw one-line-per-commit dump.
- Structure the output as: **Done**, **In progress**, **Blockers**.
- If there's little or nothing to report, say so honestly rather than inflating it.

## Guidelines

- Keep it to a few bullets per section — readable aloud in about 30 seconds.
- Write for a teammate, not a machine: themes and outcomes, not commit hashes.
- Only list a blocker if it's real and actionable; don't manufacture one.

## Example

```
Done
- Shipped login rate-limiting (feat/auth)
- Fixed the CSV export encoding bug

In progress
- Refactoring the billing webhook handler

Blockers
- Waiting on staging Stripe keys to finish webhook testing
```
