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

推荐订阅源

WordPress大学
WordPress大学
H
Help Net Security
Jina AI
Jina AI
V
V2EX
G
Google Developers Blog
B
Blog
GbyAI
GbyAI
U
Unit 42
爱范儿
爱范儿
腾讯CDC
Engineering at Meta
Engineering at Meta
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
小众软件
小众软件
D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
博客园 - 聂微东
The Cloudflare Blog
I
InfoQ
Microsoft Azure Blog
Microsoft Azure Blog
Hugging Face - Blog
Hugging Face - Blog
大猫的无限游戏
大猫的无限游戏

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(tooling): skip gauntlet declaration prebuild · opencl...
vincentkoc · 2026-05-26 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -737,6 +737,7 @@ async function main() {

737737

const commandEnv = buildGauntletPrebuildEnv(env, {

738738

includePrivateQa: !options.skipQa,

739739

buildIds: selectedPlugins.map((plugin) => plugin.buildId),

740+

skipDeclarationBuild: true,

740741

});

741742

if (!options.skipPrebuild && (selectedPlugins.length > 0 || !options.skipQa)) {

742743

process.stderr.write("[plugin-gauntlet] prebuild\n");

Original file line numberDiff line numberDiff line change

@@ -350,23 +350,33 @@ function collectQaBaselineRegressionObservations(rows, thresholds = {}) {

350350
351351

function buildGauntletPrebuildEnv(env, options = {}) {

352352

const buildIds = new Set(normalizeStringArray(options.buildIds));

353+

const runtimeOnlyPrebuildEnv = options.skipDeclarationBuild

354+

? { OPENCLAW_RUN_NODE_SKIP_DTS_BUILD: "1" }

355+

: {};

356+

const hasRuntimeOnlyPrebuildEnv = Object.keys(runtimeOnlyPrebuildEnv).length > 0;

353357

if (options.includePrivateQa) {

354358

for (const pluginId of NON_PACKAGED_BUNDLED_PLUGIN_DIRS) {

355359

buildIds.add(pluginId);

356360

}

357361

}

358362

if (!options.includePrivateQa) {

359-

return buildIds.size === 0

363+

return buildIds.size === 0 && !hasRuntimeOnlyPrebuildEnv

360364

? env

361365

: {

362366

...env,

363-

OPENCLAW_BUNDLED_PLUGIN_BUILD_IDS: [...buildIds]

364-

.toSorted((left, right) => left.localeCompare(right))

365-

.join(","),

367+

...runtimeOnlyPrebuildEnv,

368+

...(buildIds.size > 0

369+

? {

370+

OPENCLAW_BUNDLED_PLUGIN_BUILD_IDS: [...buildIds]

371+

.toSorted((left, right) => left.localeCompare(right))

372+

.join(","),

373+

}

374+

: {}),

366375

};

367376

}

368377

return {

369378

...env,

379+

...runtimeOnlyPrebuildEnv,

370380

OPENCLAW_BUILD_PRIVATE_QA: "1",

371381

OPENCLAW_ENABLE_PRIVATE_QA_CLI: "1",

372382

...(buildIds.size > 0

Original file line numberDiff line numberDiff line change

@@ -288,6 +288,22 @@ describe("plugin gateway gauntlet helpers", () => {

288288

expect(buildGauntletPrebuildEnv(env, { includePrivateQa: false })).toBe(env);

289289

});

290290
291+

it("marks gauntlet prebuilds as runtime-only when requested", () => {

292+

expect(

293+

buildGauntletPrebuildEnv(

294+

{ EXISTING: "1" },

295+

{

296+

buildIds: ["acpx"],

297+

skipDeclarationBuild: true,

298+

},

299+

),

300+

).toEqual({

301+

EXISTING: "1",

302+

OPENCLAW_BUNDLED_PLUGIN_BUILD_IDS: "acpx",

303+

OPENCLAW_RUN_NODE_SKIP_DTS_BUILD: "1",

304+

});

305+

});

306+
291307

it("prebuilds only selected plugin dist entries for bounded gauntlet runs", () => {

292308

expect(

293309

buildGauntletPrebuildEnv(