trellis
Version:
Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications
17 lines • 619 B
TypeScript
/**
* Agent Memory Plugin — Trellis plugin for graph-persisted conversations.
*
* Registers the agent memory ontology and subscribes to entity events
* so consumers can react to conversation/message lifecycle changes.
*
* @module trellis/plugins/agent-memory
*/
import type { PluginDef } from '../../core/plugins/types.js';
/**
* Create the agent memory plugin instance.
*
* Returns a PluginDef that registers Conversation/Message schemas
* and emits well-known events on conversation lifecycle changes.
*/
export declare function createAgentMemoryPlugin(): PluginDef;
//# sourceMappingURL=plugin.d.ts.map