Skip to main content
Every SlackHive agent needs its own Slack app. The app is how your agent gets a Slack identity (@handle), connects to your workspace, and receives messages. The good news: you don’t need to configure scopes or settings manually. The SlackHive wizard generates a complete app manifest — you just paste it into Slack and click a few buttons. This page walks through that process in detail, and covers troubleshooting if something goes wrong.

What you’re creating

Each Slack app gives your agent:
  • A bot user — the @handle your team @mentions in channels
  • Socket Mode — a persistent connection that receives messages in real time (no webhooks needed, no public URL required)
  • The right OAuth scopes — permissions to read messages, post replies, and add reactions

Step 1: Generate the manifest

When you’re on Step 2 of the agent creation wizard, click Generate Manifest. SlackHive creates a JSON manifest pre-configured for your agent with the correct name, scopes, and Socket Mode settings. Keep this manifest JSON ready — you’ll paste it into Slack in the next step.

Step 2: Create the Slack app

1

Open the Slack API console

Go to api.slack.com/apps in a new browser tab. Sign in with the Slack account that has permission to install apps in your workspace.
2

Start creating a new app

Click the Create New App button in the top right. A dialog will appear asking how you’d like to configure your app.
3

Choose From an app manifest

Select From an app manifest (not “From scratch”). This lets you paste the pre-configured manifest rather than setting everything up manually.
4

Select your workspace

Choose the Slack workspace where you want this agent to live. Click Next.
5

Paste the manifest

You’ll see a text editor. Delete any existing content, then paste the manifest JSON from the SlackHive wizard. Click Next.
6

Review and create

Slack will show you a summary of the app settings. Click Create to finish. You’ll land on the app’s settings page.

Step 3: Install to your workspace

Your app exists, but it’s not yet installed in your workspace.
1

Go to OAuth & Permissions

In the left sidebar of the Slack app settings page, click OAuth & Permissions.
2

Install the app

Click the Install to Workspace button near the top of the page.
3

Approve the permissions

Slack shows you a list of what the app will be allowed to do. Review it and click Allow.
Your bot user (@your-agent-name) now exists in your workspace.

Step 4: Collect your credentials

You need three values to connect the agent in SlackHive. Here’s exactly where to find each one.

Bot Token (xoxb-...)

  1. Go to OAuth & Permissions in the left sidebar
  2. Under OAuth Tokens for Your Workspace, find Bot User OAuth Token
  3. Copy it — it starts with xoxb-

App Token (xapp-...)

  1. Go to Basic Information in the left sidebar
  2. Scroll down to App-Level Tokens
  3. Click Generate Token and Scopes
  4. Give it a name (e.g. socket-mode)
  5. Click Add Scope and select connections:write
  6. Click Generate
  7. Copy the token — it starts with xapp-

Signing Secret

  1. Still on Basic Information
  2. Under App Credentials, find Signing Secret
  3. Click Show to reveal it, then copy the hex string

Step 5: Enter credentials in SlackHive

Go back to the SlackHive agent wizard (Step 3 — Credentials) and paste all three values:
FieldValue
Bot Tokenxoxb-...
App Tokenxapp-...
Signing SecretThe hex string from App Credentials
Click Verify Connection. SlackHive will test the connection before letting you proceed.

Required OAuth scopes

The generated manifest includes these bot token scopes. Here’s what each one is for:
ScopeWhy it’s needed
app_mentions:readReceive events when the bot is @mentioned in a channel
channels:historyRead messages in public channels (needed for thread context)
channels:readList channels and get channel info
chat:writePost messages and replies
groups:historyRead messages in private channels
groups:readList and access private channels
im:historyRead direct messages
im:readAccess DM channel info
im:writeSend direct messages
mpim:historyRead group DMs
reactions:writeAdd emoji reactions (used for “thinking” indicators while processing)
users:readLook up user display names (for memory and context)

Troubleshooting

The most common cause is Socket Mode not being enabled.
  1. Go to your Slack app settings
  2. Click Socket Mode in the left sidebar
  3. Make sure the toggle is On
  4. Go back to SlackHive and try verifying again
  • Check that you pasted the Bot Token (starts with xoxb-) in the Bot Token field, not the App Token
  • Make sure there are no extra spaces before or after the token
  • If you recently regenerated the token, make sure you copied the new one
The App Token must have the connections:write scope. If you created the token without adding this scope:
  1. Go to Basic InformationApp-Level Tokens
  2. Click on your token name
  3. Add the connections:write scope
  4. Regenerate the token and copy the new value
If you can’t find @your-agent-name in Slack after completing the wizard:
  1. Check that the app was installed: go to Slack app settings → OAuth & Permissions → the Install to Workspace button should show as already installed
  2. In Slack, type @ in a message box and start typing the agent’s name
  3. If it still doesn’t appear, try reinstalling the app from OAuth & Permissions
If the dashboard shows the agent as Active but it doesn’t respond to @mentions:
  1. Make sure you’ve invited the bot to the channel: /invite @your-agent-name
  2. Check the Logs tab on the agent — it will show if messages are being received
  3. Verify the agent doesn’t have channel restrictions set (Overview tab → Allowed Channels)

After setup

Once credentials are verified, the runner connects the agent to Slack automatically. The agent status changes to Active in the dashboard. Invite the bot to a channel and start a conversation:
/invite @your-agent-name
@your-agent-name hello!
Each agent can only be installed in one Slack workspace. If you need agents in multiple workspaces, create separate Slack apps for each workspace and create separate agent entries in SlackHive.