Morning Standup
Wakes the editor, fires a Slack slash-command, waits for the standup thread to open, and drops a formatted recap from yesterday's commits.
- focus
- ⌘K
- /standup
- ↵
- wait 2s
- git log
- paste recap
- done
"kdl-com">// Morning Standup — by @marsha_r
workflow "Morning Standup" {
focus app="Slack"
key "Super+k"
type "/standup"
key "Return"
wait 2.0
shell "git log --since=yesterday --oneline | head"
type from="$stdout"
notify "standup posted"
}