From 2c4dfd61d4ce2ee7d31096b74950ff3550dd67a7 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:21 -0400 Subject: [PATCH] feat: integrate Cortex local memory into OpenClaw --- src/config/types.agents.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config/types.agents.ts b/src/config/types.agents.ts index a979506a2ab..7e58ca06a34 100644 --- a/src/config/types.agents.ts +++ b/src/config/types.agents.ts @@ -1,5 +1,5 @@ import type { ChatType } from "../channels/chat-type.js"; -import type { AgentDefaultsConfig } from "./types.agent-defaults.js"; +import type { AgentCortexConfig, AgentDefaultsConfig } from "./types.agent-defaults.js"; import type { AgentModelConfig, AgentSandboxConfig } from "./types.agents-shared.js"; import type { HumanDelayConfig, IdentityConfig } from "./types.base.js"; import type { GroupChatConfig } from "./types.messages.js"; @@ -68,6 +68,7 @@ export type AgentConfig = { /** Optional allowlist of skills for this agent (omit = all skills; empty = none). */ skills?: string[]; memorySearch?: MemorySearchConfig; + cortex?: AgentCortexConfig; /** Human-like delay between block replies for this agent. */ humanDelay?: HumanDelayConfig; /** Optional per-agent heartbeat overrides. */