Files
openclaw/extensions/codex/src/app-server/compact.ts
2026-05-15 15:17:12 +01:00

385 lines
12 KiB
TypeScript

import {
embeddedAgentLog,
formatErrorMessage,
isActiveHarnessContextEngine,
resolveContextEngineOwnerPluginId,
runHarnessContextEngineMaintenance,
type CompactEmbeddedPiSessionParams,
type EmbeddedPiCompactResult,
} from "openclaw/plugin-sdk/agent-harness-runtime";
import {
defaultCodexAppServerClientFactory,
type CodexAppServerClientFactory,
} from "./client-factory.js";
import type { CodexAppServerClient, CodexServerNotificationHandler } from "./client.js";
import { resolveCodexAppServerRuntimeOptions } from "./config.js";
import { isJsonObject, type CodexServerNotification, type JsonObject } from "./protocol.js";
import { readCodexAppServerBinding } from "./session-binding.js";
type CodexNativeCompactionCompletion = {
signal: "thread/compacted" | "item/completed";
turnId?: string;
itemId?: string;
};
type CodexNativeCompactionWaiter = {
promise: Promise<CodexNativeCompactionCompletion>;
startTimeout: () => void;
cancel: () => void;
};
const DEFAULT_CODEX_COMPACTION_WAIT_TIMEOUT_MS = 5 * 60 * 1000;
const warnedIgnoredCompactionOverrides = new Set<string>();
export async function maybeCompactCodexAppServerSession(
params: CompactEmbeddedPiSessionParams,
options: { pluginConfig?: unknown; clientFactory?: CodexAppServerClientFactory } = {},
): Promise<EmbeddedPiCompactResult | undefined> {
const activeContextEngine = isActiveHarnessContextEngine(params.contextEngine)
? params.contextEngine
: undefined;
warnIfIgnoringOpenClawCompactionOverrides(params);
const nativeResult = await compactCodexNativeThread(params, options);
if (activeContextEngine && nativeResult?.ok && nativeResult.compacted) {
try {
await runHarnessContextEngineMaintenance({
contextEngine: activeContextEngine,
sessionId: params.sessionId,
sessionKey: params.sessionKey,
sessionFile: params.sessionFile,
reason: "compaction",
runtimeContext: params.contextEngineRuntimeContext,
config: params.config,
});
} catch (error) {
embeddedAgentLog.warn("context engine compaction maintenance failed after Codex compaction", {
sessionId: params.sessionId,
engineId: activeContextEngine.info.id,
error: formatErrorMessage(error),
});
}
}
return nativeResult;
}
function warnIfIgnoringOpenClawCompactionOverrides(params: CompactEmbeddedPiSessionParams): void {
const activeContextEngine = isActiveHarnessContextEngine(params.contextEngine)
? params.contextEngine
: undefined;
const ignoredConfig = readIgnoredCompactionOverridePaths(params, activeContextEngine);
if (ignoredConfig.length === 0) {
return;
}
const warningKey = ignoredConfig.join("\0");
if (warnedIgnoredCompactionOverrides.has(warningKey)) {
return;
}
warnedIgnoredCompactionOverrides.add(warningKey);
embeddedAgentLog.warn(
"ignoring OpenClaw compaction overrides for Codex app-server compaction; Codex uses native server-side compaction",
{
sessionId: params.sessionId,
sessionKey: params.sessionKey,
ignoredConfig,
},
);
}
function readIgnoredCompactionOverridePaths(
params: CompactEmbeddedPiSessionParams,
activeContextEngine?: CompactEmbeddedPiSessionParams["contextEngine"],
): string[] {
const ignored = new Set<string>();
const configuredContextEngine = readStringPath(params.config, [
"plugins",
"slots",
"contextEngine",
]);
const runtimeContextEnginePlugin =
typeof params.contextEngineRuntimeContext?.contextEnginePluginId === "string"
? params.contextEngineRuntimeContext.contextEnginePluginId.trim()
: "";
const activeContextEnginePlugin = resolveContextEngineOwnerPluginId(activeContextEngine);
for (const entry of readCompactionOverrideEntries(params)) {
const localProvider =
typeof entry.record.provider === "string" ? entry.record.provider.trim() : "";
const inheritedProvider =
!localProvider && typeof entry.inheritedRecord?.provider === "string"
? entry.inheritedRecord.provider.trim()
: "";
const provider = localProvider || inheritedProvider;
const providerPath = localProvider
? `${entry.path}.compaction.provider`
: inheritedProvider && entry.inheritedPath
? `${entry.inheritedPath}.compaction.provider`
: undefined;
const activeLosslessContextEngine =
provider.toLowerCase() === "lossless-claw" &&
(activeContextEnginePlugin === "lossless-claw" ||
runtimeContextEnginePlugin.toLowerCase() === "lossless-claw" ||
configuredContextEngine?.toLowerCase() === "lossless-claw");
if (activeLosslessContextEngine) {
continue;
}
if (typeof entry.record.model === "string" && entry.record.model.trim()) {
ignored.add(`${entry.path}.compaction.model`);
}
if (providerPath) {
ignored.add(providerPath);
}
}
return [...ignored];
}
function readCompactionOverrideEntries(params: CompactEmbeddedPiSessionParams): Array<{
path: string;
record: Record<string, unknown>;
inheritedRecord?: Record<string, unknown>;
inheritedPath?: string;
}> {
const entries: Array<{
path: string;
record: Record<string, unknown>;
inheritedRecord?: Record<string, unknown>;
inheritedPath?: string;
}> = [];
const defaultCompaction = readRecord(readRecord(params.config?.agents)?.defaults)?.compaction;
const defaultRecord = readRecord(defaultCompaction);
if (defaultRecord) {
entries.push({ path: "agents.defaults", record: defaultRecord });
}
const agentId = readAgentIdFromSessionKey(params.sessionKey ?? params.sandboxSessionKey);
if (!agentId) {
return entries;
}
const agents = Array.isArray(params.config?.agents?.list) ? params.config.agents.list : [];
const activeAgent = agents.find((agent) => {
const id = typeof agent?.id === "string" ? agent.id.trim().toLowerCase() : "";
return id === agentId;
});
const agentCompaction = readRecord(activeAgent)?.compaction;
const agentRecord = readRecord(agentCompaction);
if (agentRecord) {
entries.push({
path: `agents.list.${agentId}`,
record: agentRecord,
inheritedRecord: defaultRecord,
inheritedPath: "agents.defaults",
});
}
return entries;
}
function readAgentIdFromSessionKey(sessionKey: string | undefined): string | undefined {
const parts = sessionKey?.trim().toLowerCase().split(":").filter(Boolean) ?? [];
if (parts.length < 3 || parts[0] !== "agent") {
return undefined;
}
return parts[1]?.trim() || undefined;
}
function readRecord(value: unknown): Record<string, unknown> | undefined {
return value && typeof value === "object" && !Array.isArray(value)
? (value as Record<string, unknown>)
: undefined;
}
function readStringPath(value: unknown, path: readonly string[]): string | undefined {
let current = value;
for (const segment of path) {
current = readRecord(current)?.[segment];
}
return typeof current === "string" && current.trim() ? current.trim() : undefined;
}
async function compactCodexNativeThread(
params: CompactEmbeddedPiSessionParams,
options: { pluginConfig?: unknown; clientFactory?: CodexAppServerClientFactory } = {},
): Promise<EmbeddedPiCompactResult | undefined> {
const appServer = resolveCodexAppServerRuntimeOptions({ pluginConfig: options.pluginConfig });
const binding = await readCodexAppServerBinding(params.sessionFile, { config: params.config });
if (!binding?.threadId) {
return { ok: false, compacted: false, reason: "no codex app-server thread binding" };
}
const requestedAuthProfileId = params.authProfileId?.trim() || undefined;
if (
requestedAuthProfileId &&
binding.authProfileId &&
binding.authProfileId !== requestedAuthProfileId
) {
return { ok: false, compacted: false, reason: "auth profile mismatch for session binding" };
}
const clientFactory = options.clientFactory ?? defaultCodexAppServerClientFactory;
const client = await clientFactory(
appServer.start,
requestedAuthProfileId ?? binding.authProfileId,
params.agentDir,
params.config,
);
const waiter = createCodexNativeCompactionWaiter(client, binding.threadId);
let completion: CodexNativeCompactionCompletion;
try {
await client.request("thread/compact/start", {
threadId: binding.threadId,
});
embeddedAgentLog.info("started codex app-server compaction", {
sessionId: params.sessionId,
threadId: binding.threadId,
});
waiter.startTimeout();
completion = await waiter.promise;
} catch (error) {
waiter.cancel();
return {
ok: false,
compacted: false,
reason: formatCompactionError(error),
};
}
embeddedAgentLog.info("completed codex app-server compaction", {
sessionId: params.sessionId,
threadId: binding.threadId,
signal: completion.signal,
turnId: completion.turnId,
itemId: completion.itemId,
});
return {
ok: true,
compacted: true,
result: {
summary: "",
firstKeptEntryId: "",
tokensBefore: params.currentTokenCount ?? 0,
details: {
backend: "codex-app-server",
threadId: binding.threadId,
signal: completion.signal,
turnId: completion.turnId,
itemId: completion.itemId,
},
},
};
}
function createCodexNativeCompactionWaiter(
client: CodexAppServerClient,
threadId: string,
): CodexNativeCompactionWaiter {
let settled = false;
let removeHandler: () => void = () => {};
let timeout: ReturnType<typeof setTimeout> | undefined;
let failWaiter: (error: Error) => void = () => {};
const promise = new Promise<CodexNativeCompactionCompletion>((resolve, reject) => {
const cleanup = (): void => {
removeHandler();
if (timeout) {
clearTimeout(timeout);
}
};
const complete = (completion: CodexNativeCompactionCompletion): void => {
if (settled) {
return;
}
settled = true;
cleanup();
resolve(completion);
};
const fail = (error: Error): void => {
if (settled) {
return;
}
settled = true;
cleanup();
reject(error);
};
failWaiter = fail;
const handler: CodexServerNotificationHandler = (notification) => {
const completion = readNativeCompactionCompletion(notification, threadId);
if (completion) {
complete(completion);
}
};
removeHandler = client.addNotificationHandler(handler);
});
return {
promise,
startTimeout(): void {
if (settled || timeout) {
return;
}
timeout = setTimeout(() => {
failWaiter(new Error(`timed out waiting for codex app-server compaction for ${threadId}`));
}, resolveCompactionWaitTimeoutMs());
timeout.unref?.();
},
cancel(): void {
if (settled) {
return;
}
settled = true;
removeHandler();
if (timeout) {
clearTimeout(timeout);
}
},
};
}
function readNativeCompactionCompletion(
notification: CodexServerNotification,
threadId: string,
): CodexNativeCompactionCompletion | undefined {
const params = notification.params;
if (!isJsonObject(params) || readString(params, "threadId", "thread_id") !== threadId) {
return undefined;
}
if (notification.method === "thread/compacted") {
return {
signal: "thread/compacted",
turnId: readString(params, "turnId", "turn_id"),
};
}
if (notification.method !== "item/completed") {
return undefined;
}
const item = isJsonObject(params.item) ? params.item : undefined;
if (readString(item, "type") !== "contextCompaction") {
return undefined;
}
return {
signal: "item/completed",
turnId: readString(params, "turnId", "turn_id"),
itemId: readString(item, "id") ?? readString(params, "itemId", "item_id", "id"),
};
}
function resolveCompactionWaitTimeoutMs(): number {
const raw = process.env.OPENCLAW_CODEX_COMPACTION_WAIT_TIMEOUT_MS?.trim();
const parsed = raw ? Number.parseInt(raw, 10) : Number.NaN;
if (Number.isFinite(parsed) && parsed > 0) {
return parsed;
}
return DEFAULT_CODEX_COMPACTION_WAIT_TIMEOUT_MS;
}
function readString(params: JsonObject | undefined, ...keys: string[]): string | undefined {
if (!params) {
return undefined;
}
for (const key of keys) {
const value = params[key];
if (typeof value === "string") {
return value;
}
}
return undefined;
}
function formatCompactionError(error: unknown): string {
if (error instanceof Error) {
return error.message;
}
return String(error);
}