This project implements a Slack Agent powered by Agentica and OpenAI's GPT model. The agent listens for messages in Slack that mention the app and responds automatically. It processes incoming interactivity events from Slack, extracts conversation history, and generates intelligent replies using GPT. This solution is ideal for automating responses and engaging in dynamic conversations on Slack.
- Automatic Response to Mentions: The agent listens for
app_mention
events and responds only when explicitly mentioned. - Conversation History Integration: It gathers previous thread messages to build context and provide coherent replies.
- GPT-Powered Replies: Leveraging OpenAI's GPT model, the agent generates natural language responses.
- Thread Locking: Ensures that concurrent messages in the same thread are processed sequentially.
- Type Safety: Uses
typia
for enhanced type safety and reliable code execution. - Secure Credential Management: Utilizes
dotenv
to securely manage sensitive API keys and tokens.
-
Clone the Repository
git clone https://github.com/yourusername/slack-agent.git cd slack-agent
-
Install Dependencies
npm install
This project depends on:
@agentica/core
@wrtnlabs/connector-slack
dotenv
openai
typia
- Other NestJS dependencies
-
Configure Environment Variables
Create a
.env
file in the project root with the following variables:OPENAI_API_KEY=your-openai-api-key SLACK_ACCESS_TOKEN=your-slack-secret-key
-
Slack API Configuration
- Go to the Slack API: Applications page and create a new Slack App.
- Configure the necessary scopes for your app. The recommended scopes to use all functions are:
channels:read
channels:history
users.profile:read
im:read
groups:read
chat:write
users:read
usergroups:read
files:read
team:read
- Install the app to your Slack workspace and note the Secret Key (which you will reference as
SLACK_ACCESS_TOKEN
).
Start the application using your preferred method. For example, if you're using NestJS:
npm run start
The application will listen for interactivity events from Slack. When your app is mentioned in a Slack message, it will generate a reply based on the conversation context and send the response back to the thread.
-
Event Handling:
The agent receives interactivity events from Slack. It specifically handles URL verification andapp_mention
events. -
Processing Messages:
For anapp_mention
event, the agent checks that:- The bot is mentioned in the message.
- The message is not from the bot itself.
- The thread is not already being processed.
-
Conversation Context:
It retrieves the conversation history from the thread, maps the replies into a format that Agentica can use, and generates a coherent reply with OpenAI's GPT model. -
Replying:
Finally, the agent sends the generated reply back to the Slack thread.
Warning:
This code is provided for demonstration purposes only. Using automated file or message operations can be risky in a production environment. Do not use this code in production without proper security measures. Always ensure that your credentials are secured and that your app is thoroughly tested before deployment.
Feel free to open issues or contribute to the project if you encounter any bugs or have feature requests. Enjoy automating your Slack interactions with Agentica!