|
|
|
|
@ -6,10 +6,50 @@ read_when:
|
|
|
|
|
---
|
|
|
|
|
# Twitch (plugin)
|
|
|
|
|
|
|
|
|
|
Twitch chat support via IRC connection. Clawdbot connects as a Twitch user (bot account) to receive and send messages in channels. Requires a Twitch application with OAuth token.
|
|
|
|
|
Twitch chat support via IRC connection. Clawdbot connects as a Twitch user (bot account) to receive and send messages in channels.
|
|
|
|
|
|
|
|
|
|
Status: ready for Twitch chat via IRC connection with @twurple.
|
|
|
|
|
|
|
|
|
|
## Quick setup (beginner)
|
|
|
|
|
1) Install the Twitch plugin and create a Twitch application.
|
|
|
|
|
2) Generate your OAuth token (recommended: use [Twitch Token Generator](https://twitchtokengenerator.com/)).
|
|
|
|
|
3) Set the token for Clawdbot:
|
|
|
|
|
- Env: `CLAWDBOT_TWITCH_ACCESS_TOKEN=...` (default account only)
|
|
|
|
|
- Or config: `channels.twitch.accounts.default.token`
|
|
|
|
|
- If both are set, config takes precedence (env fallback is default-account only).
|
|
|
|
|
4) Start the gateway.
|
|
|
|
|
5) The bot joins your channel and responds to messages.
|
|
|
|
|
|
|
|
|
|
Minimal config:
|
|
|
|
|
```json5
|
|
|
|
|
{
|
|
|
|
|
channels: {
|
|
|
|
|
twitch: {
|
|
|
|
|
enabled: true,
|
|
|
|
|
accounts: {
|
|
|
|
|
default: {
|
|
|
|
|
username: "clawdbot", // Bot's Twitch account
|
|
|
|
|
token: "oauth:abc123...", // Or omit to use CLAWDBOT_TWITCH_ACCESS_TOKEN env var
|
|
|
|
|
clientId: "your_client_id_here",
|
|
|
|
|
channel: "vevisk" // Which Twitch channel's chat to join
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**Note:** `username` is the bot's account, `channel` is which chat to join.
|
|
|
|
|
|
|
|
|
|
## How it works
|
|
|
|
|
1. Create a Twitch application and bot account (or use an existing account).
|
|
|
|
|
2. Configure Clawdbot with `channels.twitch.accounts.default.token` (or `CLAWDBOT_TWITCH_ACCESS_TOKEN` as a fallback).
|
|
|
|
|
3. Run the gateway; it auto-starts the Twitch channel when a token is available (config first, env fallback) and `channels.twitch.enabled` is not `false`.
|
|
|
|
|
4. The bot joins the specified `channel` to send/receive messages.
|
|
|
|
|
5. Direct chats collapse into the agent's main session (default `agent:main:main`); each account maps to an isolated session key `agent:<agentId>:twitch:<accountName>`.
|
|
|
|
|
|
|
|
|
|
**Key distinction:** `username` is who the bot authenticates as (the bot's account), `channel` is which chat room it joins.
|
|
|
|
|
|
|
|
|
|
## Plugin required
|
|
|
|
|
|
|
|
|
|
Twitch ships as a plugin and is not bundled with the core install.
|
|
|
|
|
@ -30,31 +70,25 @@ Details: [Plugins](/plugin)
|
|
|
|
|
|
|
|
|
|
## Setup
|
|
|
|
|
|
|
|
|
|
1) Install the Twitch plugin:
|
|
|
|
|
- From npm: `clawdbot plugins install @clawdbot/twitch`
|
|
|
|
|
- From a local checkout: `clawdbot plugins install ./extensions/twitch`
|
|
|
|
|
### 1) Create a Twitch application
|
|
|
|
|
- Go to [Twitch Developer Console](https://dev.twitch.tv/console)
|
|
|
|
|
- Click "Register Your Application"
|
|
|
|
|
- Set Application Type to "Chat Bot"
|
|
|
|
|
- Copy the **Client ID**
|
|
|
|
|
|
|
|
|
|
2) Create a Twitch application:
|
|
|
|
|
- Go to [Twitch Developer Console](https://dev.twitch.tv/console)
|
|
|
|
|
- Click "Register Your Application"
|
|
|
|
|
- Set Application Type to "Chat Bot"
|
|
|
|
|
- Copy the Client ID
|
|
|
|
|
### 2) Generate your OAuth token (recommended: Twitch Token Generator)
|
|
|
|
|
- Use [Twitch Token Generator](https://twitchtokengenerator.com/)
|
|
|
|
|
- Select scopes: `chat:read` and `chat:write`
|
|
|
|
|
- Copy the token (starts with `oauth:`)
|
|
|
|
|
|
|
|
|
|
3) Generate your OAuth token:
|
|
|
|
|
- Use [Twitch Token Generator](https://twitchtokengenerator.com/) or [TwitchApps TMI](https://twitchapps.com/tmi/)
|
|
|
|
|
- Select scopes: `chat:read` and `chat:write`
|
|
|
|
|
- Copy the token (starts with `oauth:`)
|
|
|
|
|
### 3) Configure credentials
|
|
|
|
|
Env (default account only):
|
|
|
|
|
|
|
|
|
|
4) Configure credentials:
|
|
|
|
|
- Env: `CLAWDBOT_TWITCH_ACCESS_TOKEN=...` (default account only)
|
|
|
|
|
- Or config: `channels.twitch.accounts.default.token`
|
|
|
|
|
- If both are set, config takes precedence (env fallback is default-account only)
|
|
|
|
|
```bash
|
|
|
|
|
export CLAWDBOT_TWITCH_ACCESS_TOKEN=oauth:your_token_here
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
5) Start the gateway. Twitch starts when a token is resolved (config first, env fallback).
|
|
|
|
|
|
|
|
|
|
6) Invite the bot to your channel (it will auto-join the channel specified in config).
|
|
|
|
|
|
|
|
|
|
Minimal config (default account):
|
|
|
|
|
Or config:
|
|
|
|
|
|
|
|
|
|
```json5
|
|
|
|
|
{
|
|
|
|
|
@ -63,9 +97,10 @@ Minimal config (default account):
|
|
|
|
|
enabled: true,
|
|
|
|
|
accounts: {
|
|
|
|
|
default: {
|
|
|
|
|
username: "mybot",
|
|
|
|
|
token: "oauth:your_token_here",
|
|
|
|
|
clientId: "your_client_id_here"
|
|
|
|
|
username: "clawdbot", // Bot's Twitch account
|
|
|
|
|
token: "oauth:abc123...", // Or omit to use CLAWDBOT_TWITCH_ACCESS_TOKEN env var
|
|
|
|
|
clientId: "your_client_id_here",
|
|
|
|
|
channel: "vevisk" // Which Twitch channel's chat to join
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@ -73,46 +108,22 @@ Minimal config (default account):
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Env-only setup:
|
|
|
|
|
**Note:** `username` is the bot's account, `channel` is which chat to join.
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
export CLAWDBOT_TWITCH_ACCESS_TOKEN=oauth:your_token_here
|
|
|
|
|
```
|
|
|
|
|
With env, you still need `clientId` and `channel` in config (or use the minimal config above without `token`).
|
|
|
|
|
|
|
|
|
|
With env, you still need `clientId` in config (or use the minimal config above without `token`).
|
|
|
|
|
### 4) Start the gateway
|
|
|
|
|
Twitch starts when a token is resolved (config first, env fallback).
|
|
|
|
|
|
|
|
|
|
## Token setup
|
|
|
|
|
### 5) Join a channel
|
|
|
|
|
The bot joins the channel specified in `channel`.
|
|
|
|
|
|
|
|
|
|
### Option 1: Static token (simple)
|
|
|
|
|
## Token refresh (optional, recommended for long-running bots)
|
|
|
|
|
|
|
|
|
|
Use [Twitch Token Generator](https://twitchtokengenerator.com/):
|
|
|
|
|
|
|
|
|
|
1. Select scopes: `chat:read` and `chat:write`
|
|
|
|
|
2. Copy the token (starts with `oauth:`)
|
|
|
|
|
3. Add to config:
|
|
|
|
|
|
|
|
|
|
```json5
|
|
|
|
|
{
|
|
|
|
|
channels: {
|
|
|
|
|
twitch: {
|
|
|
|
|
accounts: {
|
|
|
|
|
default: {
|
|
|
|
|
username: "mybot",
|
|
|
|
|
token: "oauth:abc123...",
|
|
|
|
|
clientId: "your_client_id"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Option 2: Automatic token refresh (recommended)
|
|
|
|
|
|
|
|
|
|
For long-running bots, configure RefreshingAuthProvider:
|
|
|
|
|
For long-running bots, configure automatic token refresh to avoid expired tokens:
|
|
|
|
|
|
|
|
|
|
1. Use [Twitch Token Generator](https://twitchtokengenerator.com/) with **"Include Refresh Token"** checked
|
|
|
|
|
2. Get your Client Secret from [Twitch Developer Console](https://dev.twitch.tv/console)
|
|
|
|
|
2. Get your **Client Secret** from [Twitch Developer Console](https://dev.twitch.tv/console)
|
|
|
|
|
3. Add to config:
|
|
|
|
|
|
|
|
|
|
```json5
|
|
|
|
|
@ -121,7 +132,7 @@ For long-running bots, configure RefreshingAuthProvider:
|
|
|
|
|
twitch: {
|
|
|
|
|
accounts: {
|
|
|
|
|
default: {
|
|
|
|
|
username: "mybot",
|
|
|
|
|
username: "clawdbot",
|
|
|
|
|
token: "oauth:abc123...",
|
|
|
|
|
clientId: "your_client_id",
|
|
|
|
|
clientSecret: "your_client_secret",
|
|
|
|
|
@ -135,24 +146,34 @@ For long-running bots, configure RefreshingAuthProvider:
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The bot will automatically refresh tokens before they expire and log refresh events.
|
|
|
|
|
The bot automatically refreshes tokens before they expire and logs refresh events.
|
|
|
|
|
|
|
|
|
|
## Access control
|
|
|
|
|
## Routing model
|
|
|
|
|
- Replies always go back to Twitch.
|
|
|
|
|
- Each account maps to `agent:<agentId>:twitch:<accountName>`.
|
|
|
|
|
|
|
|
|
|
### Allowlist by User ID (recommended)
|
|
|
|
|
## Multi-account support
|
|
|
|
|
|
|
|
|
|
Most secure: only allow specific Twitch user IDs:
|
|
|
|
|
Use `channels.twitch.accounts` with per-account tokens and optional `name`. See [`gateway/configuration`](/gateway/configuration#telegramaccounts--discordaccounts--slackaccounts--signalaccounts--imessageaccounts) for the shared pattern.
|
|
|
|
|
|
|
|
|
|
Example (one bot account in two different channels):
|
|
|
|
|
|
|
|
|
|
```json5
|
|
|
|
|
{
|
|
|
|
|
channels: {
|
|
|
|
|
twitch: {
|
|
|
|
|
accounts: {
|
|
|
|
|
default: {
|
|
|
|
|
username: "mybot",
|
|
|
|
|
ninjaChannel: {
|
|
|
|
|
username: "clawdbot",
|
|
|
|
|
token: "oauth:...",
|
|
|
|
|
clientId: "...",
|
|
|
|
|
allowFrom: ["123456789", "987654321"]
|
|
|
|
|
channel: "vevisk"
|
|
|
|
|
},
|
|
|
|
|
shroudChannel: {
|
|
|
|
|
username: "clawdbot",
|
|
|
|
|
token: "oauth:...",
|
|
|
|
|
clientId: "...",
|
|
|
|
|
channel: "secondchannel"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@ -160,11 +181,9 @@ Most secure: only allow specific Twitch user IDs:
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**Why user IDs instead of usernames?** Twitch usernames can change, which could allow someone to hijack another user's access. User IDs are permanent.
|
|
|
|
|
## Access control
|
|
|
|
|
|
|
|
|
|
Find your Twitch user ID at: https://www.streamweasels.com/tools/convert-your-twitch-username-to-user-id/
|
|
|
|
|
|
|
|
|
|
### Role-based restrictions
|
|
|
|
|
### Role-based restrictions (recommended)
|
|
|
|
|
|
|
|
|
|
Restrict access to specific roles:
|
|
|
|
|
|
|
|
|
|
@ -192,9 +211,37 @@ Restrict access to specific roles:
|
|
|
|
|
- `"subscriber"` - Subscribers
|
|
|
|
|
- `"all"` - Anyone in chat
|
|
|
|
|
|
|
|
|
|
### Allowlist by User ID
|
|
|
|
|
|
|
|
|
|
Only allow specific Twitch user IDs (most secure):
|
|
|
|
|
|
|
|
|
|
```json5
|
|
|
|
|
{
|
|
|
|
|
channels: {
|
|
|
|
|
twitch: {
|
|
|
|
|
accounts: {
|
|
|
|
|
default: {
|
|
|
|
|
username: "mybot",
|
|
|
|
|
token: "oauth:...",
|
|
|
|
|
clientId: "...",
|
|
|
|
|
allowFrom: ["123456789", "987654321"]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**Why user IDs instead of usernames?** Twitch usernames can change, which could allow someone to hijack another user's access. User IDs are permanent.
|
|
|
|
|
|
|
|
|
|
Find your Twitch user ID at: https://www.streamweasels.com/tools/convert-your-twitch-username-to-user-id/
|
|
|
|
|
|
|
|
|
|
### Combined allowlist + roles
|
|
|
|
|
|
|
|
|
|
Users in `allowFrom` bypass role checks:
|
|
|
|
|
Users in `allowFrom` bypass role checks. In this example:
|
|
|
|
|
- User `123456789` can always message (bypasses role check)
|
|
|
|
|
- All moderators can message
|
|
|
|
|
- Everyone else is blocked
|
|
|
|
|
|
|
|
|
|
```json5
|
|
|
|
|
{
|
|
|
|
|
@ -214,11 +261,6 @@ Users in `allowFrom` bypass role checks:
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
In this example:
|
|
|
|
|
- User `123456789` can always message (bypasses role check)
|
|
|
|
|
- All moderators can message
|
|
|
|
|
- Everyone else is blocked
|
|
|
|
|
|
|
|
|
|
### Require @mention
|
|
|
|
|
|
|
|
|
|
Only respond when the bot is mentioned:
|
|
|
|
|
@ -240,34 +282,6 @@ Only respond when the bot is mentioned:
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Multiple accounts
|
|
|
|
|
|
|
|
|
|
Configure multiple Twitch channels:
|
|
|
|
|
|
|
|
|
|
```json5
|
|
|
|
|
{
|
|
|
|
|
channels: {
|
|
|
|
|
twitch: {
|
|
|
|
|
accounts: {
|
|
|
|
|
main: {
|
|
|
|
|
username: "mybot",
|
|
|
|
|
token: "oauth:...",
|
|
|
|
|
clientId: "...",
|
|
|
|
|
channel: "streamer1"
|
|
|
|
|
},
|
|
|
|
|
secondary: {
|
|
|
|
|
username: "mybot",
|
|
|
|
|
token: "oauth:...",
|
|
|
|
|
clientId: "...",
|
|
|
|
|
channel: "streamer2",
|
|
|
|
|
allowedRoles: ["moderator"]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Environment variables
|
|
|
|
|
|
|
|
|
|
For the default account, you can use environment variables instead of config:
|
|
|
|
|
@ -282,7 +296,7 @@ Example:
|
|
|
|
|
export CLAWDBOT_TWITCH_ACCESS_TOKEN=oauth:abc123def456...
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Config:
|
|
|
|
|
Config with env fallback:
|
|
|
|
|
|
|
|
|
|
```json5
|
|
|
|
|
{
|
|
|
|
|
@ -323,6 +337,25 @@ Control markdown stripping behavior:
|
|
|
|
|
|
|
|
|
|
Twitch doesn't support markdown, so this is enabled by default. Disable if you want to send markdown as-is (it will appear as plain text with markdown symbols).
|
|
|
|
|
|
|
|
|
|
## Capabilities & limits
|
|
|
|
|
|
|
|
|
|
**Supported:**
|
|
|
|
|
- ✅ Channel messages (group chat)
|
|
|
|
|
- ✅ Whispers/DMs (received but replies not supported - Twitch doesn't allow bots to send whispers)
|
|
|
|
|
- ✅ Markdown stripping (automatically applied)
|
|
|
|
|
- ✅ Message chunking (500 char limit)
|
|
|
|
|
- ✅ Access control (user ID allowlist, role-based)
|
|
|
|
|
- ✅ @mention requirement
|
|
|
|
|
- ✅ Automatic token refresh (with RefreshingAuthProvider)
|
|
|
|
|
- ✅ Multi-account support
|
|
|
|
|
|
|
|
|
|
**Not supported:**
|
|
|
|
|
- ❌ Native reactions
|
|
|
|
|
- ❌ Threaded replies
|
|
|
|
|
- ❌ Message editing
|
|
|
|
|
- ❌ Message deletion
|
|
|
|
|
- ❌ Rich embeds/media uploads (sends media URLs as text)
|
|
|
|
|
|
|
|
|
|
## Troubleshooting
|
|
|
|
|
|
|
|
|
|
First, run diagnostic commands:
|
|
|
|
|
@ -374,35 +407,18 @@ If you see "token refresh disabled (no refresh token)":
|
|
|
|
|
- Ensure `clientSecret` is provided
|
|
|
|
|
- Ensure `refreshToken` is provided (from Twitch Token Generator with "Include Refresh Token" checked)
|
|
|
|
|
|
|
|
|
|
## Capabilities & limits
|
|
|
|
|
## Configuration reference (Twitch)
|
|
|
|
|
|
|
|
|
|
**Supported:**
|
|
|
|
|
- ✅ Channel messages (group chat)
|
|
|
|
|
- ✅ Whispers/DMs (received but replies not supported - Twitch doesn't allow bots to send whispers)
|
|
|
|
|
- ✅ Markdown stripping (automatically applied)
|
|
|
|
|
- ✅ Message chunking (500 char limit)
|
|
|
|
|
- ✅ Access control (user ID allowlist, role-based)
|
|
|
|
|
- ✅ @mention requirement
|
|
|
|
|
- ✅ Automatic token refresh (with RefreshingAuthProvider)
|
|
|
|
|
- ✅ Multi-account support
|
|
|
|
|
|
|
|
|
|
**Not supported:**
|
|
|
|
|
- ❌ Native reactions
|
|
|
|
|
- ❌ Threaded replies
|
|
|
|
|
- ❌ Message editing
|
|
|
|
|
- ❌ Message deletion
|
|
|
|
|
- ❌ Rich embeds/media uploads (sends media URLs as text)
|
|
|
|
|
|
|
|
|
|
## Config reference
|
|
|
|
|
Full configuration: [Configuration](/gateway/configuration)
|
|
|
|
|
|
|
|
|
|
### Account config
|
|
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
|
{
|
|
|
|
|
username: string, // Bot username (required)
|
|
|
|
|
token: string, // OAuth token with chat:read and chat:write (required)
|
|
|
|
|
clientId: string, // Twitch Client ID (required)
|
|
|
|
|
channel?: string, // Channel to join (default: username)
|
|
|
|
|
username: string, // Bot username
|
|
|
|
|
token: string, // OAuth token with chat:read and chat:write
|
|
|
|
|
clientId: string, // Twitch Client ID
|
|
|
|
|
channel: string, // Channel to join
|
|
|
|
|
enabled?: boolean, // Enable this account (default: true)
|
|
|
|
|
clientSecret?: string, // For RefreshingAuthProvider
|
|
|
|
|
refreshToken?: string, // For RefreshingAuthProvider
|
|
|
|
|
@ -424,6 +440,21 @@ If you see "token refresh disabled (no refresh token)":
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Provider options:
|
|
|
|
|
- `channels.twitch.enabled`: enable/disable channel startup.
|
|
|
|
|
- `channels.twitch.accounts.<accountName>.username`: bot username.
|
|
|
|
|
- `channels.twitch.accounts.<accountName>.token`: OAuth token.
|
|
|
|
|
- `channels.twitch.accounts.<accountName>.clientId`: Twitch Client ID.
|
|
|
|
|
- `channels.twitch.accounts.<accountName>.channel`: channel to join.
|
|
|
|
|
- `channels.twitch.accounts.<accountName>.enabled`: enable/disable account (default: true).
|
|
|
|
|
- `channels.twitch.accounts.<accountName>.clientSecret`: for RefreshingAuthProvider.
|
|
|
|
|
- `channels.twitch.accounts.<accountName>.refreshToken`: for RefreshingAuthProvider.
|
|
|
|
|
- `channels.twitch.accounts.<accountName>.expiresIn`: token expiry in seconds.
|
|
|
|
|
- `channels.twitch.accounts.<accountName>.obtainmentTimestamp`: token obtained timestamp.
|
|
|
|
|
- `channels.twitch.accounts.<accountName>.allowFrom`: user ID allowlist.
|
|
|
|
|
- `channels.twitch.accounts.<accountName>.allowedRoles`: role-based access control.
|
|
|
|
|
- `channels.twitch.accounts.<accountName>.requireMention`: require @mention (default: false).
|
|
|
|
|
|
|
|
|
|
## Tool actions
|
|
|
|
|
|
|
|
|
|
The agent can call `twitch` with action:
|
|
|
|
|
|