From a0bd7d93756adc434c093ec7c99f92329fb9ceea Mon Sep 17 00:00:00 2001 From: Marc J Saint-jour <82672745+Junebugg1214@users.noreply.github.com> Date: Thu, 12 Mar 2026 18:41:09 -0400 Subject: [PATCH] feat: integrate Cortex local memory into OpenClaw --- src/auto-reply/reply/commands-info.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/auto-reply/reply/commands-info.ts b/src/auto-reply/reply/commands-info.ts index 07dc5371830..88dc3c0637f 100644 --- a/src/auto-reply/reply/commands-info.ts +++ b/src/auto-reply/reply/commands-info.ts @@ -6,6 +6,7 @@ import { buildHelpMessage, } from "../status.js"; import { buildContextReply } from "./commands-context-report.js"; +import { handleCortexCommand } from "./commands-cortex.js"; import { buildExportSessionReply } from "./commands-export-session.js"; import { buildStatusReply } from "./commands-status.js"; import type { CommandHandler } from "./commands-types.js"; @@ -133,6 +134,7 @@ export const handleStatusCommand: CommandHandler = async (params, allowTextComma } const reply = await buildStatusReply({ cfg: params.cfg, + ctx: params.ctx, command: params.command, sessionEntry: params.sessionEntry, sessionKey: params.sessionKey, @@ -226,3 +228,5 @@ export const handleWhoamiCommand: CommandHandler = async (params, allowTextComma } return { shouldContinue: false, reply: { text: lines.join("\n") } }; }; + +export { handleCortexCommand };