Create a highly smart Slack bot that is incredibly easy to customize and expand.
The primary purpose of this Ruby gem is to be used internally within your company, allowing teams to create dedicated channels with their own bot to assist them with their daily tasks. Almost any task can be automated with ease!
slack-smart-bot has the ability to create bots on demand, set up shortcuts, execute Ruby code, utilize ChatGPT, DALL-E, Whisper, and more. All of this can be done directly within a chat channel, even from your mobile phone. Whether you need to run forgotten tests, retrieve results, restart a server, summarize a channel or just a thread, or engage in a ChatGPT session, the possibilities are limitless.
(A): Only for Admins
- Installation and configuration (A)
- Usage
- creating the MASTER BOT (A)
- How to access the Smart Bot
- Bot Help
- Bot Management (A)
- Cloud Bots (A)
- Extending rules to other channels (A)
- Using rules from other channels
- Running Ruby code on a conversation
- Sending notifications (A)
- Shortcuts
- Announcements
- Share Messages
- See Statuses
- Routines (A)
- Loops
- Control who has access to a command (A)
- See favorite commands
- Teams
- Time off management
- OpenAI
- Recap
- Summarize
- Personal Settings
- Tips
- Send a file (A)
- Download a file (A)
- Contributing
- License
for admins
$ gem install slack-smart-bot
After you install it you will need just a couple of things to configure it.
Create a file like this on the folder you want:
require 'slack-smart-bot'
settings = {
# the channel that will act like the master channel, main channel
master_channel: 'my_master_channel',
masters: ["mario"], #names of the master users
token: 'xxxxxxxxxxxxxxxxxx', # the API Slack token
user_token: 'yyyyyyyyyy', # The API Slack User token
granular_token: 'zzzzzzzz' # The API Granular Slack Token
}
puts "Connecting #{settings.inspect}"
SlackSmartBot.new(settings).listen
The master_channel will be the channel where you will be able to create other bots and will have special treatment.
The masters will have full access to everything. You need to use the slack user name defined on https://YOUR_WORK_SPACE.slack.com/account/settings#username.
Create the SmartBot Slack App. Bot Token :
-
Create a Classic Slack App This will be our @smart-bot App we will interact with. This App will use RTM to connect to Slack.
-
Add a bot user to your app. On Add features and functionality section for your app, select Bots. Click on Add a Legacy Bot User
-
On your app click on the menu on the left: OAuth & Permissions. Add the 'users.profile:write' scope. This is necessary for the SmartBot to be able to change the slack status of other users.
-
Now you will need to ask a workspace admin to click on Install App to Workspace.
-
Copy your Bot User OAuth Access Token and add it to the SmartBot settings with key :token
-
Ask a workspace admin to provide the User OAuth Token and add it to the SmartBot settings with key :user_token
Now we will create the GranularSmartBot Slack App to get access to certain end points as a regular Slack App:
-
Create a Granular Slack App This will be our @granular-smart-bot App. It will be used internally on the SmartBot. It is a regular Slack App with scopes.
-
On your app click on the menu on the left: OAuth & Permissions and add on Bot Token Scopes the necessary Scopes: app_mentions:read, channels:history, channels:read, chat:write, chat:write.customize, emoji:read, files:read, groups:history, groups:read, im:history, im:read, im:write, incoming-webhook, mpim:history, mpim:read, mpim:write, reactions:read, reactions:write, team:read, users.profile:read, users:read, users:read.email
-
Click on Install App to Workspace.
-
Copy the Bot User OAuth Token and add it to the SmartBot settings with the key :granular_token
Both Apps need to be on the channels we want to use the SmartBot.
Remember to invite the smart bot to the channels where they will be accessible before starting the bot
SmartBot will notify about SmartBot status changes or any SmartBot incident if defined the status_channel in settings file and the channel exists. By default: smartbot-status
This is an example of typical settings to be supplied for the Slack Smart Bot instance:
settings = {
token: ENV["SLACK_BOT_TOKEN"],
user_token: ENV['SLACK_USER_TOKEN'],
granular_token: ENV['SLACK_GRANULAR_BOT_TOKEN'],
masters: ["mario", "peterv", "lisawhite"], #master admin users
master_channel: "smartbot_master",
silent: true,
stats: true,
encrypt: true,
encryption: { # if not encryption key supplied then it will be generated one using the host name and the Slack token
key: ENV['ENCRYPTION_KEY'],
iv: ENV['ENCRYPTION_IV']
},
github: {
token: ENV['GITHUB_TOKEN']
},
jira: {
host: ENV['JIRA_HOST'],
user: ENV['JIRA_USER'],
password: ENV['JIRA_PASSWORD']
},
public_holidays: {
api_key: ENV['CALENDARIFIC_API_KEY'],
default_calendar: 'spain/madrid'
},
ai: {
open_ai: {
access_token: ENV["OPENAI_ACCESS_TOKEN"],
chat_gpt: {
model: 'gpt-3.5-turbo-0613', # to be used by default for the user calling chatgpt command
smartbot_model: 'gpt-4-32k-0613' # to be used by default by the SmartBot internally
}
}
}
}
You can see all the accepted settings on: /lib/slack/smart-bot/config.rb
To use the other integrated services:
- OpenAI: https://platform.openai.com/account/api-keys
- Calendarific: https://www.calendarific.com
- GitHub: https://github.com/settings/tokens
- Jira: https://support.atlassian.com/atlassian-account/docs/manage-api-tokens-for-your-atlassian-account/
for admins
Let's guess the file you created was called my_smart_bot.rb so, just run it:
nohup ruby my_smart_bot.rb&
nohup will prevent the terminal to send the signal exception: SIGHUP and kill the bot. & will run the process in background. You can use instead: ruby my_smart_bot.rb & disown
After the run, it will be generated a rules file with the same name but adding _rules, in this example: my_smart_bot_rules.rb
The rules file can be edited and will be only affecting this particular bot.
You can add all the rules you want for your bot in the rules file, this is an example:
def rules(user, command, processed, dest)
from = user.name
display_name = user.profile.display_name
case command
# help: `echo SOMETHING`
# help: repeats SOMETHING
# help:
when /^echo\s(.+)/i
respond $1
react :monkey_face
# help: `go to sleep`
# help: it will sleep the bot for 10 seconds
# help:
when /^go\sto\ssleep/i
if answer.empty?
ask "do you want me to take a siesta?"
else
case answer
when /yes/i, /yep/i, /sure/i
answer_delete
respond "I'll be sleeping for 10 secs... just for you"
respond "zZzzzzzZZZZZZzzzzzzz!"
react :sleeping
sleep 10
unreact :sleeping
react :sunny
when /no/i, /nope/i, /cancel/i
answer_delete
respond "Thanks, I'm happy to be awake"
else
respond "I don't understand"
ask "are you sure you want me to sleep? (yes or no)"
end
end
# help: ----------------------------------------------
# help: `run something`
# help: It will run the process and report the results when done
# help:
when /^run something/i
react :runner
process_to_run = "ruby -v"
stdout, stderr, status = Open3.capture3(process_to_run)
if stderr == ""
if stdout == ""
respond "#{user.name}: Nothing returned."
else
respond "#{user.name}: #{stdout}"
end
else
respond "#{user.name}: #{stdout} #{stderr}"
end
unreact :runner
# Example sending blocks. More info: https://api.slack.com/block-kit
# help: It will return the info about who is the admin
when /\AWho is the admin\?\z/i
my_blocks = [
{ type: "context",
elements:
[
{ type: "plain_text", :text=>"\tAdmin: " },
{ type: "image", image_url: "https://avatars.slack-edge.com/2021-03-23/182815_e54abb1dd_24.jpg", alt_text: "mario" },
{ type: "mrkdwn", text: " *Mario Ruiz* (marior) " }
]
}
]
respond blocks: my_blocks
else
unless processed
dont_understand()
end
end
end
Also you can add general rules that will be available on all Smart Bot channels to ./rules/general_rules.rb
If you have commands that want to make them available everywhere the Smart Bot is a member then add those commands to ./rules/general_commands.rb
.
for all users
You can access the bot directly on the MASTER CHANNEL, on a secondary channel where the bot is running and directly by opening a private chat with the bot, in this case the conversation will be just between you and the bot.
On a Smart Bot channel you will be able to run some of the commands just by writing a command, for example: bot help
Some commands will be only available when the Smart Bot is listening to you. For the Smart Bot to start listening to you just say: hi bot
. When the Smart Bot is listening to you, you can skip a message to be treated by the bot by starting the message with '-', for example: -this message won't be treated
. When you want the Smart Bot Stop listening to you: bye bot
. The Smart Bot will automatically stop listening to you after 30 minutes of inactivity. If you are on a direct conversation with the Smart Bot then it will be on listening mode all the time.
All the specific commands of the bot are specified on your rules file and can be added or changed accordingly. We usually call those commands: rules. Those rules are only available when the bot is listening to you.
Another way to run a command/rule is by asking on demand. In this case it is not necessary that the bot is listening to you.
To run a command on demand:
!THE_COMMAND
@NAME_OF_BOT THE_COMMAND
NAME_OF_BOT THE_COMMAND
To run a command on demand and add the response on a thread:
^THE_COMMAND
!!THE_COMMAND
Examples run a command on demand:
Also you can always call the Smart Bot from any channel, even from channels without a running Smart Bot. You can use the External Call on Demand: @NAME_OF_BOT on #CHANNEL_NAME COMMAND
. In this case you will call the bot on #CHANNEL_NAME. You can supply more than one channel then all the bots will respond. In case you are in a private conversation with the Smart Bot (DM) then you can use directly: #CHANNEL_NAME COMMAND
or on #CHANNEL_NAME COMMAND
Examples:
Examples on DM:
Peter>
#sales show report from India
Peter>on #sales notify clients
If you want the Smart Bot just listen to part of the message you send, add the commands you want using '`' and start the line with '-!', '-!!' or '-^'
All the commands specified on ./rules/general_commands.rb
will be accessible from any channel where the Smart Bot is present, without the necessity to call it with !, !!, ^ or on demand.
Examples:
Peter>
Thanks smartbot
Smart-Bot>You're very welcome
for all users
To get a full list of all commands and rules for a specific Smart Bot: bot help
. It will show only the specific available commands for the user requesting. By default it will display only a short version of the bot help, call bot help expanded
to get a expanded version of all commands.
If you want to search just for a specific command: bot help COMMAND
It will display expanded explanations for the command.
To show only the specific rules of the Smart Bot defined on the rules file: bot rules
or bot rules COMMAND
Also you can call suggest command
or random command
and SmartBot will return the help content for a random command.
When you call a command that is not recognized, you will get suggestions from the Smart Bot.
Remember when you add code to your rules you need to specify the help that will be displayed when using bot help
, bot rules
For the examples use _ and for the rules `. This is a good example of a Help supplied on rules source code:
# help: ----------------------------------------------
# help: `run TYPE tests on LOCATION`
# help: `execute TYPE tests on LOCATION`
# help: run the specified tests on the indicated location
# help: TYPE: api, ui, smoke, load
# help: LOCATION: customers, db1..db10, global
# help: Examples:
# help: _run api tests on customers_
# help: _run ui tests on customers_
# help: _execute smoke tests on db1_
To see what's new just call What's new
. And to get the SmartBot README call get smartbot readme
.
for admins
To create a new bot on a channel, run on MASTER CHANNEL: create bot on CHANNEL
. The admins of this new bot on that channel will be the MASTER ADMINS, the creator of the bot and the creator of that channel. It will create a new rules file linked to this new bot.
You can kill any bot running on any channel if you are an admin of that bot: kill bot on CHANNEL
If you want to pause a bot, from the channel of the bot: pause bot
. To start it again: start bot
To see the status of the bots, on the MASTER CHANNEL: bot status
If you need it you can set the SmartBot on maintenance mode by running: set maintenance on
. A message to be displayed can be added if not the default message will be used. Run set maintenance off
when you want the SmartBot to be running in normal conditions again.
To display a general message after every command use: set general message MESSAGE
. Use set general message off
to stop displaying it.
To close the Master Bot, run on MASTER CHANNEL: exit bot
If you are a Master Admin on a Direct Message with the Smart Bot you can call the bot stats
and get use stats of the users. You need to set to true
the stats
settings when initializing the Smart Bot. As a normal user you will get your own stats when calling bot stats
. Take a look at bot help bot stats
for more info. If you are a member of #smartbot-stats you can use the bot stats command on that channel. You can set a different channel by supplying it on the config key stats_channel. Also you can call leaderboard
to get some useful information about the use of the SmartBot.
You can also get the bot logs of the bot channel you are using by calling get bot logs
. You need to be a Master Admin user on a DM with the Smart Bot.
You can add, remove and list admins of any channel by using: add admin @user
, remove admin @user
and see admins
. You need to be the creator of the channel, a Master admin or an admin.
To see the full list of available command ids on any channel call: see command ids
for admins
If you want to create a bot that will be running on a different machine: create cloud bot on CHANNEL
. Even though the cloud bots are running on different machines, the management can be done through the MASTER CHANNEL. The new cloud bot will be managed by your Master Bot like the others, closing, pausing...
Cloud Bots are typically used to run commands on specific environments or even different OS or networks.
for admins
If you want to extend the use of your specific rules on a Bot Channel to a third channel you can use the command: extend rules to CHANNEL
From that moment everybody part of that channel will be able to run the specific rules from the other channel but just on demand, for example: !run something
To stop allowing it: stop using rules on CHANNEL
for all users
To be able to access the rules from other channel or from a direct conversation with the bot, first of all you need to be a member of that channel. Then on a direct conversation with the Smart Bot or from another bot channel: use rules from CHANNEL
When you want to stop using those rules with the bot: stop using rules from CHANNEL
Also you can always call the Smart Bot from any channel, even from channels without a running Smart Bot. You can use the External Call on Demand: @NAME_OF_BOT on #CHANNEL_NAME COMMAND
. In this case you will call the bot on #CHANNEL_NAME.
for all users
You can run Ruby code by using the command: ruby THE_CODE
.
Also it is possible to attach a Ruby file and the Smart Bot will run and post the output. You need to select Ruby as file format. Or if you prefer it you can call the ruby
command and on the same message supply a code block.
for all users
For a quick introduction play this video:
Easily starts a REPL session so you will be able to create a script directly from the slack conversation. You will be able to share the REPL so they can run it or see the content.
It Will run all we write as a ruby command and will keep the session values until we finish the session sending quit
, exit
or bye
You can specify a SESSION_NAME that admits from a to Z, numbers, - and _. If no SESSION_NAME supplied it will be treated as a temporary REPL.
If 'private' specified in the command the REPL will be accessible only by you and it will be displayed only to you when see repls
To avoid a message to be treated when a session started, start the message with '-'.
Send puts, print, p or pp if you want to print out something when using run repl
later.
If you declare on your rules file a method called project_folder
returning the path for the project folder, the code will be executed from that folder.
By default it will be automatically loaded the gems: string_pattern
, nice_hash
and nice_http
To pre-execute some ruby when starting the session add the code to .smart-bot-repl
file on the project root folder defined on project_folder
. Then that file will be always executed before the REPL started or created. In that case if we want to avoid to run that file before the REPL we can do it adding the word 'clean' before the command clean repl
.
If you want to see the methods of a class or module you created use ls TheModuleOrClass
. To see all documentation of a method: doc TheModuleOrClass.method_name
. And to see the source code of a method: code TheModuleOrClass.method_name
. Examples: ls Sales
, doc Sales.list
, code Sales.list
During the REPL session you can ask ChatGPT about the code or any other question. Just start the message with ?
and the Smart Bot will ask ChatGPT and will post the answer. Example: ? How to create a new customer?
. If you send just the question mark without a prompt then ChatGPT will suggest next code line. Example: ?
You can supply the Environmental Variables you need for the Session
Examples:
repl CreateCustomer LOCATION=spain HOST='https://10.30.40.50:8887'
repl CreateCustomer: "It creates a random customer for testing" LOCATION=spain HOST='https://10.30.40.50:8887'
repl delete_logs
private repl random-ssn
repl
Runnning on demand the repl we created:
You can run repls and supply parameters to the repl that will be executed on the same session just before the repl. More info
Example:
Peter>
run repl Create10RandomUsers `request = {path: '/api-dev/users/'}`
If you want to add a collaborator while you are on a repl call add collaborator @USER
. From that moment that user will be able to interact with the repl. You can add all the collaborators you want. When any collaborator wants to jump off the repl, that user can use the quit
command.
Other REPL commands: see repls
, run repl SESSION_NAME ENV_VAR=value
, get repl SESSION_NAME
, delete repl SESSION_NAME
, kill repl RUN_REPL_ID
for admins
You can send notifications from MASTER CHANNEL by using notify MESSAGE
. All Bot Channels will be notified.
If you want to send a notification message to all channels the bot joined and direct conversations with the bot: notify all MESSAGE
And if you want to send a notification message to the specified channel and to its extended channels: notify #CHANNEL MESSAGE
for all users
Sometimes your commands or rules are too long and you want to add a shortcut to be executed.
If you have for example a rule like this: run tests on customers android app
and you want to add a shortcut: add shortcut run tca: run tests on customers android app
From that moment you will be able to run the command: run tca
That shortcut will be available for you, in case you want to make it available for everybody on the channel:
Example:
In case you want to use a shortcut as a inline shortcut inside a command you can do it by adding a $: Example:
Peter>
!add shortcut cust1: 3488823-1233
Smart-Bot>shortcut added
Peter>!add shortcut cust2: 1111555-6688
Smart-Bot>shortcut added
Peter>!run tests $cust1
Smart-Bot>Running tests for customers 3488823-1233
Peter>!run tests $cust1 $cust2
Smart-Bot>Running tests for customers 3488823-1233 1111555-6688
To see available shortcuts: see shortcuts
and to delete a particular shortcut: delete shortcut NAME
for all users
You can add any announcement on any channel where the SmartBot is a member by using add COLOR announcement MESSAGE
or add EMOJI announcement MESSAGE
.
It will store the message on the announcement list labeled with the color/emoji specified, white by default. Possible colors white, green, yellow and red. Aliases for announcement: statement, declaration, message.
Examples:
Peter>
add green announcement :heavy_check_mark: All customer services are *up* and running
Peter>add red message Customers db is down :x:
Peter>add yellow statement Don't access the linux server without VPN
Peter>add announcement Party will start at 20:00 :tada:
Peter>add :heavy_exclamation_mark: message Pay attention all DB are on maintenance until 20:00 GMT
To see the announcements of the channel: see announcements
, see COLOR announcements
, see EMOJI announcements
and to delete a particular announcement: delete announcement ID
If you are a master admin and you are on master channel then you can call publish announcements
that will publish the announcements on all channels. The messages stored on a DM won't be published. This is very convenient to be called from a Routine for example every weekday at 09:00.
for all users
You can automatically share any new message that is posted on the channel and meet the specified criteria by using share messages /REGEXP/ on #CHANNEL
or share messages "TEXT" on #CHANNEL
.
This command is only available in public channels. The user adding the Share and the SmartBot need to be a member of both channels.
Examples:
Peter>
share messages /(last\s+|previous\s+)?sales\s+results\s+/ on #sales
Peter>share messages "share post" on #announcements
To see the shares of the channel: see shares
and to delete a particular share: delete share ID
for all users
To see a list of statuses of the members in the channel you can call see statuses
, who is on vacation?
, who is not on vacation?
, who is on EMOJI
, who is on EMOJI #CHANNEL
You need to be a member of the channel to be able to get this info.
Examples:
Peter>
see statuses
Peter>who is on vacation?
Peter>who is not on vacation?
Peter>who is on vacation? #SalesChannel
Peter>who is on :working-from-home:
Peter>who is available?
for admins
To add specific commands to be run automatically every certain amount of time or a specific time: add routine NAME every NUMBER PERIOD COMMAND
or add routine NAME at TIME COMMAND
. Also just before the command you can supply the channel where you want to publish the results, if not channel supplied then it would be the SmartBot Channel or on the DM if the command is run from there. Remember the SmartBot needs to have access to the channel where you want to publish.
In case you create a bgroutine instead of a normal routine then the results of the run won't be published.
If you want to hide the routine executions use add silent routine
. It won't show the routine name when executing.
To see the last result of the execution you can call see result routine NAME
Examples:
add routine run_tests every 3h !run tests on customers
add bgroutine clean_db at 17:05 !clean customers temp db
add silent bgroutine clean_db at 17:05 !clean customers temp db
add routine clean_custdb on Mondays at 05:00 !clean customers db
add routine clean_custdb on Tuesdays at 09:00 #SREChannel !clean customers db
add silent routine suggestions on weekdays at 09:00 suggest command
add routine example on the 31st at 20:00 ^results sales monthly
Also instead of adding a Command to be executed, you can attach a file, then the routine will be created and the attached file will be executed on the criteria specified. Also you can supply a script adding ```the code``` and specifying on the routine name the extension that will have. Only Master Admins are allowed to add files or scripts.
Other routine commands:
pause routine NAME
start routine NAME
remove routine NAME
run routine NAME
see routines
see result routine NAME
for all users
You can run any command or rule on a loop by using:
for NUMBER times every NUMBER minutes COMMAND
for NUMBER times every NUMBER seconds COMMAND
Maximum number of times to be used: 24. Minimum every 10 seconds. Maximum every 60 minutes.
To stop the execution of a loop you can use: quit loop LOOP_ID
Examples:
for 5 times every 1 minute ^ruby puts Time.now
10 times every 30s !ruby puts Time.now
24 times every 60m !get sales today
quit loop 1
stop iterator 12
for admins
You can add, remove and list admins of any channel by using: add admin @user
, remove admin @user
and see admins
. You need to be the creator of the channel, a Master admin or an admin.
To see the full list of available command ids on any channel call: see command ids
If you want to define who has access to certain commands in all SmartBot instances, you can specify it on the settings when starting the Smart Bot:
settings = {
# the channel that will act like the master channel, main channel
master_channel: 'my_master_channel',
masters: ["mario"], #names of the master users
token: 'xxxxxxxxxxxxxxxxxx', # the API Slack token
allow_access: {
repl: [ 'marioruiz', 'peterlondon', 'UMYAAS8E7F'],
ruby_code: [ 'marioruiz', 'UMYAAS8E7F', 'samcooke']
}
}
You can use the user name or the user id.
If you want to change who has access to a specific command without restarting the Smart Bot you can do it on the rules file, for example:
# helpadmin: ----------------------------------------------
# helpadmin: `update access`
# helpadmin: It will update the privileges to access commands or rules
# helpadmin:
when /\A\s*update\s+access\s*\z/i
save_stats(:update_access)
if is_admin?()
config.allow_access.repl = ['marioruiz', 'samcooke']
respond "updated on <##{@channel_id}>!"
else
respond 'Only admins can change the access rules'
end
To check from a rule if the user has access to it:
if has_access?(:your_command_id)
end
Also you can allow or deny access for specific commands and users on any specific channel all you need is the Smartbot to be a member of the channel and use these commands on Slack:
allow access COMMAND_ID
allow access COMMAND_ID @user1 @user99
It will allow the specified command to be used on the channel.
If @user specified, only those users will have access to the command
Only admins of the channel can use this command.
deny access COMMAND_ID
It won't allow the specified command to be used on the channel.
Only admins of the channel can use this command
see access COMMAND_ID
it will show the access rights for the specified command
The authorization is controlled by save_stats
so it will be check out when calling save_stats
or by calling has_access?(:your_command_id)
for all users
It will display the favorite commands in that channel.
Examples:
see favorite commands
favorite commands
my favourite commands
most used commands
for all users
For a quick introduction play this video:
You can add, update, see, ping and delete teams. When calling see TEAM_NAME team
the availability of the members will be displayed.
add team TEAM_NAME PROPERTIES
will add a team with the info supplied. In case it is supplied a channel with type 'members' the members of that channel would be considered members of the team.
Examples:
add team devweb members #devweb support #devweb-support : We take care of the website
add team devweb qa @jim dev @johnja @cooke @luisa members #devweb support #devweb-support : We take care of the website
add team sandex manager @sarah members #sandex : We take care of the sand
By calling update team
you will update a team with the info supplied.
Examples:
update team sales : Support for customers
update sales team delete @sarah @peter
update sales team add public #salesff
update sales team add qa @john @ben @ana
It is possible to search teams by user, info, channel or team name. In case calling see team TEAM_NAME
or TEAM_NAME team
it will show also the availavility of the members: on vacation, in a meeting, sick leave, away or available.
Examples:
see teams
see Sales team
which teams #salesff
which teams @sarah
which team does @john belongs to?
By calling ping team TEAM_NAME TYPE_MEMBER MESSAGE
will send the MESSAGE naming all available members of the MEMBER_TYPE supplied.
If you call contact team TEAM_NAME TYPE_MEMBER MESSAGE
will send the MESSAGE naming all members of the MEMBER_TYPE supplied.
Examples:
ping team sales development What's the status on last deployment?
contact team sales qa Please finish testing of dev02 feature before noon
It is also possible to add notes for the team, even you can specify if those notes are private so only the members of the team can see them or even personal so only you will. You can use different types of notes: memo, note, issue, task, feature, bug, jira, github. Also you can indicate the topic of the note. To be able to add or delete notes you need to be a member of that team.
In case of 'jira' type then you can supply an URL or a JQL and it will show all the JIRA issues as memos. To be able to use it you need to specify on the SmartBot settings the credentials for the Basic Authentication on JIRA:
jira: {host: HOST, user: USER, password: PASSWORD}
In case of 'github' type then you can supply an URL filtering the Github issues you want to add as memos. To be able to use it you need to specify on the SmartBot settings the Github token:
github: {token: GITHUB_TOKEN}
If you want to change the memo status use the command set STATUS on memo ID TEAM_NAME team
. For example: set :runner: on memo 7 Sales team
You can add also comments to any memo by calling: team TEAM_NAME memo ID MESSAGE
. To see a specific memo and all the comments: team TEAM_NAME memo ID
. In case of a Jira or GitHub memo then it will show also the comments in there.
Examples:
add memo to sales team : Add tests for Michigan feature
add private note to sales team : Bills will need to be deployed before Friday
add memo to dev team web : Check last version
add private bug to dev team SRE : Logs should not be accessible from outside VPN
add memo sales team : Add tests for Michigan feature
add memo team sales: Add tests for Michigan feature
add jira to sales team : labels = SalesT AND status != Done
add github to sales team : https://github.com/PeterBale/SalesBoom/issues?q=is%3Aissue+is%3Aopen+
set :runner: on memo 7 team Sales
see all memos from Sales team
see bugs from Sales team dev
sales team memo 4 Put it on hold until tests for Apple feature are finished
sales team memo 7
Other team commands: delete team TEAM_NAME
, delete memo ID from team TEAM_NAME
, set STATUS on memo ID TEAM_NAME team
, see MEMO_TYPE from TEAM_NAME team TOPIC
for all users
You will be able to add or remove vacation and sick periods by using add vacation/sick from YYYY/MM/DD to YYYY/MM/DD
. The SmartBot will automatically set the users status to 🌴 or 🤒 and the expiration date when the user is on vacation or sick. The SmartBot won't be allowed to change the status of workspace admins or owners.
The vacation plan will be displayed also with the team when calling see team NAME
for all team members.
Also, you can see the vacation plan for the team for a specific period: vacations team NAME YYYY/MM/DD
To be able to use this command you need to allow the 'users.profile:write' scope on your Slack App and an admin user of the workspace needs to install the app. Set the user token provided by the workspace on the SmartBot settings:
settings = {
user_token: ENV['SLACK_USER_TOKEN']
}
If you want to see the public holidays for a specific country or country/region you can use the command public holidays COUNTRY/REGION
. Examples: public holidays Iceland
, public holidays Spain/Madrid
, public holidays United States/California 2024
, public holidays Spain/Catalonia 2024/04
.
You need to set up an account on https://www.calendarific.com
Add to your Smartbot configuration:
settings = {
public_holidays: {
api_key: ENV['CALENDARIFIC_API_KEY']
}
}
When calling see my time off
on a DM will display a calendar of the year with the days off, including public holidays
Other 'time off' commands: remove time off ID
, see my time off
, see vacations @USER
, time off team NAME
, set public holidays to COUNTRY/REGION
for admins
To be able to use this SmartBot general command you need to ask for an API token: https://platform.openai.com/account/api-keys or supply a Host and api_key for Azure OpenAI.
Then specify in the SmartBot config the keys:
ai: {
# for all open_ai services
open_ai: {
#default host and token for all openAI services
host: 'HOST', # optional
access_token: 'OPENAI_ACCESS_TOKEN',
# Optional. For chatGPT. If supplied it will be used instead of the ones defined for all open_ai services
chat_gpt: {
host: 'HOST',
access_token: 'OPENAI_ACCESS_TOKEN', #or OPENAI_API_KEY from Azure
api_type: :openai_azure, #Default type will be :openai (possible values are :openai, :openai_azure)
#If supplied :openai_azure then it is necessary to supply host
api_version: '2023-03-15-preview', # Default api version for :openai_azure
model: 'gpt-3.5-turbo',
smartbot_model: 'gpt-3.5-turbo'
},
# Optional. For DALL-E. If supplied it will be used instead of the ones defined for all open_ai services
dall_e: {
host: 'HOST',
access_token: 'OPENAI_ACCESS_TOKEN',
image_size: '256x256',
},
# Optional. For Whisper. If supplied it will be used instead of the ones defined for all open_ai services
whisper: {
host: 'HOST',
access_token: 'OPENAI_ACCESS_TOKEN',
model: 'whisper-1',
}
}
}
Or if you want you can set your personal access token just to be used by you by calling on a DM with the SmartBot the command: set personal settings ai.open_ai.access_token ACCESS_TOKEN
Also, you can specify personal settings for host
, ai.open_ai.chat_gpt.model
, ai.open_ai.chat_gpt.smartbot_model
, ai.open_ai.whisper.model
or ai.open_ai.dall_e.image_size
, instead of using the default values.
For using different hosts or tokens for each service you can use the chat_gpt
, dall_e
or whisper
keys.
for all users
For a quick introduction play this video:
?? PROMPT
? PROMPT
Chat GPT will generate a response based on the PROMPT indicated.
If ?? is used, it will start from zero the session. If not all the previous prompts from the session will be used to generate the response.
You can share a message and use it as input for the supplied prompt.
When using ?? a temporary chatGPT session will be created. If you want to start a session with a given name use chatGPT SESSION_NAME
. You can add also the description of the session by using chatGPT SESSION_NAME "DESCRIPTION"
.
If you want to categorize your sessions you can use chatGPT SESSION_NAME >TAG_NAME
.
You can supply also a specific GPT model to be used. chatGPT SESSION_NAME MODEL_NAME
.
To get all prompts from a specific session name use chatGPT get SESSION_NAME
.
To list all sessions you created use chatGPT sessions
.
When starting a new session, if you ask SmartBot to answer on a Thread by using !! or ^, then it won't be necessary to send ? before the prompt. In this case, every single message you send will be considered a prompt to be treated. After 30 minutes of inactivity, SmartBot will stop listening to the thread. You will need to continue the session after that. If you want to avoid a message to be treated then start it with a hyphen '-'.
To add a collaborator when on a thread, you can use directly add collaborator @USER
If you include in the prompt !URL
then it will download and use the content of the URL as input for the prompt.
When on a thread you can change the model to be used by sending use model MODEL_NAME
. For a temporary session if you want to create the session with a specific model use ?? use model MODEL_NAME
. The model supplied can be a substring of the model name, SmartBot will try to find the model that matches the substring.
You can copy your session by using chatGPT copy SESSION_NAME NEW_SESSION_NAME
.
To share your session with everyone use chatGPT share SESSION_NAME
. Then the session will be available for everyone to use. If you prefer to share it with a specific channel use chatGPT share SESSION_NAME #CHANNEL
. In that case, only the users on that channel will be able to use the session.
To list all public sessions call chatGPT public sessions
. To list all shared sessions in a channel, from that channel call chatGPT shared sessions
. You can also filter the sessions by tag, for example, chatGPT public sessions >TAG_NAME
.
If you want to use any public or shared session, you can use chatGPT use USER_NAME SESSION_NAME
or chatGPT use USER_NAME SESSION_NAME NEW_SESSION_NAME
.
To remove any shared session from the list, call chatGPT stop sharing SESSION_NAME
or chatGPT stop sharing SESSION_NAME #CHANNEL
.
You can also use ChatGPT when creating REPLs. During the REPL session you can ask ChatGPT about the code or any other question. Just start the message with ?
and the Smart Bot will ask ChatGPT and will post the answer. Example: ? How to create a new customer?
. If you send just the question mark without a prompt then ChatGPT will suggest next code line. Example: ?
To send the results of a SmartBot command as input for a ChatGPT session, use COMMAND ?? PROMPT
. Example: bot help ?? how can I use the time off commands
. If you are on a thread you can send more SmartBot commands to the same session by using COMMAND ?? PROMPT
.
for all users
??i PROMPT
?i PROMPT
?ir
It will generate an image based on the PROMPT indicated.
If ??i
is used, it will start from zero the session. If not all the previous prompts from the session will be used to generate the image.
if using ?ir
will generate a new image using the session prompts.
for all users
?iv
?ivNUMBER
It will generate a variation of the last image generated in the session.
In the case of NUMBER, it will generate NUMBER of variations of the last image generated. NUMBER needs to be between 1 and 9.
If an image is attached then it will generate temporary variations of the attached image.
for all users
?ie PROMPT
It will edit the attached image with the supplied PROMPT. The supplied image needs to be an image with a transparent area.
The PROMPT need to explain the final result of the image.
for all users
?w PROMPT
?w
It will transcribe the audio file attached and perform the PROMPT indicated if supplied.
for all users
?m
?m MODEL
chatgpt models
It will return the list of models available or the details of the model indicated.
for all users
recap
my recap
recap from YYYY/MM/DD
recap from YYYY/MM/DD to YYYY/MM/DD
recap YYYY
recap #CHANNEL
my recap #CHANNEL
recap from YYYY/MM/DD #CHANNEL
recap from YYYY/MM/DD to YYYY/MM/DD #CHANNEL
recap YYYY #CHANNEL
It will show a recap of the channel. If channel not supplied, it will show the recap of the current channel.
If 'my' is added, it will show also a recap of your messages.
If only one date is added, it will show the recap from that day to 31st of December of that year.
If only one year is added, it will show the recap from 1st of January to 31st of December of that year.
Examples:
recap
my recap
recap 2023
recap from 2023/07/01 to 2023/12/31 #sales
recap 2022 #sales
for all users
summarize
summarize since YYYY/MM/DD
summarize #CHANNEL
summarize #CHANNEL since YYYY/MM/DD
summarize URL_THREAD
It will summarize using ChatGPT the messages in the channel since the date specified.
If no date is specified it will summarize the last 30 days.
If time off added using Time Off command it will summarize since your last time off started.
If no channel is specified it will summarize the current channel.
If a thread URL is specified it will summarize the thread.
If the command is used in a thread it will summarize the thread.
Examples:
summarize
summarize since 2024/01/22
summarize #sales
summarize #sales since 2024/01/22
summarize https://yourcompany.slack.com/archives/C111JG4V4DZ/p1622549264010700
On a DM with SmartBot you can call set personal settings
command and supply your specific personal settings just for you. Then the command using those settings will be specific for you with the value indicated here.
Examples:
set personal settings ai.open_ai.access_token Axdd3SSccffddZZZDFFDxf7
set personal settings ai.open_ai_chat_gpt.model gpt-4-turbo-preview
set personal settings authorizations.confluence.host confluence.love.example.com
set personal settings authorizations.confluence.authorization Bearer XDfjjdkAAAjjjdkkslsladjjjd
Other commands: delete personal settings SETTINGS_ID
, get personal settings
, get personal settings SETTINGS_ID
for admins
#send_file(to, msg, filepath, title, format, type = "text")
send_file(dest, 'the message', "#{project_folder}/temp/logs_ptBI.log", 'title', 'text/plain', "text")
send_file(dest, 'the message', "#{project_folder}/temp/example.jpeg", 'title', 'image/jpeg', "jpg")
When uploading a file the message added to 'Add a message about the file' will be the command treated by the bot rule. Then in your rules file:
when /^do something with my file/i
if !files.nil? and files.size == 1 and files[0].filetype == 'yaml'
require "nice_http"
http = NiceHttp.new(host: "https://files.slack.com", headers: { "Authorization" => "Bearer #{config.token}" })
res = http.get(files[0].url_private_download, save_data: './tmp/')
# if you want to directly access to the content use: `res.data`
end
Bug reports and pull requests are welcome on GitHub at https://github.com/marioruiz/slack-smart-bot.
The gem is available as open source under the terms of the MIT License.