/** * Milady plugin for elizaOS — workspace context, session keys, and agent * lifecycle actions (restart). * * Compaction is handled by core auto-compaction in the recent-messages provider. * Memory search/get actions are superseded by plugin-scratchpad. */ import type { Plugin } from "@elizaos/core"; export type MiladyPluginConfig = { workspaceDir?: string; bootstrapMaxChars?: number; sessionStorePath?: string; agentId?: string; }; export declare function createMiladyPlugin(config?: MiladyPluginConfig): Plugin; //# sourceMappingURL=milady-plugin.d.ts.map