Auto-generate a daily standup digest from a project board
When to use: You want 'what moved yesterday, what's blocked, what's due today' without hand-scrolling the board.
Prerequisites
- monday API token — monday.com → avatar → Developers → My Access Tokens
- Board ID — URL contains /boards/<board_id>
Flow
-
Pull items updated in last 24hList items on board <id> where
updated_at > yesterday. Show name, status, owner, due date.✓ Copied→ Recent-activity list -
Segment by statusGroup these by status column value: Done / Working / Stuck / To Do. Show counts and who owns each Stuck item.✓ Copied→ Clear 4-bucket summary
-
Format the standupFormat a 10-line standup: moved-to-Done (count), started-Working (count), Stuck items with owner @-mentions, items due today.✓ Copied→ Copy-pasteable digest
Outcome: A standup digest you can paste into Slack or LINE in 30 seconds.
Pitfalls
- Filtering by
updated_atincludes column-value changes AND subitem updates — noisy — Add anactivity_logsquery filtered to status or owner changes only