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

推荐订阅源

H
Help Net Security
月光博客
月光博客
IT之家
IT之家
B
Blog RSS Feed
T
Tailwind CSS Blog
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
MyScale Blog
MyScale Blog
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - Franky
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
博客园_首页
B
Blog
V
V2EX
腾讯CDC
Vercel News
Vercel News
量子位
Microsoft Security Blog
Microsoft Security 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: preflight remote skill bin probes · openclaw/opencla...
steipete · 2026-05-18 · via Recent Commits to openclaw:main

@@ -220,6 +220,155 @@ describe("skills-remote", () => {

220220

}

221221

});

222222223+

it("skips remote bin probes when the node connectivity preflight fails", async () => {

224+

await resetSkillsRefreshForTest();

225+

const workspaceDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-remote-skills-"));

226+

const nodeId = `node-${randomUUID()}`;

227+

const bin = `bin-${randomUUID()}`;

228+

try {

229+

fs.mkdirSync(path.join(workspaceDir, "remote-skill"), { recursive: true });

230+

fs.writeFileSync(

231+

path.join(workspaceDir, "remote-skill", "SKILL.md"),

232+

[

233+

"---",

234+

"name: remote-skill",

235+

"description: Needs a remote bin",

236+

`metadata: { "openclaw": { "os": ["darwin"], "requires": { "bins": ["${bin}"] } } }`,

237+

"---",

238+

"# Remote Skill",

239+

"",

240+

].join("\n"),

241+

);

242+

const cfg = {

243+

agents: {

244+

defaults: {

245+

workspace: workspaceDir,

246+

},

247+

},

248+

} satisfies OpenClawConfig;

249+

const invokeCalls: string[] = [];

250+

setSkillsRemoteRegistry({

251+

listConnected: () => [],

252+

get: () => undefined,

253+

checkConnectivity: async () => ({

254+

ok: false,

255+

error: { code: "TIMEOUT", message: "node connectivity probe timed out" },

256+

}),

257+

invoke: async (params: { command: string }) => {

258+

invokeCalls.push(params.command);

259+

return {

260+

ok: true,

261+

payloadJSON: JSON.stringify({ bins: [bin] }),

262+

};

263+

},

264+

} as unknown as NodeRegistry);

265+

recordRemoteNodeInfo({

266+

nodeId,

267+

displayName: "Remote Mac",

268+

platform: "darwin",

269+

commands: ["system.run", "system.which"],

270+

});

271+

recordRemoteNodeBins(nodeId, [bin]);

272+

const before = getSkillsSnapshotVersion(workspaceDir);

273+274+

await refreshRemoteNodeBins({

275+

nodeId,

276+

platform: "darwin",

277+

commands: ["system.run", "system.which"],

278+

cfg,

279+

timeoutMs: 10,

280+

});

281+282+

expect(invokeCalls).toEqual([]);

283+

expect(getRemoteSkillEligibility()?.hasBin(bin) ?? false).toBe(false);

284+

expect(getSkillsSnapshotVersion(workspaceDir)).toBeGreaterThan(before);

285+

} finally {

286+

removeRemoteNodeInfo(nodeId);

287+

fs.rmSync(workspaceDir, { recursive: true, force: true });

288+

}

289+

});

290+291+

it("retries the bin probe when the node reconnects during preflight", async () => {

292+

await resetSkillsRefreshForTest();

293+

const workspaceDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-remote-skills-"));

294+

const nodeId = `node-${randomUUID()}`;

295+

const bin = `bin-${randomUUID()}`;

296+

try {

297+

fs.mkdirSync(path.join(workspaceDir, "remote-skill"), { recursive: true });

298+

fs.writeFileSync(

299+

path.join(workspaceDir, "remote-skill", "SKILL.md"),

300+

[

301+

"---",

302+

"name: remote-skill",

303+

"description: Needs a remote bin",

304+

`metadata: { "openclaw": { "os": ["darwin"], "requires": { "bins": ["${bin}"] } } }`,

305+

"---",

306+

"# Remote Skill",

307+

"",

308+

].join("\n"),

309+

);

310+

const cfg = {

311+

agents: {

312+

defaults: {

313+

workspace: workspaceDir,

314+

},

315+

},

316+

} satisfies OpenClawConfig;

317+

let connId = "conn-old";

318+

const connectivityCalls: string[] = [];

319+

const invokeCalls: string[] = [];

320+

setSkillsRemoteRegistry({

321+

listConnected: () => [],

322+

get: () =>

323+

({

324+

nodeId,

325+

connId,

326+

platform: "darwin",

327+

commands: ["system.run", "system.which"],

328+

}) as unknown as ReturnType<NodeRegistry["get"]>,

329+

checkConnectivity: async () => {

330+

connectivityCalls.push(connId);

331+

if (connectivityCalls.length === 1) {

332+

connId = "conn-new";

333+

return {

334+

ok: false,

335+

error: { code: "TIMEOUT", message: "node connectivity probe timed out" },

336+

};

337+

}

338+

return { ok: true };

339+

},

340+

invoke: async (params: { command: string }) => {

341+

invokeCalls.push(params.command);

342+

return {

343+

ok: true,

344+

payloadJSON: JSON.stringify({ bins: [bin] }),

345+

};

346+

},

347+

} as unknown as NodeRegistry);

348+

recordRemoteNodeInfo({

349+

nodeId,

350+

displayName: "Remote Mac",

351+

platform: "darwin",

352+

commands: ["system.run", "system.which"],

353+

});

354+355+

await refreshRemoteNodeBins({

356+

nodeId,

357+

platform: "darwin",

358+

commands: ["system.run", "system.which"],

359+

cfg,

360+

timeoutMs: 10,

361+

});

362+363+

expect(connectivityCalls).toEqual(["conn-old", "conn-new"]);

364+

expect(invokeCalls).toEqual(["system.which"]);

365+

expect(getRemoteSkillEligibility()?.hasBin(bin)).toBe(true);

366+

} finally {

367+

removeRemoteNodeInfo(nodeId);

368+

fs.rmSync(workspaceDir, { recursive: true, force: true });

369+

}

370+

});

371+223372

it("coalesces overlapping bin probes for the same node", async () => {

224373

const workspaceDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-remote-skills-"));

225374

const nodeId = `node-${randomUUID()}`;