Documentation Index
Fetch the complete documentation index at: https://slackhive.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Three tools, one flow
When an agent doesn’t behave as expected, SlackHive gives you three places to look. Each one answers a different question:| Tool | Where | Answers |
|---|---|---|
| Logs | Agent → Logs tab | What did the agent actually do, step by step? |
| Activity | Sidebar → Activity | Is the agent currently running? Did it error? |
| Version History | Agent → History tab | Did a recent change break something? |
Step 1 — Check Activity
Go to Activity in the sidebar. This is the live kanban of every task your agents are running or have recently completed.- Active — the agent is mid-run right now
- Completed — finished successfully
- Errors — something went wrong
- Was it a Claude error (model timeout, rate limit)?
- Was it an MCP failure (tool server down, credentials expired)?
- Was it a Slack API failure (bot not in channel, token expired)?
Step 2 — Read the Logs
Activity gives you the error. Logs give you the full story. Open the agent → Logs tab. Each conversation is an expandable trace with:- The incoming message
- Every tool call the agent made (MCP, memory read, skill invocation)
- The agent’s reasoning at each step
- The final response
| Symptom | Likely cause |
|---|---|
| Agent responds but gives wrong answer | Missing context - check wiki and memory |
| Agent stops mid-run | MCP server error or timeout |
| Agent says “I don’t have access to that” | Tool not assigned to the agent |
| No trace at all | Agent wasn’t running when the message arrived |
Step 3 — Roll Back with Version History
If the agent was working last week and broke after an edit, use Version History. Open the agent → History tab. Every save is a snapshot - full diff of what changed: system prompt, skills, memory, tool assignments. Find the last version that worked, click Restore, and you’re back to the known-good state in one click. You can then compare the two versions side by side to see exactly what the breaking change was.Common issues and fixes
Agent not responding in Slack
- Check that the agent’s Slack bot token is valid — Settings → Slack Apps
- Confirm the agent process is running — Activity should show recent pings
- Verify the bot has been invited to the channel (
/invite @agent-name)
Scheduled job ran but posted nothing
- Open Activity → find the job run → check status
- If Success but silent: the agent decided nothing was worth posting (check your prompt - add “post a one-line summary even if nothing changed”)
- If Error: check the MCP server the agent depends on
Agent gives outdated answers
- Check Memory - it may be recalling a stale fact. Delete the outdated memory entry.
- Check the Wiki - if the source was re-ingested, the wiki may need a refresh.
- If the system prompt was recently edited, check Version History for the change.
MCP tool calls failing
- Go to Agent → Tools tab - verify the MCP server is listed and active
- Check the MCP server’s credentials haven’t expired
- Test the MCP server independently via Test Mode — open the agent → Test tab and send a message that triggers the tool
Next steps
Logs
Full reference for the Logs tab and what each field means.
Activity
Live task view with MCP call drill-down.
Version History
Snapshot browsing and one-click restore.
Troubleshooting
Startup errors, port conflicts, and CLI issues.