Skip to content

NullConversationManager

Defined in: src/conversation-manager/null-conversation-manager.ts:15

A no-op conversation manager that does not modify the conversation history.

new NullConversationManager(): NullConversationManager;

NullConversationManager

get name(): string;

Defined in: src/conversation-manager/null-conversation-manager.ts:19

Unique identifier for this plugin.

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:.

Plugin.name

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.

ParameterType
_agentAgentData

void

Plugin.initAgent