fix(ci): clear check-additional follow-up regressions (#63934)

* fix(ci): route messaging temp files through openclaw tmp dir

* fix(ci): clear qa-lab follow-up guardrails

* fix(ci): own-check ACP fallback resolvers

* fix(ci): preserve memory-core write error causes

* fix(ci): narrow qa-channel boundary alias

* fix(test): type memory-core dreaming api stubs
This commit is contained in:
Altay
2026-04-09 23:47:59 +01:00
committed by GitHub
parent 8e62df661e
commit 8cf02e7c47
19 changed files with 93 additions and 58 deletions

View File

@@ -1,5 +1,4 @@
import fs from "node:fs/promises";
import os from "node:os";
import path from "node:path";
import type {
CreateSandboxBackendParams,
@@ -512,5 +511,5 @@ function buildOpenShellSandboxName(scopeKey: string): string {
}
function resolveOpenShellTmpRoot(): string {
return path.resolve(resolvePreferredOpenClawTmpDir() ?? os.tmpdir());
return path.resolve(resolvePreferredOpenClawTmpDir());
}