From a578b27cea4f5b7b7f9bb67c26e3e4bdbf074ae9 Mon Sep 17 00:00:00 2001 From: Ale Mercado Date: Fri, 3 Oct 2025 15:46:26 -0400 Subject: [PATCH 1/2] feat: rename app display name from assistant to agent --- manifest.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index 60729ff..4320b4b 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "display_information": { - "name": "Bolt Python Assistant" + "name": "Bolt Python Agent" }, "features": { "app_home": { @@ -9,11 +9,11 @@ "messages_tab_read_only_enabled": false }, "bot_user": { - "display_name": "Bolt Python Assistant", + "display_name": "Bolt Python Agent", "always_online": false }, "assistant_view": { - "assistant_description": "Hi, I am an assistant built using Bolt for Python. I am here to help you out!", + "assistant_description": "Hi, I am an agent built using Bolt for Python. I am here to help you out!", "suggested_prompts": [] } }, From 44747e882ad9faee1b5a787fd32cb3a46f2af66e Mon Sep 17 00:00:00 2001 From: Michael Brooks Date: Mon, 6 Oct 2025 14:57:57 -0700 Subject: [PATCH 2/2] refactor: tweak wording to be ai-agent and AI Agent --- README.md | 6 +++--- manifest.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0ff0b3c..399cbcb 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# AI App Template (Bolt for Python) +# AI Agent App Template (Bolt for Python) This Bolt for Python template demonstrates how to build [AI Apps](https://docs.slack.dev/ai/) in Slack. @@ -81,7 +81,7 @@ Every incoming request is routed to a "listener". This directory groups each lis Configures the new Slack Assistant features, providing a dedicated side panel UI for users to interact with the AI chatbot. This module includes: `assistant.py`, which contains two listeners: -* The `@assistant.thread_started` listener receives an event when users start new app thread. +* The `@assistant.thread_started` listener receives an event when users start new app thread. * The `@assistant.user_message` listener processes user messages in app threads or from the app **Chat** and **History** tab. `llm_caller.py`, which handles OpenAI API integration and message formatting. It includes the `call_llm()` function that sends conversation threads to OpenAI's models. @@ -92,7 +92,7 @@ Only implement OAuth if you plan to distribute your application across multiple When using OAuth, Slack requires a public URL where it can send requests. In this template app, we've used [`ngrok`](https://ngrok.com/download). Checkout [this guide](https://ngrok.com/docs#getting-started-expose) for setting it up. -Start `ngrok` to access the app on an external network and create a redirect URL for OAuth. +Start `ngrok` to access the app on an external network and create a redirect URL for OAuth. ``` ngrok http 3000 diff --git a/manifest.json b/manifest.json index 4320b4b..8576d09 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "display_information": { - "name": "Bolt Python Agent" + "name": "Bolt Python AI Agent" }, "features": { "app_home": { @@ -9,7 +9,7 @@ "messages_tab_read_only_enabled": false }, "bot_user": { - "display_name": "Bolt Python Agent", + "display_name": "Bolt Python AI Agent", "always_online": false }, "assistant_view": {