Skip to content

PrateekKumarSingh/PoshBot

 
 

Repository files navigation

PoshBot

Build status Documentation Status

PoshBot is a chat bot written in PowerShell. It makes extensive use of classes introduced in PowerShell 5.0. PowerShell modules are loaded into PoshBot and instantly become available as bot commands. PoshBot currently supports connecting to Slack to provide you with awesome ChatOps goodness.

PoshBot logo

Detailed documentation can be found at ReadTheDocs

See Building PoshBot for documentation on how to build PoshBot from source.

[YouTube] PoshBot Demo at the Portland User Group on 2017-05-31

Alt text

Quickstart

To get started now, get a SLACK-API-TOKEN for your bot:

https://api.slack.com/bot-users

# Install the module from PSGallery
Install-Module -Name PoshBot -Repository PSGallery

# Import the module
Import-Module -Name PoshBot

# Create a bot configuration
$botParams = @{
    Name = 'name'
    BotAdmins = @('<SLACK-CHAT-HANDLE>')
    CommandPrefix = '!'
    LogLevel = 'Info'
    BackendConfiguration = @{
        Name = 'SlackBackend'
        Token = '<SLACK-API-TOKEN>'
    }
    AlternateCommandPrefixes = 'bender', 'hal'
}

$myBotConfig = New-PoshBotConfiguration @botParams

# Start a new instance of PoshBot interactively or in a job.
Start-PoshBot -Configuration $myBotConfig #-AsJob

Basic usage:

# Create a Slack backend
$backendConfig = @{Name = 'SlackBackend'; Token = '<SLACK-API-TOKEN>'}
$backend = New-PoshBotSlackBackend -Configuration $backendConfig

# Create a PoshBot configuration
$pbc = New-PoshBotConfiguration -BotAdmins @('<MY-SLACK-HANDLE>') -BackendConfiguration $backendConfig

# Save configuration
Save-PoshBotConfiguration -InputObject $pbc -Path .\PoshBotConfig.psd1

# Load configuration
$pbc = Get-PoshBotConfiguration -Path .\PoshBotConfig.psd1

# Create an instance of the bot
$bot = New-PoshBotInstance -Configuration $pbc -Backend $backend

# Start the bot
$bot.Start()

# Available commands
Get-Command -Module PoshBot

CommandType     Name                                               Version    Source
-----------     ----                                               -------    ------
Function        Get-PoshBot                                        0.4.0      poshbot
Function        Get-PoshBotConfiguration                           0.4.0      poshbot
Function        Get-PoshBotStatefulData                            0.4.0      poshbot
Function        New-PoshBotCardResponse                            0.4.0      poshbot
Function        New-PoshBotConfiguration                           0.4.0      poshbot
Function        New-PoshBotFileUpload                              0.4.0      poshbot
Function        New-PoshBotInstance                                0.4.0      poshbot
Function        New-PoshBotScheduledTask                           0.4.0      poshbot
Function        New-PoshBotSlackBackend                            0.4.0      poshbot
Function        New-PoshBotTextResponse                            0.4.0      poshbot
Function        Remove-PoshBotStatefulData                         0.4.0      poshbot
Function        Save-PoshBotConfiguration                          0.4.0      poshbot
Function        Set-PoshBotStatefulData                            0.4.0      poshbot
Function        Start-PoshBot                                      0.4.0      poshbot
Function        Stop-Poshbot                                       0.4.0      poshbot

About

Powershell-based bot framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PowerShell 100.0%