Quick Start
Quick Start
This guide will help you set up and run Kick Bot with a basic configuration after installing the package.
Basic Setup
Basic Setup
Create a new JavaScript file (e.g., bot.js
) and add the following code:
Running the Bot
Running the Bot
Run your bot with:
First-Time Authentication
First-Time Authentication
The first time you run Kick Bot, it will need to authenticate with Kick.com:
The bot will start a local server and output a URL which looks like this:
Open this URL in your browser
Log in to Kick.com if prompted
Authorize the application
Once authorized, the browser will redirect and display a success message
The bot will automatically store the authentication token for future use
Your bot is now live and running! If you enabled the dashboard, you can login and access it on your hosted domain with the
/dashboard
route orlocalhost:3000/dashboard
for testing locally
Built-in Commands
Built-in Commands
KickBot comes with several built-in commands:
!ask [question]
Ask the AI a question
!help
Show available commands
!agents
List available AI agents
!changeagent [name]
Start a vote to change the AI agent
!yes
Vote yes in an active vote
!no
Vote no in an active vote
!8ball [question]
Get a Magic 8-Ball response
!imagine [scenario]
Have the AI generate a funny scenario
Basic Configuration
Basic Configuration
Here's an example with more configuration options:
Example: Disabling Agent Changes
Example: Disabling Agent Changes
If you want to prevent viewers from changing the AI agent:
Checking Bot Status
Checking Bot Status
Access the bot status page at http://localhost:3000/status
to verify:
Connection status
Active agent
Enabled commands
Next Steps
Next Steps
Last updated