Summary
Build a bot integration that automatically posts standup notes to Slack or Microsoft Teams channels on a configurable schedule.
Motivation
- Engineers forget to post standups — automation solves this
- Consistent format across the team
- Historical standup archive in the channel
Proposed Features
Technical Options
- Webhook-based (simplest): cron job runs
scan.sh + formats + POSTs to webhook
- Slack App: richer UX with slash commands, but more setup
- GitHub Action: runs on schedule, posts via webhook
Configuration Example
# .engineer-brain/notifications.yaml
standup:
enabled: true
channel: "#team-devtools-standup"
schedule: "0 9 * * 1-5" # 9 AM weekdays
platform: slack
webhook_url_env: SLACK_STANDUP_WEBHOOK
draft_mode: true
Summary
Build a bot integration that automatically posts standup notes to Slack or Microsoft Teams channels on a configurable schedule.
Motivation
Proposed Features
Technical Options
scan.sh+ formats + POSTs to webhookConfiguration Example