Install
openclaw skills install @terrycarter1985/daily-standup-summarizerCondense scattered chat messages, notes, or logs into a concise structured daily standup summary. Use when: (1) asked to summarize a team's daily standup from raw chat logs or messages, (2) converting unstructured notes into a standup format (What I did / What I'll do / Blockers), (3) preparing a standup report from multiple sources of team activity, (4) generating a daily progress update for agile/standup meetings.
openclaw skills install @terrycarter1985/daily-standup-summarizerTransform raw chat messages, notes, or logs from team members into a clean, structured standup summary with three sections: Completed, Planned, and Blockers.
python3 scripts/extract_standup.py <input-file> [--format markdown|json]
Each item is categorized into:
| Section | Meaning |
|---|---|
| Completed | What was finished or made progress on since the last standup |
| Planned | What the person intends to work on next |
| Blockers | Anything blocking progress (needs input, waiting on someone, etc.) |
scripts/extract_standup.pyReads an input file and produces a structured standup summary.
# Markdown output (default)
python3 scripts/extract_standup.py chat_log.txt
# JSON output for programmatic use
python3 scripts/extract_standup.py chat_log.txt --format json