Plugin Guide
Last updated
Last updated
Use your interests and expertise, with some imagination, to think of new Plugins and workflows. Similar to Zapier or IFTTT, Plugins are the way Agents can interact with the world.
To let any Eliza agent use your Plugin, they must be registered here: https://github.com/elizaos-plugins/registry
Plugins are modular extensions that enhance the capabilities of ElizaOS agents. They provide a flexible way to add new functionality, integrate external services, and customize agent behavior across different platforms.
info
Key Improvements in V2
Unified API: Almost everything is accessible via runtime.methodName()
in the agent runtime for simpler development
Enhanced Model System: The new useModel
approach allows for flexible model provider registration
Events System: Formal support for event-based programming
Plugin Creation Workflow: Simplified creation and testing via CLI
Testing Infrastructure: Built-in support for plugin testing
No Monorepo Required: Complete plugin development without touching the core codebase
Plugin Registry: Manages the catalog of available plugins and handles their registration with the runtime
Bootstrap Plugin: Initializes core functionality required for all agents to operate
The ElizaOS plugin system maintains the same basic concept as previous versions, with several new extension points (events, routes, tests, models) and features that significantly improve the developer experience.
Browse plugins the elizaOS community made here: Package Showcase
elizaOS maintains an official package registry at github.com/elizaos-plugins/registry.
The new CLI tool introduces a streamlined workflow for plugin development without ever needing to touch the ElizaOS monorepo directly:
Create: npm create eliza
- Initialize a new plugin project with proper structure
Develop: Edit the plugin code in the generated project structure
Test: npx elizaos test
- Test the plugin functionality
Run: npx elizaos start
- Run the plugin with a default agent
Publish: npx elizaos publish
- Share your plugin with others
Note: at time of publishing, use
npm create eliza@beta
until main version is uploaded
You can create a new ElizaOS plugin using the CLI:
When prompted, select "Plugin" as the type to create. The CLI will guide you through the setup process, creating a plugin with the proper structure and dependencies.
There are several ways to add plugins to your ElizaOS project:
Via package.json
Via Character Definition
Via CLI Commands
Configure plugin settings in your character definition:
The AgentRuntime automatically loads the Bootstrap Plugin during initialization, before any other plugins:
If you're a plugin developer, you can publish your plugin to make it available to others. The ElizaOS CLI provides several options for publishing your plugin depending on your needs.
First, make sure your plugin is built and ready for distribution:
GitHub Publishing
npm Publishing
Test Mode
Additional Options
Publishing to GitHub is the recommended approach for sharing your plugin with the ElizaOS community:
This will:
Build and package your plugin
Create or update a GitHub repository in the elizaos-plugins organization
Add your plugin to the ElizaOS registry (if you're a registry maintainer)
For first-time publishers, the CLI will guide you through setting up GitHub credentials for publishing.
GitHub publishing is ideal for open-source plugins that you want to share with the community and have listed in the official registry.
info
When submitting a plugin to the elizaOS Registry, include:
Working Demo: Screenshots or video of your plugin in action
Test Results: Evidence of successful integration and error handling
Configuration Example: Show how to properly configure your plugin
Eliza uses a unified plugin architecture where everything is a plugin - including services, adapters, actions, evaluators, and providers. This approach ensures consistent behavior and better extensibility.
Each plugin can provide one or more of the following components:
Services
Platform integrations (Discord, Twitter, etc.) or specialized capabilities
Actions
Executable functions triggered by the agent (reply, generate content, etc.)
Providers
Context providers that supply info to the agent during decision making
Evaluators
Analyze conversations to extract insights and improve future interactions
Adapters
Database or storage system integrations
Model Handlers
Register handlers for different model types (text generation, embeddings, etc.)
Event Handlers
React to system events like messages, connections, or actions
API Routes
Add custom REST endpoints to the agent's HTTP interface
Tests
Include test suites to verify plugin functionality
All plugins implement the core Plugin interface:
Services are the core integration points for external platforms. A properly implemented service:
Each plugin repository should follow this structure:
Your plugin's index.ts
should export a Plugin object:
Your plugin's package.json
should include an agentConfig
section:
Plugins access configuration through the runtime with the following precedence:
Character settings secrets (highest priority)
Character settings
Global environment settings
Access Pattern
Configuration in Character File
The Bootstrap Plugin is a foundational component of ElizaOS that initializes the core functionality required for agents to operate. It's automatically loaded as part of the initialization process, establishing the minimum viable capabilities that all agents need.
The Bootstrap Plugin registers essential components across several categories to provide a foundation for all agents. These components can be extended by custom plugins.
Actions
Providers
Services & Evaluators
Event Handlers
replyAction
Generates and sends a response to a message
followRoomAction
Enables an agent to actively follow a room
unfollowRoomAction
Stops an agent from following a room
muteRoomAction
Mutes notifications from a room
unmuteRoomAction
Unmutes notifications from a room
sendMessageAction
Sends a message to a specific room
ignoreAction
Explicitly ignores a message
noneAction
Acknowledges a message without taking action
updateEntityAction
Updates properties of an entity
choiceAction
Presents choices to users and handles responses
updateRoleAction
Updates a user's role in a world
updateSettingsAction
Updates agent or world settings
While the Bootstrap Plugin provides core functionality, it's designed to be extended by other plugins. Custom plugins can:
Add new actions - Extend the agent's capabilities
Register additional providers - Supply more contextual information
Add evaluators - Create new ways to analyze and learn from interactions
Handle additional events - React to more system events
Initialize custom services - Provide new functionality
When working with plugins in relation to the Bootstrap Plugin:
Don't modify bootstrap directly - Instead, create custom plugins to extend functionality
Understand provider contribution - Know how each provider contributes to the agent's context
Learn the core actions - Become familiar with the actions that all agents can perform
Leverage event handlers - Use the event system for reactive behavior
Extend, don't replace - Build on top of bootstrap functionality rather than replacing it
When developing a new plugin, focus on these key aspects:
Service Implementation: Create a solid service class following the pattern above
Proper Error Handling: Handle API failures gracefully
Type Definitions: Define clear interfaces and types
Documentation: Include detailed setup instructions
Tests: Add test cases for your functionality
During development, you can test your plugin locally:
When submitting a plugin to the elizaOS Registry, include:
Working Demo: Screenshots or video of your plugin in action
Test Results: Evidence of successful integration and error handling
Configuration Example: Show how to properly configure your plugin
Quality Checklist:
A plugin is a modular extension that adds new capabilities to ElizaOS agents, such as API integrations, custom actions, or platform connections. Plugins allow you to expand agent functionality and share reusable components with other developers.
Create a plugin when you need custom functionality not available in existing plugins, want to integrate with external services, or plan to share reusable agent capabilities with the community.
Plugin dependencies are managed through your project's package.json
. You can add plugins directly using npm or the ElizaOS CLI, and they will be automatically loaded when your project starts.
Yes, you can use the --plugin
flag with the start
command to include local plugins during development:
Actions handle specific agent responses or behaviors, while Services provide platform integrations (like Discord or Twitter) or ongoing background functionality that multiple actions might use.
Implement proper backoff strategies in your service implementation and consider using a queue system for message handling to respect platform rate limits.
Knowledge Data
Track analytics from your docs
Onchain Science
Add support widgets to your docs
Web2 Science
Add extra functionality to your docs