Posts a daily standup message to a Slack channel and replies in the thread for updates.
Bot setup instructions
- Go to api.slack.com/apps and click Create New App > t; From an app manifest
- Select your workspace
- Paste the contents of
manifest.yamland create the app - Go to OAuth & Permissionsions > t; Install to Workspace and authorize
- Copy the Bot User OAuth Token (
xoxb-...) for your.env - If posting to a private channel, invite the bot:
/invite @Standup Bot
# Install dependencies
pnpm install
# Copy the example env and fill in your values
cp .env.example .env
# Run the bot
pnpm start
# Run in dev mode (auto-restart on changes)
pnpm dev
# Run tests
pnpm test