Skip to main content

Discord plugin for Crypto.com Agent Client

Project description

Crypto.com Agent Plugin – Discord

The Crypto.com Agent Plugin – Discord adds support for Discord bots to the Crypto.com Agent Client ecosystem. This plugin enables conversational agents to operate directly within Discord servers or DMs using the standard Agent SDK lifecycle and plugin architecture.

Features

Discord Integration

  • Respond to Discord messages in real-time via bot commands or free-form chat.
  • Automatically splits long messages (>2000 characters).
  • Uses Discord’s WebSocket gateway and event loop via discord.py.

Plugin Architecture

  • Packaged as a standalone Python plugin.
  • Uses Python entry points and PEP 621 standards (pyproject.toml).
  • Implements the AgentPlugin interface with setup() and run() lifecycle hooks.
  • Declares its role as a primary plugin — only one such plugin can control the main event loop.

Easy to Install and Extend

  • Fully decoupled from the core agent client.
  • Compatible with other plugins (e.g., storage, LangFuse, CLI).
  • Automatically discovered and initialized by the SDK.

Installation

Install the plugin into your environment:

pip install cryptocom-agent-plugin-discord

Usage

Importing the Plugin

from crypto_com_agent_plugin_discord import DiscordPlugin

Using with the Agent SDK

from crypto_com_agent_client import Agent
from crypto_com_agent_plugin_discord import DiscordPlugin

discord_plugin = DiscordPlugin(bot_token="YOUR_DISCORD_BOT_TOKEN")

agent = Agent.init(
    llm_config={...},
    blockchain_config={...},
    plugins={...},
    plugin_instances=[discord_plugin],
)

agent.start()

Plugin Lifecycle

This plugin defines:

  • mode = "primary" — only one primary plugin is started via agent.start().
  • setup(handler) — prepares Discord commands and message hooks.
  • run() — starts the asynchronous event loop and Discord bot gateway.
  • Optional on_ready(handler) (if needed in future).

Example

from crypto_com_agent_client import Agent
from crypto_com_agent_plugin_discord import DiscordPlugin

discord = DiscordPlugin(bot_token="MTAx...")

agent = Agent.init(
    llm_config={
        "provider": "OpenAI",
        "model": "gpt-4",
        "provider-api-key": "sk-...",
    },
    blockchain_config={
        "api-key": "YOUR_SDK_API_KEY",
    },
    plugins={
        "personality": {
            "tone": "professional",
            "language": "English",
            "verbosity": "medium",
        },
        "instructions": "Answer clearly and briefly.",
    },
    plugin_instances=[discord],
)

agent.start()

Entry Point Declaration

This plugin is auto-discoverable via pyproject.toml:

[tool.poetry.plugins."crypto_com_agent.plugins"]
discord = "crypto_com_agent_plugin_discord:DiscordPlugin"

This allows the Agent SDK to dynamically discover and initialize your plugin.

File Structure

crypto_com_agent_plugin_discord/
├── __init__.py
└── discord.py  # Main plugin implementation

Contributing

We welcome contributions! Please ensure your plugin adheres to the AgentPlugin interface and includes proper setup() and run() hooks.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file cryptocom_agent_plugin_discord-1.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for cryptocom_agent_plugin_discord-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e71d12b53d08d3810b583fae84f8ddfcc2d9b2c5572181ca8c3fab7b8f2a7266
MD5 f8aa89de3be3128b61c38d39a1a9bf11
BLAKE2b-256 7b8e1e6d6aae29f285fa171cbc63d6491ed658688cab4bbb6ef11f6500ab830d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page