@elizaos/plugin-discord 1.0.0-beta.8 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -4
- package/dist/index.d.ts +5 -0
- package/dist/index.js +951 -498
- package/dist/index.js.map +1 -1
- package/package.json +12 -7
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# @elizaos/
|
|
1
|
+
# @elizaos/plugin-discord
|
|
2
2
|
|
|
3
|
-
A Discord
|
|
3
|
+
A Discord plugin implementation for ElizaOS, enabling rich integration with Discord servers for managing interactions, voice, and message handling.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
@@ -21,14 +21,17 @@ bun install
|
|
|
21
21
|
|
|
22
22
|
## Configuration
|
|
23
23
|
|
|
24
|
-
The
|
|
24
|
+
The plugin requires the following environment variables:
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
27
|
# Discord API Credentials
|
|
28
28
|
DISCORD_APPLICATION_ID=your_application_id
|
|
29
29
|
DISCORD_API_TOKEN=your_api_token
|
|
30
30
|
|
|
31
|
-
# Optional Settings
|
|
31
|
+
# Optional Settings
|
|
32
|
+
# Comma-separated list of Discord channel IDs to restrict the bot to.
|
|
33
|
+
# If not set, the bot operates in all channels as usual.
|
|
34
|
+
CHANNEL_IDS=123456789012345678,987654321098765432
|
|
32
35
|
```
|
|
33
36
|
|
|
34
37
|
## Usage
|