Getting started
Getting started
This guide walks through initial setup and your first interaction with the CLI.
Step 1: Create a Slack app
The easiest way to get started is to create a Slack app with all required scopes pre-configured:
slackbuzz app createThis creates a Slack app manifest, opens the Slack app creation page, and prompts you to paste the OAuth tokens after installing the app to your workspace.
Alternative: log in with existing tokens
If you already have bot and user tokens from an existing Slack app:
slackbuzz auth loginYou will be prompted to paste a bot token (xoxb-...) and optionally a user token (xoxp-...).
CI / non-interactive mode
Pipe a token via stdin:
echo "$SLACK_BOT_TOKEN" | slackbuzz auth login --with-tokenCheck authentication status
slackbuzz auth statusStep 2: Check your inbox
See what needs your attention — mentions, DMs, and threads:
slackbuzz activityFilter by type:
slackbuzz activity --dms # Direct messages onlyslackbuzz activity --threads # Threads you're mentioned inslackbuzz activity --all # Everything combinedThe activity view auto-detects ClickUp task IDs and GitHub PR URLs in messages and shows actionable hints.
Step 3: Send a message
slackbuzz message send #general "Hello from the terminal!"Reply to a thread:
slackbuzz thread #general 1706000000.000000 "Looks good, merging now"React to a message:
slackbuzz react #general 1706000000.000000 :white_check_mark:Edit or delete a message:
slackbuzz message edit #general 1706000000.000000 "corrected text"slackbuzz message delete #general 1706000000.000000 --confirmStep 4: Set your status
slackbuzz status set "Coding" :computer: --until 2hView your current status:
slackbuzz statusClear it:
slackbuzz status clearStep 5: Get a cross-tool briefing
If you have the ClickUp CLI and GitHub CLI installed, get a combined view of everything across tools:
slackbuzz digestThis shows Slack mentions, ClickUp tasks assigned to you, and GitHub PRs needing your review.
Next steps
- See the full Command reference for all available commands and flags.
- Learn about Cross-tool integration to combine Slack, ClickUp, and GitHub workflows.
- Read Using with AI agents for integrating the CLI with Claude Code, Copilot, and Cursor.