Meet Casey (it/this/that) — an AI-powered IT helpdesk agent that lives in Slack. Casey can troubleshoot common issues, search knowledge base articles, reset passwords, check system status, and create support tickets, all without leaving the conversation.
Built with Bolt for Python.
This repo contains the same app built with three different AI agent frameworks. Pick the one that fits your stack:
| App | Directory | Get Started | Framework |
|---|---|---|---|
| Claude Agent SDK | claude-agent-sdk/ |
View README | claude-agent-sdk |
| OpenAI Agents SDK | openai-agents-sdk/ |
View README | openai-agents |
| Pydantic AI | pydantic-ai/ |
View README | pydantic-ai |
All implementations share the same Slack listener layer, the same five simulated IT tools, and the same user experience. The only difference is how the agent is defined and executed under the hood.
Casey gives your team instant IT support through three entry points:
- App Home — Choose from common issue categories. A modal collects details, then Casey starts a DM thread with a resolution.
- Direct Messages — Describe any IT issue and Casey responds in-thread, maintaining context across follow-ups.
- Channel @mentions — Mention
@Caseyin any channel to get help without leaving the conversation.
Behind the scenes, Casey has access to five simulated tools: knowledge base search, support ticket creation, password reset, system status checks, and user permissions lookup.
Note: All tools return simulated data for demonstration purposes. In a production app, these would connect to your actual IT systems.
Casey also works with the Slack MCP Server, giving it the ability to search messages and files, read channel history and threads, send messages, schedule messages, and create or update Slack canvases. When deployed with OAuth (HTTP mode), Casey automatically connects to the Slack MCP Server using the user's token, unlocking these capabilities on top of the built-in IT tools.
This repo uses slack-bolt from PyPI.