# Daily

> Daily standup summary

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

---


Generate a daily standup summary for the project.

## Steps

1. Check git log for recent commits
2. Check for open PRs
3. Check for failing tests
4. Check for build status
5. Summarize work done and next steps

## Commands

```bash
# Recent commits
git log --oneline -10 --since="yesterday"

# Current branch status
git status

# Open PRs (if gh available)
gh pr list --state open
```

## Output Format

```markdown
## Daily Standup - [Date]

### Yesterday
- [Completed work from commits]

### Today
- [Planned work based on context]

### Blockers
- [Any issues found]

### Notes
- [Build status, test status, etc.]
```

