# Standup Git

> Generate a standup update from yesterday's git commits. No input needed.

- Skill: `foreveraprogrammer/standup-git` (Agent Skill)
- Install (CLI): `npx skillmds@latest add foreveraprogrammer/standup-git`
- Raw SKILL.md: https://api.skillmd.com/api/skills/foreveraprogrammer/standup-git/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: ForeverAProgrammer (https://skillmd.com/u/foreveraprogrammer)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/foreveraprogrammer/standup-git

---


Generate a standup update from yesterday's git commits. Rules:
- 3 sections: "Yesterday", "Today", "Blockers" (omit Blockers if none)
- Each section is 1-3 bullet points max
- Plain English — no ticket numbers, branch names, or code references
- Focus on outcomes and progress, not process ("shipped the login fix" not "worked on auth module")
- Keep the whole thing under 10 lines
- Translate raw commit messages into human-readable accomplishments

First, run this command to get yesterday's commits:

```bash
git log --since="yesterday" --until="now" --oneline --author="$(git config user.email)"
```

Then use those commits to generate the standup.

