惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
I
InfoQ
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
GbyAI
GbyAI
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
美团技术团队
罗磊的独立博客
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
M
MIT News - Artificial intelligence
D
Docker
MongoDB | Blog
MongoDB | Blog
F
Fortinet All Blogs
博客园 - 叶小钗

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(build): preserve fresh startup metadata across rebuil...
vincentkoc · 2026-05-31 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -180,9 +180,15 @@ export const BUILD_ALL_PROFILES = {

180180

};

181181
182182

export const BUILD_ALL_PROFILE_STEP_ENV = {

183+

full: {

184+

tsdown: {

185+

OPENCLAW_PRESERVE_CLI_STARTUP_METADATA: "1",

186+

},

187+

},

183188

ciArtifacts: {

184189

tsdown: {

185190

OPENCLAW_RUN_NODE_SKIP_DTS_BUILD: "1",

191+

OPENCLAW_PRESERVE_CLI_STARTUP_METADATA: "1",

186192

},

187193

},

188194

gatewayWatch: {

@@ -201,6 +207,7 @@ export const BUILD_ALL_PROFILE_STEP_ENV = {

201207

cliStartup: {

202208

tsdown: {

203209

OPENCLAW_RUN_NODE_SKIP_DTS_BUILD: "1",

210+

OPENCLAW_PRESERVE_CLI_STARTUP_METADATA: "1",

204211

},

205212

"runtime-postbuild": {

206213

OPENCLAW_RUNTIME_POSTBUILD_STATIC_ASSETS: "0",

Original file line numberDiff line numberDiff line change

@@ -30,6 +30,8 @@ const CGROUP_MEMORY_LIMIT_PATHS = [

3030

const PROC_MEMINFO_PATH = "/proc/meminfo";

3131

const TERMINATION_GRACE_MS = 5_000;

3232

const ROOT_TSDOWN_OUTPUT_ROOTS = ["dist", "dist-runtime"];

33+

const PRESERVED_TSDOWN_OUTPUT_FILES = ["dist/cli-startup-metadata.json"];

34+

const PRESERVE_CLI_STARTUP_METADATA_ENV = "OPENCLAW_PRESERVE_CLI_STARTUP_METADATA";

3335

const GENERATED_SOURCE_DECLARATION_PATHSPEC = ":(glob)extensions/**/*.d.ts";

3436

const DECLARATION_EXTENSIONS = [".d.ts", ".d.mts", ".d.cts"];

3537

const SOURCE_DECLARATION_SOURCE_EXTENSIONS = [".ts", ".tsx", ".mts", ".cts", ".js", ".mjs", ".cjs"];

@@ -78,11 +80,15 @@ export function cleanTsdownOutputRoots(params = {}) {

7880

roots,

7981

})

8082

: new Set();

83+

const protectedPaths = new Set([

84+

...protectedDeclarationPaths,

85+

...listExistingPreservedOutputPaths({ cwd, env, fs: fsImpl }),

86+

]);

8187

for (const root of roots) {

8288

const rootPath = path.join(cwd, root);

8389

try {

84-

if (hasProtectedChild({ rootPath, protectedPaths: protectedDeclarationPaths })) {

85-

cleanOutputRootExcept(rootPath, protectedDeclarationPaths, fsImpl);

90+

if (hasProtectedChild({ rootPath, protectedPaths })) {

91+

cleanOutputRootExcept(rootPath, protectedPaths, fsImpl);

8692

} else {

8793

fsImpl.rmSync(rootPath, { force: true, recursive: true });

8894

}

@@ -137,6 +143,24 @@ function listExistingDeclarationOutputPaths({ cwd, fs: fsImpl, roots }) {

137143

return protectedPaths;

138144

}

139145
146+

function listExistingPreservedOutputPaths({ cwd, env, fs: fsImpl }) {

147+

const protectedPaths = new Set();

148+

if (env[PRESERVE_CLI_STARTUP_METADATA_ENV] !== "1") {

149+

return protectedPaths;

150+

}

151+

for (const relativePath of PRESERVED_TSDOWN_OUTPUT_FILES) {

152+

const absolutePath = path.resolve(cwd, relativePath);

153+

try {

154+

if (fsImpl.statSync(absolutePath).isFile()) {

155+

protectedPaths.add(absolutePath);

156+

}

157+

} catch {

158+

// Missing preserved outputs are normal on first build.

159+

}

160+

}

161+

return protectedPaths;

162+

}

163+
140164

function collectDeclarationOutputPaths(rootPath, protectedPaths, fsImpl) {

141165

let entries = [];

142166

try {

Original file line numberDiff line numberDiff line change

@@ -39,6 +39,7 @@ const CORE_CHANNEL_ORDER = [

3939

"signal",

4040

"imessage",

4141

] as const;

42+

const generatorSignature = createHash("sha1").update(readFileSync(scriptPath)).digest("hex");

4243
4344

type ExtensionChannelEntry = {

4445

id: string;

@@ -467,6 +468,7 @@ export async function writeCliStartupMetadata(options?: {

467468

try {

468469

const existing = JSON.parse(readFileSync(resolvedOutputPath, "utf8")) as {

469470

rootHelpBundleSignature?: unknown;

471+

generatorSignature?: unknown;

470472

browserHelpSourceSignature?: unknown;

471473

secretsHelpSourceSignature?: unknown;

472474

nodesHelpSourceSignature?: unknown;

@@ -480,6 +482,7 @@ export async function writeCliStartupMetadata(options?: {

480482

if (

481483

bundleIdentity &&

482484

existing.rootHelpBundleSignature === bundleIdentity.signature &&

485+

existing.generatorSignature === generatorSignature &&

483486

existing.browserHelpSourceSignature === browserHelpSourceSignature &&

484487

existing.secretsHelpSourceSignature === secretsHelpSourceSignature &&

485488

existing.nodesHelpSourceSignature === nodesHelpSourceSignature &&

@@ -527,6 +530,7 @@ export async function writeCliStartupMetadata(options?: {

527530

`${JSON.stringify(

528531

{

529532

generatedBy: "scripts/write-cli-startup-metadata.ts",

533+

generatorSignature,

530534

channelOptions,

531535

channelCatalogSignature: channelCatalog.signature,

532536

rootHelpBundleSignature: bundleIdentity?.signature ?? null,

Original file line numberDiff line numberDiff line change

@@ -214,7 +214,9 @@ describe("resolveBuildAllSteps", () => {

214214

});

215215
216216

it("keeps the full profile aligned with the declared steps", () => {

217-

expect(resolveBuildAllSteps("full")).toEqual(BUILD_ALL_STEPS);

217+

expect(resolveBuildAllSteps("full").map((step) => step.label)).toEqual(

218+

BUILD_ALL_STEPS.map((step) => step.label),

219+

);

218220

expect(BUILD_ALL_PROFILES.full).toEqual(BUILD_ALL_STEPS.map((step) => step.label));

219221

});

220222

@@ -246,7 +248,7 @@ describe("resolveBuildAllSteps", () => {

246248

throw new Error(`Missing ${profile} tsdown step`);

247249

}

248250
249-

expect(BUILD_ALL_PROFILE_STEP_ENV[profile].tsdown).toEqual({

251+

expect(BUILD_ALL_PROFILE_STEP_ENV[profile].tsdown).toMatchObject({

250252

OPENCLAW_RUN_NODE_SKIP_DTS_BUILD: "1",

251253

});

252254

expect(

@@ -257,6 +259,30 @@ describe("resolveBuildAllSteps", () => {

257259

}

258260

});

259261
262+

it("preserves startup metadata only for profiles that regenerate it", () => {

263+

for (const profile of ["full", "ciArtifacts", "cliStartup"]) {

264+

const tsdown = resolveBuildAllSteps(profile).find((step) => step.label === "tsdown");

265+

if (!tsdown) {

266+

throw new Error(`Missing ${profile} tsdown step`);

267+

}

268+
269+

expect(resolveBuildAllStep(tsdown, { env: {} }).options.env).toMatchObject({

270+

OPENCLAW_PRESERVE_CLI_STARTUP_METADATA: "1",

271+

});

272+

}

273+
274+

for (const profile of ["gatewayWatch", "qaRuntime"]) {

275+

const tsdown = resolveBuildAllSteps(profile).find((step) => step.label === "tsdown");

276+

if (!tsdown) {

277+

throw new Error(`Missing ${profile} tsdown step`);

278+

}

279+
280+

expect(resolveBuildAllStep(tsdown, { env: {} }).options.env).not.toHaveProperty(

281+

"OPENCLAW_PRESERVE_CLI_STARTUP_METADATA",

282+

);

283+

}

284+

});

285+
260286

it("uses a minimal built runtime profile for gateway watch regression", () => {

261287

expect(resolveBuildAllSteps("gatewayWatch").map((step) => step.label)).toEqual([

262288

"tsdown",

Original file line numberDiff line numberDiff line change

@@ -320,6 +320,39 @@ describe("resolveTsdownBuildInvocation", () => {

320320

await expect(fsPromises.readFile(unrelatedFile, "utf8")).resolves.toBe("keep\n");

321321

});

322322
323+

it("removes CLI startup metadata during default tsdown clean", async () => {

324+

const rootDir = createTempDir("openclaw-tsdown-clean-metadata-default-");

325+

const metadataFile = path.join(rootDir, "dist", "cli-startup-metadata.json");

326+

await fsPromises.mkdir(path.dirname(metadataFile), { recursive: true });

327+

await fsPromises.writeFile(metadataFile, '{"generatedBy":"test"}\n');

328+
329+

cleanTsdownOutputRoots({ cwd: rootDir });

330+
331+

await expectPathMissing(metadataFile);

332+

});

333+
334+

it("preserves CLI startup metadata across opted-in build-all tsdown clean", async () => {

335+

const rootDir = createTempDir("openclaw-tsdown-clean-metadata-");

336+

const metadataFile = path.join(rootDir, "dist", "cli-startup-metadata.json");

337+

const staleFile = path.join(rootDir, "dist", "stale.js");

338+

const nestedStaleFile = path.join(rootDir, "dist", "nested", "stale.js");

339+

await fsPromises.mkdir(path.dirname(nestedStaleFile), { recursive: true });

340+

await fsPromises.writeFile(metadataFile, '{"generatedBy":"test"}\n');

341+

await fsPromises.writeFile(staleFile, "stale\n");

342+

await fsPromises.writeFile(nestedStaleFile, "stale\n");

343+
344+

cleanTsdownOutputRoots({

345+

cwd: rootDir,

346+

env: { OPENCLAW_PRESERVE_CLI_STARTUP_METADATA: "1" },

347+

});

348+
349+

await expect(fsPromises.readFile(metadataFile, "utf8")).resolves.toBe(

350+

'{"generatedBy":"test"}\n',

351+

);

352+

await expectPathMissing(staleFile);

353+

await expectPathMissing(nestedStaleFile);

354+

});

355+
323356

it("preserves existing package declarations when tsdown DTS output is skipped", async () => {

324357

const rootDir = createTempDir("openclaw-tsdown-clean-skip-dts-");

325358

const declarationFile = path.join(

Original file line numberDiff line numberDiff line change

@@ -93,6 +93,7 @@ describe("write-cli-startup-metadata", () => {

9393

const written = JSON.parse(readFileSync(outputPath, "utf8")) as {

9494

browserHelpText: string;

9595

channelOptions: string[];

96+

generatorSignature: string;

9697

nodesHelpText: string;

9798

rootHelpText: string;

9899

secretsHelpText: string;

@@ -104,6 +105,7 @@ describe("write-cli-startup-metadata", () => {

104105

};

105106

};

106107

expect(written.channelOptions).toContain("matrix");

108+

expect(written.generatorSignature).toMatch(/^[a-f0-9]{40}$/u);

107109

expect(written.browserHelpText).toContain("Usage:");

108110

expect(written.browserHelpText).toContain("openclaw browser");

109111

expect(written.secretsHelpText).toContain("Usage:");

@@ -154,6 +156,16 @@ describe("write-cli-startup-metadata", () => {

154156

await writeMetadata();

155157

expect(nodesRenderCount).toBe(1);

156158
159+

const staleGeneratorMetadata = JSON.parse(readFileSync(outputPath, "utf8")) as Record<

160+

string,

161+

unknown

162+

>;

163+

staleGeneratorMetadata.generatorSignature = "stale-generator";

164+

writeFileSync(outputPath, `${JSON.stringify(staleGeneratorMetadata, null, 2)}\n`, "utf8");

165+
166+

await writeMetadata();

167+

expect(nodesRenderCount).toBe(2);

168+
157169

writeFixtureFile(

158170

tempRoot,

159171

"extensions/canvas/src/cli.ts",

@@ -165,7 +177,7 @@ describe("write-cli-startup-metadata", () => {

165177

const written = JSON.parse(readFileSync(outputPath, "utf8")) as {

166178

nodesHelpText: string;

167179

};

168-

expect(nodesRenderCount).toBe(2);

169-

expect(written.nodesHelpText).toContain("openclaw nodes 2");

180+

expect(nodesRenderCount).toBe(3);

181+

expect(written.nodesHelpText).toContain("openclaw nodes 3");

170182

});

171183

});