ClawLayer plugin architecture enables modular extensibility.
Plugins extend agent capabilities through a standardized interface.
Actions: Define what the plugin can do
Providers: Supply data to agents
Services: Run background tasks
Middleware: Process requests/responses
Load: Plugin is imported
Initialize: Setup and configuration
Register: Actions and services registered
Active: Plugin is operational
Cleanup: Resources released
Components
Development
Create a Plugin
Last updated 7 minutes ago
plugin.on('message', handler);
plugin.registerHook('pre-send', middleware);