From f07efd4d70ec32da717dd258913ba4c337861909 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:29 -0400 Subject: [PATCH] feat: integrate Cortex local memory into OpenClaw --- ui/src/ui/app-render.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/ui/src/ui/app-render.ts b/ui/src/ui/app-render.ts index 1214bcc93a6..220cc5807a0 100644 --- a/ui/src/ui/app-render.ts +++ b/ui/src/ui/app-render.ts @@ -372,6 +372,18 @@ export function renderApp(state: AppViewState) { }, onConnect: () => state.connect(), onRefresh: () => state.loadOverview(), + onOpenCortexPreview: () => { + state.tab = "chat"; + state.chatMessage = "/cortex preview"; + }, + onOpenCortexConflicts: () => { + state.tab = "chat"; + state.chatMessage = "/cortex conflicts"; + }, + onOpenCortexSync: () => { + state.tab = "chat"; + state.chatMessage = "/cortex sync coding"; + }, }) : nothing } @@ -1081,7 +1093,6 @@ export function renderApp(state: AppViewState) { models: state.debugModels, heartbeat: state.debugHeartbeat, eventLog: state.eventLog, - methods: (state.hello?.features?.methods ?? []).toSorted(), callMethod: state.debugCallMethod, callParams: state.debugCallParams, callResult: state.debugCallResult,