/** * 模块1: 结构化记忆系统(多 Agent 隔离版) * * 每个动态 Agent(如 WeCom 用户/群组)拥有独立的记忆空间。 * 工具使用 OpenClawPluginToolFactory 模式,从 ctx.agentId 获取当前 Agent。 * 钩子从 ctx.agentId 获取当前 Agent。 */ import type { OpenClawPluginApi } from "openclaw/plugin-sdk"; import { type MemoryConfig } from "../types.js"; export declare function registerStructuredMemory(api: OpenClawPluginApi, config?: MemoryConfig): void;