mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-14 23:26:14 +00:00
* feat(tooling): enforce noUncheckedIndexedAccess in the scripts lane Burns down all 153 scripts-lane errors (bench aggregation, release checks, i18n inventories, argv indexing) and flips the flag in tsconfig.scripts.json. Direct-Node-executed release harness scripts use local narrowing instead of workspace imports, which do not resolve under plain node execution. Benchmark measured loops untouched. * fix(scripts): import expect helpers via relative package sources tsconfig path aliases resolve from cwd under tsx, so release wrapper scripts running against old release target cwds could not resolve @openclaw/normalization-core (not a linked root dependency). Relative package-source imports match the established pattern on the adjacent lines and are cwd-independent; old-target planning verified directly.
450 lines
14 KiB
TypeScript
450 lines
14 KiB
TypeScript
// Codex App Server Protocol Source script supports OpenClaw repository automation.
|
|
import { spawnSync } from "node:child_process";
|
|
import fs from "node:fs/promises";
|
|
import path from "node:path";
|
|
import { expectDefined } from "../../packages/normalization-core/src/expect.js";
|
|
import { resolvePnpmRunner } from "../pnpm-runner.mjs";
|
|
import { stageCodexAppServerProtocolArtifacts } from "./codex-app-server-protocol-artifacts.js";
|
|
|
|
const PROTOCOL_SCHEMA_RELATIVE_PATH = "codex-rs/app-server-protocol/schema";
|
|
const DEFAULT_PROTOCOL_GENERATION_MIN_FREE_BYTES = 10 * 1024 * 1024 * 1024;
|
|
|
|
export const selectedCodexAppServerJsonSchemas = [
|
|
"DynamicToolCallParams.json",
|
|
"v2/ErrorNotification.json",
|
|
"v2/GetAccountResponse.json",
|
|
"v2/ModelListResponse.json",
|
|
"v2/ThreadResumeResponse.json",
|
|
"v2/ThreadStartResponse.json",
|
|
"v2/TurnCompletedNotification.json",
|
|
"v2/TurnStartResponse.json",
|
|
] as const;
|
|
|
|
export type GeneratedCodexAppServerProtocolSource = {
|
|
root: string;
|
|
codexRepo: string;
|
|
typescriptRoot: string;
|
|
jsonRoot: string;
|
|
cleanup: () => Promise<void>;
|
|
};
|
|
|
|
type PnpmCommand = {
|
|
args: string[];
|
|
command: string;
|
|
env?: NodeJS.ProcessEnv;
|
|
shell: boolean;
|
|
windowsVerbatimArguments?: boolean;
|
|
};
|
|
|
|
type ResolvePnpmCommandOptions = {
|
|
comSpec?: string;
|
|
env?: NodeJS.ProcessEnv;
|
|
execPath?: string;
|
|
npmExecPath?: string;
|
|
platform?: NodeJS.Platform;
|
|
};
|
|
|
|
export function resolveCodexProtocolPnpmCommand(
|
|
args: string[],
|
|
options: ResolvePnpmCommandOptions = {},
|
|
): PnpmCommand {
|
|
const env = options.env ?? process.env;
|
|
const command = resolvePnpmRunner({
|
|
comSpec: options.comSpec,
|
|
env,
|
|
npmExecPath: options.npmExecPath ?? env.npm_execpath,
|
|
nodeExecPath: options.execPath ?? process.execPath,
|
|
platform: options.platform,
|
|
pnpmArgs: args,
|
|
});
|
|
if (command.env === undefined) {
|
|
const invocation = { ...command };
|
|
delete invocation.env;
|
|
return invocation;
|
|
}
|
|
return command;
|
|
}
|
|
|
|
export function buildCodexProtocolExportArgs(manifestPath: string, outDir: string): string[] {
|
|
return [
|
|
"run",
|
|
"--manifest-path",
|
|
manifestPath,
|
|
"-p",
|
|
"codex-app-server-protocol",
|
|
"--bin",
|
|
"export",
|
|
"--",
|
|
"--out",
|
|
outDir,
|
|
"--experimental",
|
|
];
|
|
}
|
|
|
|
export function resolveCodexProtocolMinFreeBytes(env: NodeJS.ProcessEnv = process.env): number {
|
|
const raw = env.OPENCLAW_CODEX_PROTOCOL_MIN_FREE_BYTES;
|
|
if (raw === undefined || raw.trim() === "") {
|
|
return DEFAULT_PROTOCOL_GENERATION_MIN_FREE_BYTES;
|
|
}
|
|
const parsed = Number(raw);
|
|
if (!Number.isFinite(parsed) || parsed < 0) {
|
|
throw new Error(
|
|
`OPENCLAW_CODEX_PROTOCOL_MIN_FREE_BYTES must be a non-negative byte count, got ${raw}`,
|
|
);
|
|
}
|
|
return Math.floor(parsed);
|
|
}
|
|
|
|
export function resolveCodexProtocolCargoTargetDir(
|
|
codexRepo: string,
|
|
env: NodeJS.ProcessEnv = process.env,
|
|
): string {
|
|
const targetDir = env.CARGO_TARGET_DIR ?? env.CARGO_BUILD_TARGET_DIR;
|
|
if (targetDir !== undefined && targetDir.trim() !== "") {
|
|
return path.isAbsolute(targetDir)
|
|
? path.resolve(targetDir)
|
|
: path.resolve(codexRepo, targetDir);
|
|
}
|
|
return path.join(codexRepo, "codex-rs", "target");
|
|
}
|
|
|
|
export function validateCodexProtocolGenerationHeadroom(params: {
|
|
freeBytes: number;
|
|
minFreeBytes: number;
|
|
pathLabel: string;
|
|
}): void {
|
|
if (params.minFreeBytes <= 0 || params.freeBytes >= params.minFreeBytes) {
|
|
return;
|
|
}
|
|
|
|
throw new Error(
|
|
[
|
|
"Codex app-server protocol generation needs Rust build headroom before running cargo.",
|
|
`${params.pathLabel} has ${formatBytes(params.freeBytes)} free; requires at least ${formatBytes(
|
|
params.minFreeBytes,
|
|
)}.`,
|
|
"Run this check on Crabbox/Testbox, free local disk, or set OPENCLAW_CODEX_PROTOCOL_MIN_FREE_BYTES=0 to override intentionally.",
|
|
].join("\n"),
|
|
);
|
|
}
|
|
|
|
export async function resolveCodexAppServerProtocolSource(repoRoot: string): Promise<{
|
|
codexRepo: string;
|
|
sourceRoot: string;
|
|
}> {
|
|
const candidates = await collectCodexRepoCandidates(repoRoot);
|
|
const checked: string[] = [];
|
|
|
|
for (const candidate of candidates) {
|
|
const codexRepo = path.resolve(candidate);
|
|
if (checked.includes(codexRepo)) {
|
|
continue;
|
|
}
|
|
checked.push(codexRepo);
|
|
const sourceRoot = path.join(codexRepo, PROTOCOL_SCHEMA_RELATIVE_PATH);
|
|
if (await isDirectory(path.join(sourceRoot, "typescript"))) {
|
|
return { codexRepo, sourceRoot };
|
|
}
|
|
}
|
|
|
|
throw new Error(
|
|
[
|
|
"Codex app-server protocol schema not found.",
|
|
"Set OPENCLAW_CODEX_REPO to a checkout of openai/codex, or keep a sibling `codex` checkout next to the primary OpenClaw checkout.",
|
|
`Checked: ${checked.join(", ") || "<none>"}`,
|
|
].join("\n"),
|
|
);
|
|
}
|
|
|
|
export async function generateExperimentalCodexAppServerProtocolSource(
|
|
repoRoot = process.cwd(),
|
|
): Promise<GeneratedCodexAppServerProtocolSource> {
|
|
const { codexRepo } = await resolveCodexAppServerProtocolSource(repoRoot);
|
|
await validateCodexProtocolSourceVersion({ codexRepo, repoRoot });
|
|
const root = await fs.mkdtemp(path.join(repoRoot, ".tmp-codex-app-server-protocol-"));
|
|
const generatedRoot = path.join(root, "generated");
|
|
const typescriptRoot = path.join(root, "typescript");
|
|
const jsonRoot = path.join(root, "json");
|
|
const manifestPath = path.join(codexRepo, "codex-rs/Cargo.toml");
|
|
const cleanup = async () => {
|
|
await fs.rm(root, { recursive: true, force: true });
|
|
};
|
|
|
|
try {
|
|
await assertCodexProtocolGenerationHeadroom({ codexRepo, repoRoot });
|
|
runCargoProtocolGenerator(codexRepo, buildCodexProtocolExportArgs(manifestPath, generatedRoot));
|
|
await stageCodexAppServerProtocolArtifacts(generatedRoot, { jsonRoot, typescriptRoot });
|
|
formatGeneratedTypeScript(repoRoot, typescriptRoot);
|
|
} catch (error) {
|
|
await cleanup();
|
|
throw error;
|
|
}
|
|
|
|
return {
|
|
root,
|
|
codexRepo,
|
|
typescriptRoot,
|
|
jsonRoot,
|
|
cleanup,
|
|
};
|
|
}
|
|
|
|
export function readCargoWorkspacePackageVersion(manifest: string): string | undefined {
|
|
const header = /^\s*\[workspace\.package\]\s*(?:#.*)?$/m.exec(manifest);
|
|
if (!header) {
|
|
return undefined;
|
|
}
|
|
const remainder = manifest.slice(header.index + header[0].length);
|
|
const nextSection = /^\s*\[/m.exec(remainder);
|
|
const workspacePackage = remainder.slice(0, nextSection?.index ?? remainder.length);
|
|
return /^\s*version\s*=\s*"([^"]+)"\s*(?:#.*)?$/m.exec(workspacePackage)?.[1];
|
|
}
|
|
|
|
export async function validateCodexProtocolSourceVersion(params: {
|
|
codexRepo: string;
|
|
repoRoot: string;
|
|
}): Promise<void> {
|
|
const packageManifest = JSON.parse(
|
|
await fs.readFile(path.join(params.repoRoot, "extensions/codex/package.json"), "utf8"),
|
|
) as { dependencies?: Record<string, unknown> };
|
|
const expectedVersion = packageManifest.dependencies?.["@openai/codex"];
|
|
if (typeof expectedVersion !== "string" || expectedVersion.length === 0) {
|
|
throw new Error("extensions/codex/package.json must pin @openai/codex to an exact version");
|
|
}
|
|
|
|
const cargoManifest = await fs.readFile(
|
|
path.join(params.codexRepo, "codex-rs/Cargo.toml"),
|
|
"utf8",
|
|
);
|
|
const sourceVersion = readCargoWorkspacePackageVersion(cargoManifest);
|
|
if (sourceVersion !== expectedVersion) {
|
|
throw new Error(
|
|
`Codex protocol source version ${sourceVersion ?? "<unknown>"} does not match @openai/codex ${expectedVersion}. Check out rust-v${expectedVersion} in ${params.codexRepo}.`,
|
|
);
|
|
}
|
|
}
|
|
|
|
async function collectCodexRepoCandidates(repoRoot: string): Promise<string[]> {
|
|
const candidates = [
|
|
process.env.OPENCLAW_CODEX_REPO,
|
|
path.resolve(repoRoot, "../codex"),
|
|
await resolvePrimaryWorktreeSiblingCodex(repoRoot),
|
|
];
|
|
return candidates.filter((candidate): candidate is string => Boolean(candidate));
|
|
}
|
|
|
|
async function resolvePrimaryWorktreeSiblingCodex(repoRoot: string): Promise<string | undefined> {
|
|
const gitFilePath = path.join(repoRoot, ".git");
|
|
let gitFile: string;
|
|
try {
|
|
gitFile = await fs.readFile(gitFilePath, "utf8");
|
|
} catch {
|
|
return undefined;
|
|
}
|
|
|
|
const match = /^gitdir:\s*(.+)$/m.exec(gitFile);
|
|
if (!match) {
|
|
return undefined;
|
|
}
|
|
|
|
const gitDir = path.resolve(repoRoot, expectDefined(match[1], "gitdir target").trim());
|
|
const worktreeMarker = `${path.sep}.git${path.sep}worktrees${path.sep}`;
|
|
const markerIndex = gitDir.indexOf(worktreeMarker);
|
|
if (markerIndex < 0) {
|
|
return undefined;
|
|
}
|
|
|
|
const primaryWorktreeRoot = gitDir.slice(0, markerIndex);
|
|
return path.join(path.dirname(primaryWorktreeRoot), "codex");
|
|
}
|
|
|
|
async function isDirectory(candidate: string): Promise<boolean> {
|
|
try {
|
|
return (await fs.stat(candidate)).isDirectory();
|
|
} catch {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
async function assertCodexProtocolGenerationHeadroom(params: {
|
|
codexRepo: string;
|
|
repoRoot: string;
|
|
}): Promise<void> {
|
|
const minFreeBytes = resolveCodexProtocolMinFreeBytes();
|
|
if (minFreeBytes <= 0) {
|
|
return;
|
|
}
|
|
|
|
const checks = [
|
|
{ path: params.repoRoot, label: "protocol output checkout" },
|
|
{
|
|
path: resolveCodexProtocolCargoTargetDir(params.codexRepo),
|
|
label: "Cargo target directory",
|
|
},
|
|
];
|
|
for (const check of checks) {
|
|
const statsPath = await resolveExistingStatfsPath(check.path);
|
|
const stats = await fs.statfs(statsPath);
|
|
validateCodexProtocolGenerationHeadroom({
|
|
freeBytes: stats.bavail * stats.bsize,
|
|
minFreeBytes,
|
|
pathLabel: check.label,
|
|
});
|
|
}
|
|
}
|
|
|
|
function formatBytes(bytes: number): string {
|
|
const gib = bytes / (1024 * 1024 * 1024);
|
|
if (gib >= 1) {
|
|
return `${gib.toFixed(1)} GiB`;
|
|
}
|
|
return `${Math.floor(bytes / (1024 * 1024))} MiB`;
|
|
}
|
|
|
|
async function resolveExistingStatfsPath(targetPath: string): Promise<string> {
|
|
let currentPath = path.resolve(targetPath);
|
|
while (true) {
|
|
try {
|
|
await fs.stat(currentPath);
|
|
return currentPath;
|
|
} catch {
|
|
const parent = path.dirname(currentPath);
|
|
if (parent === currentPath) {
|
|
throw new Error(`Cannot find an existing parent directory for ${targetPath}`);
|
|
}
|
|
currentPath = parent;
|
|
}
|
|
}
|
|
}
|
|
|
|
function runCargoProtocolGenerator(codexRepo: string, args: string[]): void {
|
|
const result = spawnSync("cargo", args, {
|
|
cwd: codexRepo,
|
|
stdio: "inherit",
|
|
});
|
|
if (result.error) {
|
|
throw new Error(`Failed to start cargo: ${result.error.message}`, { cause: result.error });
|
|
}
|
|
if (result.status !== 0) {
|
|
throw new Error(`cargo ${args.join(" ")} failed with exit code ${result.status ?? "unknown"}`);
|
|
}
|
|
}
|
|
|
|
function formatGeneratedTypeScript(repoRoot: string, root: string): void {
|
|
const command = resolveCodexProtocolPnpmCommand([
|
|
"exec",
|
|
"oxfmt",
|
|
"--write",
|
|
"--threads=1",
|
|
root,
|
|
]);
|
|
const result = spawnSync(command.command, command.args, {
|
|
cwd: repoRoot,
|
|
env: command.env ?? process.env,
|
|
shell: command.shell,
|
|
stdio: "inherit",
|
|
windowsVerbatimArguments: command.windowsVerbatimArguments,
|
|
});
|
|
if (result.error) {
|
|
throw new Error(`Failed to start protocol formatter: ${result.error.message}`, {
|
|
cause: result.error,
|
|
});
|
|
}
|
|
if (result.status !== 0) {
|
|
throw new Error(
|
|
`pnpm exec oxfmt --write --threads=1 ${root} failed with exit code ${
|
|
result.status ?? "unknown"
|
|
}`,
|
|
);
|
|
}
|
|
}
|
|
|
|
// Sort typed-object arrays for schema keywords whose item order does not affect
|
|
// payload validity; preserve order everywhere else, especially prefixItems.
|
|
const typeSortedSchemaArrayKeys = new Set(["anyOf", "enum", "oneOf", "required"]);
|
|
|
|
export function canonicalizeCodexAppServerProtocolJson(
|
|
value: unknown,
|
|
parentKey?: string,
|
|
): unknown {
|
|
if (Array.isArray(value)) {
|
|
const items = value.map((item) => canonicalizeCodexAppServerProtocolJson(item));
|
|
return parentKey !== undefined && typeSortedSchemaArrayKeys.has(parentKey)
|
|
? sortCodexProtocolJsonArrayByType(items)
|
|
: items;
|
|
}
|
|
|
|
if (!isPlainObject(value)) {
|
|
return value;
|
|
}
|
|
|
|
const sorted: Record<string, unknown> = {};
|
|
const entries = Object.entries(value)
|
|
.map(([key, child]) => [key, canonicalizeCodexAppServerProtocolJson(child, key)] as const)
|
|
.toSorted(([left], [right]) => {
|
|
if (left < right) {
|
|
return -1;
|
|
}
|
|
if (left > right) {
|
|
return 1;
|
|
}
|
|
return 0;
|
|
});
|
|
for (const [key, child] of entries) {
|
|
sorted[key] = child;
|
|
}
|
|
return sorted;
|
|
}
|
|
|
|
export function normalizeCodexAppServerProtocolJsonText(text: string): string {
|
|
return JSON.stringify(canonicalizeCodexAppServerProtocolJson(JSON.parse(text)));
|
|
}
|
|
|
|
export function formatCodexAppServerProtocolJsonText(text: string): string {
|
|
return `${JSON.stringify(canonicalizeCodexAppServerProtocolJson(JSON.parse(text)), null, 2)}\n`;
|
|
}
|
|
|
|
function sortCodexProtocolJsonArrayByType(items: unknown[]): unknown[] {
|
|
if (!items.every(isPlainObject)) {
|
|
return items;
|
|
}
|
|
|
|
const typed = items
|
|
.map((item, index) => ({ index, item, type: stringRecordValue(item, "type") }))
|
|
.filter(
|
|
(entry): entry is { index: number; item: Record<string, unknown>; type: string } =>
|
|
entry.type !== undefined,
|
|
);
|
|
if (typed.length < 2) {
|
|
return items;
|
|
}
|
|
|
|
const sortedTyped = typed.toSorted((left, right) => {
|
|
if (left.type < right.type) {
|
|
return -1;
|
|
}
|
|
if (left.type > right.type) {
|
|
return 1;
|
|
}
|
|
return left.index - right.index;
|
|
});
|
|
const sortedByOriginalIndex = new Map(
|
|
typed.map((entry, index) => [entry.index, sortedTyped[index]?.item]),
|
|
);
|
|
|
|
return items.map((item, index) => sortedByOriginalIndex.get(index) ?? item);
|
|
}
|
|
|
|
function stringRecordValue(record: Record<string, unknown>, key: string): string | undefined {
|
|
const value = record[key];
|
|
return typeof value === "string" ? value : undefined;
|
|
}
|
|
|
|
function isPlainObject(value: unknown): value is Record<string, unknown> {
|
|
if (typeof value !== "object" || value === null || Array.isArray(value)) {
|
|
return false;
|
|
}
|
|
const prototype = Object.getPrototypeOf(value);
|
|
return prototype === Object.prototype || prototype === null;
|
|
}
|