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 @cush
workflow "Morning Standup" {
focus "Slack"
key "ctrl+k" clear-modifiers=#true
type "/standup"
key "Return"
wait 2000
shell "git log --since=yesterday --oneline | head" as="recap"
type "{{recap}}"
notify "standup posted"
}