Quick Start
Quick StartBasic Setup
Basic Setupconst { createBot } = require('kickbot');
// Create a bot instance with minimal configuration
const bot = createBot({
// Required configuration
clientId: 'your-kick-client-id',
clientSecret: 'your-kick-client-secret',
skillfulApiKey: 'your-skillful-api-key',
chatroomId: 'your-chatroom-id',
// Optional to enable the dashboard
enableDashboard: true,
dashboardPassword: 'your-strong-password'
});
// Start the bot
bot.start()
.then(() => console.log('Bot started!'))
.catch(error => console.error('Failed to start bot:', error));Running the Bot
Running the BotFirst-Time Authentication
First-Time Authentication
Authorize The Bot 
Example Success Page 
The Dashboard
Built-in Commands
Built-in CommandsCommand
Description
Basic Configuration
Basic ConfigurationExample: Disabling Agent Changes
Example: Disabling Agent ChangesChecking Bot Status
Checking Bot StatusNext Steps
Next StepsLast updated