Repositories / OpenClaw
Focused tour of agent execution, memory search, and tool orchestration; not a whole-project map.
Resolves the agent-scoped memory manager through the lazily loaded memory runtime.
Stored evidence from this immutable analysis snapshot
const { getMemorySearchManager } = await loadMemoryToolRuntime();const startedAt = Date.now();const { manager, debug, error } = await getMemorySearchManager({cfg: params.cfg,agentId: params.agentId,purpose: params.purpose,...(params.acquireLocalService ? { acquireLocalService: params.acquireLocalService } : {}),...(params.withLease ? { withLease: params.withLease } : {}),
});