COD3X agents are extensible. Out of the box, they come with market data tools, position management, and order execution. But every trading strategy needs different inputs — sentiment data, on-chain analytics, custom indicators, external APIs, DeFi protocol interactions.
Plugins add those capabilities without modifying the core agent.
What Plugins Are#
A plugin is a modular capability that an agent can invoke during goal execution. When an agent reasons about a trade, it can call any installed plugin as a tool — just like it calls built-in tools for market data or order placement.
Plugins come in five types:
How to Install#
- Browse the marketplace from your agent's settings panel
- Find a plugin by category, name, or description
- One-click install — the plugin becomes available to all your agents
- Configure API keys if the plugin connects to an external service
- Enable per-agent — decide which agents should use which plugins
Installed plugins appear in the agent's tool list. The AI model sees the plugin's description and knows when to invoke it.
Verified vs. Unverified#
Plugins have two trust levels:
Verified — Reviewed by the COD3X team. Code audited for security, functionality tested, description accurate. Verified plugins have a badge in the marketplace.
Unverified — Community-submitted. The plugin works and follows the interface spec, but hasn't undergone formal review. Use at your own judgment.
All plugins — verified or not — run in a sandboxed execution environment. A plugin can't access your wallet keys, can't modify other plugins, and can't bypass the agent's risk parameters.
Use Cases#
Twitter / Social Sentiment#
A LangChain plugin that monitors crypto Twitter for sentiment signals. The agent queries sentiment before making trade decisions:
- Aggregate sentiment score for a token (bullish/bearish/neutral)
- Volume of mentions over the last hour
- Notable accounts discussing the token
- Sentiment trend direction (improving or degrading)
An agent might skip a long entry when sentiment is overwhelmingly bearish, or increase conviction when technical signals align with strongly bullish sentiment.
On-Chain Whale Tracking#
An ABI plugin that monitors large wallet movements:
- Whale accumulation or distribution patterns
- Large transfers to/from exchanges (potential selling pressure)
- Smart money positioning across DeFi protocols
When a whale deposits 10,000 ETH to an exchange, the agent factors potential sell pressure into its next decision.
Custom Indicator Calculation#
An API plugin that computes proprietary technical indicators not available in the standard toolset:
- Custom oscillators built on multiple timeframe data
- Composite indicators that combine volume, volatility, and momentum
- Market microstructure signals from order book analysis
DeFi Yield Optimization#
An ABI plugin that interacts with lending protocols:
- Check borrow/supply rates across Aave, Moonwell, Morpho
- Execute deposit/withdraw operations as part of a yield strategy
- Monitor liquidation distances and health factors
An agent could automatically move idle capital into the highest-yielding lending pool and withdraw it when a trading opportunity appears.
Creating a Plugin#
Building a plugin requires implementing a standard interface:
- Define the tool schema — Name, description, input parameters, output format
- Implement the handler — The function that executes when the agent invokes the plugin
- Submit to marketplace — Upload with metadata, description, and optional documentation URL
- Await verification (optional) — Submit for team review to earn verified status
The plugin interface is the same regardless of type. LangChain tools, ABI calls, API wrappers, and MCP tools all follow the same schema pattern — structured inputs, structured outputs, clear descriptions that help the AI model understand when to use the tool.
Plugin Economy#
Popular plugins drive platform engagement:
- Plugin creators can track install counts and usage statistics
- High-quality plugins attract users to the platform
- Plugins that provide unique data sources become competitive advantages for agents that use them
The marketplace grows with the community. Every new plugin is a new capability that every agent on the platform can access.
Agents do more when they have more tools. Browse the plugin marketplace, install with one click, and give your agents capabilities that no one else has.