/** * @fozikio/tools-maintenance — maintenance tools plugin for cortex-engine. * * Provides 6 tools: retrieve, forget, find_duplicates, sleep_pressure, * consolidation_status, retrieval_audit. * Uses the generic CortexStore API and engine functions. */ import type { ToolPlugin } from '@fozikio/cortex-engine'; declare const plugin: ToolPlugin; export default plugin; export { retrieveTool } from './tools/retrieve.js'; export { forgetTool } from './tools/forget.js'; export { findDuplicatesTool } from './tools/find-duplicates.js'; export { sleepPressureTool } from './tools/sleep-pressure.js'; export { consolidationStatusTool } from './tools/consolidation-status.js'; export { retrievalAuditTool } from './tools/retrieval-audit.js'; //# sourceMappingURL=index.d.ts.map