This registry automatically syncs with the official elizaOS Plugin Registry to show you the most up-to-date plugins available for your elizaOS agents.

Available Plugins

How to Use Plugins

To install and use any of these plugins in your elizaOS project:
  1. Install the plugin using bun or elizaos cli:
    bun install @elizaos/plugin-name
    # or
    elizaos plugins add @elizaos/plugin-name
    
  2. Import and register the plugin in your agent configuration:
    import { pluginName } from '@elizaos/plugin-name';
    
    const character = {
      // ... your character configuration
      plugins: [pluginName]
    };
    
  3. Configure the plugin if it requires environment variables or additional setup (check the plugin’s documentation for specific requirements)

Contributing to the Registry

The plugin registry is community-driven. To add your plugin:
  1. Publish your plugin to npm with the @elizaos/plugin- prefix
  2. Submit a pull request to the elizaOS Plugin Registry
  3. Ensure compatibility with elizaOS v1.x
For detailed guidance on creating and publishing plugins, check out our Create a Plugin and Publish a Plugin guides.

Registry Status

This registry automatically updates every few hours to reflect the latest plugins available in the elizaOS ecosystem. If you don’t see a recently published plugin, please wait a few hours for the next sync.
Always review plugin documentation and source code before installation, especially for plugins that handle sensitive operations like wallet management or external API calls.