/** * System Reminder 条目 * 由各拦截器注册,最终由 SystemReminderInterceptor 统一注入 */ export type SystemReminderItem = { /** 来源标识,用于去重(同一 source 只保留最新) */ source: string; /** 提示内容(纯文本或 Markdown) */ content: string; /** 优先级(可选,数值越小越靠前,默认 100) */ priority?: number; };