NullConversationManager
Defined in: src/conversation-manager/null-conversation-manager.ts:15
A no-op conversation manager that does not modify the conversation history.
Implements
Section titled “Implements”Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”new NullConversationManager(): NullConversationManager;Returns
Section titled “Returns”NullConversationManager
Accessors
Section titled “Accessors”Get Signature
Section titled “Get Signature”get name(): string;Defined in: src/conversation-manager/null-conversation-manager.ts:19
Unique identifier for this plugin.
Returns
Section titled “Returns”string
A stable string identifier for the plugin. Used for logging, duplicate detection, and plugin management.
For strands-vended plugins, names should be prefixed with strands:.
Implementation of
Section titled “Implementation of”Methods
Section titled “Methods”initAgent()
Section titled “initAgent()”initAgent(_agent): void;Defined in: src/conversation-manager/null-conversation-manager.ts:24
Initialize the plugin with the agent instance.
Implement this method to register hooks and perform custom initialization. Tool registration from getTools is handled automatically by the PluginRegistry.
Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
_agent | AgentData |
Returns
Section titled “Returns”void