# Standup Summary

> Generate daily standup summary from git + issues Use when this capability is needed.

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

---

# Standup Summary

Use **bash** (git + gh) to generate daily standup summaries.

## Collect Yesterday's Activity
```bash
# Commits in last 24h
git log --since="24 hours ago" --pretty=format:"- %s (%an, %ar)" --no-merges

# PRs merged yesterday
gh pr list -R OWNER/REPO --state merged --search "merged:>=$(date -d 'yesterday' +%Y-%m-%d)" --json number,title,author --limit 20

# Issues closed yesterday
gh issue list -R OWNER/REPO --state closed --search "closed:>=$(date -d 'yesterday' +%Y-%m-%d)" --json number,title,assignees --limit 20

# Issues in progress
gh issue list -R OWNER/REPO --label "in-progress" --json number,title,assignees --limit 20
```

## Format
Structure as:
- **Done**: what was completed
- **In Progress**: what's being worked on
- **Blocked**: any blockers

## Tips
- Run via cron_add as a daily job
- Post to Slack/Discord channel automatically
- Group by team member when in team mode

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/jholhewres) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-13 -->

