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

推荐订阅源

博客园 - 聂微东
GbyAI
GbyAI
S
SegmentFault 最新的问题
H
Hackread – Cybersecurity News, Data Breaches, AI and More
V
Visual Studio Blog
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
B
Blog
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
雷峰网
雷峰网
爱范儿
爱范儿
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
Microsoft Security Blog
Microsoft Security Blog
Jina AI
Jina AI
P
Proofpoint News Feed
A
About on SuperTechFans
I
InfoQ
F
Fortinet All Blogs
L
LangChain Blog
T
Tailwind CSS 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
test(scripts): expose kitchen sink command RSS · openclaw...
vincentkoc · 2026-05-31 · via Recent Commits to openclaw:main

@@ -181,16 +181,65 @@ function formatCapturedOutput(label, buffer) {

181181182182

export function runCommand(command, args, options = {}) {

183183

return new Promise((resolve, reject) => {

184-

const { timeoutKillGraceMs = 2000, timeoutMs = COMMAND_TIMEOUT_MS, ...spawnOptions } = options;

184+

const {

185+

resourceLabel,

186+

resourceSampleIntervalMs = 1000,

187+

resourceSampleOptions,

188+

resourceSamples,

189+

sampleProcessImpl = sampleProcess,

190+

timeoutKillGraceMs = 2000,

191+

timeoutMs = COMMAND_TIMEOUT_MS,

192+

...spawnOptions

193+

} = options;

185194

const child = childProcess.spawn(command, args, {

186195

stdio: ["ignore", "pipe", "pipe"],

187196

...spawnOptions,

188197

detached: spawnOptions.detached ?? process.platform !== "win32",

189198

});

199+

const startedAt = Date.now();

190200

let stdout = { text: "", truncatedChars: 0 };

191201

let stderr = { text: "", truncatedChars: 0 };

192202

let timedOut = false;

193203

let forceKillTimer;

204+

let sampleTimer;

205+

let resourceSampleInFlight = null;

206+

const commandLabel = resourceLabel ?? [command, ...args.slice(0, 2)].join(" ");

207+

const shouldSampleResources = Array.isArray(resourceSamples);

208+

const collectResourceSample = () => {

209+

if (!shouldSampleResources || !child.pid) {

210+

return null;

211+

}

212+

resourceSampleInFlight ??= Promise.resolve()

213+

.then(() => sampleProcessImpl(child.pid, resourceSampleOptions ?? {}))

214+

.then((sample) => {

215+

if (sample) {

216+

resourceSamples.push({

217+

...sample,

218+

elapsedMs: Date.now() - startedAt,

219+

label: commandLabel,

220+

});

221+

}

222+

})

223+

.catch(() => {})

224+

.finally(() => {

225+

resourceSampleInFlight = null;

226+

});

227+

return resourceSampleInFlight;

228+

};

229+

const stopResourceSampling = async () => {

230+

clearInterval(sampleTimer);

231+

await resourceSampleInFlight?.catch(() => {});

232+

};

233+

if (shouldSampleResources) {

234+

void collectResourceSample();

235+

sampleTimer = setInterval(

236+

() => {

237+

void collectResourceSample();

238+

},

239+

Math.max(100, resourceSampleIntervalMs),

240+

);

241+

sampleTimer.unref?.();

242+

}

194243

const timer = setTimeout(() => {

195244

timedOut = true;

196245

signalProcessGroup(child, "SIGTERM");

@@ -206,35 +255,37 @@ export function runCommand(command, args, options = {}) {

206255

child.on("error", (error) => {

207256

clearTimeout(timer);

208257

clearTimeout(forceKillTimer);

209-

reject(error);

258+

void stopResourceSampling().finally(() => reject(error));

210259

});

211260

child.on("close", (status, signal) => {

212261

clearTimeout(timer);

213262

clearTimeout(forceKillTimer);

214-

if (status === 0) {

215-

resolve({

216-

stdout: stdout.text,

217-

stderr: stderr.text,

218-

stdoutTruncatedChars: stdout.truncatedChars,

219-

stderrTruncatedChars: stderr.truncatedChars,

220-

});

221-

return;

222-

}

223-

const detail = [

224-

formatCapturedOutput("stdout", stdout),

225-

formatCapturedOutput("stderr", stderr),

226-

]

227-

.filter(Boolean)

228-

.join("\n")

229-

.trim();

230-

const failure = timedOut

231-

? `timed out after ${timeoutMs}ms`

232-

: `failed with ${signal || status}`;

233-

reject(

234-

new Error(

235-

`${command} ${args.join(" ")} ${failure}${detail ? `\n${tailText(detail)}` : ""}`,

236-

),

237-

);

263+

void stopResourceSampling().then(() => {

264+

if (status === 0) {

265+

resolve({

266+

stdout: stdout.text,

267+

stderr: stderr.text,

268+

stdoutTruncatedChars: stdout.truncatedChars,

269+

stderrTruncatedChars: stderr.truncatedChars,

270+

});

271+

return;

272+

}

273+

const detail = [

274+

formatCapturedOutput("stdout", stdout),

275+

formatCapturedOutput("stderr", stderr),

276+

]

277+

.filter(Boolean)

278+

.join("\n")

279+

.trim();

280+

const failure = timedOut

281+

? `timed out after ${timeoutMs}ms`

282+

: `failed with ${signal || status}`;

283+

reject(

284+

new Error(

285+

`${command} ${args.join(" ")} ${failure}${detail ? `\n${tailText(detail)}` : ""}`,

286+

),

287+

);

288+

});

238289

});

239290

});

240291

}

@@ -262,6 +313,10 @@ async function runOpenClaw(runner, args, env, options = {}) {

262313

return runCommand(command.command, command.args, {

263314

...command.options,

264315

env,

316+

resourceLabel: options.resourceLabel,

317+

resourceSampleIntervalMs: options.resourceSampleIntervalMs,

318+

resourceSampleOptions: options.resourceSampleOptions,

319+

resourceSamples: options.resourceSamples,

265320

timeoutMs: options.timeoutMs ?? COMMAND_TIMEOUT_MS,

266321

});

267322

}

@@ -1372,20 +1427,35 @@ export async function main() {

13721427

let child;

1373142813741429

const processSamples = [];

1430+

const commandSamples = [];

1431+

const commandResourceOptions = {

1432+

resourceSampleIntervalMs: 500,

1433+

resourceSamples: commandSamples,

1434+

};

13751435

let sampleInFlight = null;

13761436

let sampleTimer;

13771437

try {

13781438

console.log(`Kitchen Sink RPC walk using ${PLUGIN_SPEC} via ${runner.label}`);

13791439

await runOpenClaw(runner, ["plugins", "install", PLUGIN_SPEC], env, {

1440+

...commandResourceOptions,

1441+

resourceLabel: "plugins install",

13801442

timeoutMs: INSTALL_TIMEOUT_MS,

13811443

});

13821444

runner = resolveOpenClawRunner();

13831445

console.log(`Kitchen Sink RPC runtime runner: ${runner.label}`);

13841446

configureKitchenSink(env, port);

1385-

await runOpenClaw(runner, ["plugins", "enable", PLUGIN_ID], env, { timeoutMs: 60000 });

1447+

await runOpenClaw(runner, ["plugins", "enable", PLUGIN_ID], env, {

1448+

...commandResourceOptions,

1449+

resourceLabel: "plugins enable",

1450+

timeoutMs: 60000,

1451+

});

13861452

const inspect = parseJsonOutput(

1387-

(await runOpenClaw(runner, ["plugins", "inspect", PLUGIN_ID, "--runtime", "--json"], env))

1388-

.stdout,

1453+

(

1454+

await runOpenClaw(runner, ["plugins", "inspect", PLUGIN_ID, "--runtime", "--json"], env, {

1455+

...commandResourceOptions,

1456+

resourceLabel: "plugins inspect",

1457+

})

1458+

).stdout,

13891459

);

13901460

if (inspect?.plugin?.status !== "loaded") {

13911461

throw new Error(`Kitchen Sink plugin did not inspect as loaded: ${JSON.stringify(inspect)}`);

@@ -1510,6 +1580,7 @@ export async function main() {

15101580

const finalSample = await sampleGateway();

15111581

assertResourceCeiling(finalSample);

15121582

const peakSample = summarizeProcessSamples(processSamples);

1583+

const commandPeakSample = summarizeProcessSamples(commandSamples);

15131584

assertResourceCeiling(peakSample);

15141585

assertNoErrorLogs(logPath);

15151586

@@ -1521,6 +1592,7 @@ export async function main() {

15211592

commands: commandNames,

15221593

catalogTools: catalogToolIds.filter((id) => EXPECTED_TOOLS.includes(id)),

15231594

channelAccount,

1595+

commandPeakSample,

15241596

initialSample,

15251597

finalSample,

15261598

peakSample,