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

推荐订阅源

V
V2EX
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
博客园 - 【当耐特】
月光博客
月光博客
C
Check Point Blog
T
The Blog of Author Tim Ferriss
罗磊的独立博客
博客园 - Franky
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
Microsoft Security Blog
Microsoft Security Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
腾讯CDC
美团技术团队
N
Netflix TechBlog - Medium
Stack Overflow Blog
Stack Overflow Blog
Y
Y Combinator Blog
L
LangChain Blog
The Cloudflare 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: accept clawhub plugin api wildcards · openclaw/openc...
steipete · 2026-04-27 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -15,6 +15,7 @@ Docs: https://docs.openclaw.ai

1515

### Fixes

1616
1717

- Gateway/models: move local-provider pricing opt-outs, OpenRouter/LiteLLM aliases, and proxy passthrough pricing lookup into plugin manifest metadata so core no longer carries extension-specific pricing tables. Thanks @codex.

18+

- CLI/plugins: accept ClawHub plugin API wildcard ranges such as `*` without rejecting compatible plugin installs, while still requiring a valid runtime API version. Fixes #56446; supersedes #56466. Thanks @darconada and @claygeo.

1819

- Agents/sessions: acquire the session write lock only after cold bootstrap, plugin, and tool setup so fallback runs are not blocked by stalled pre-model startup work. Thanks @codex.

1920

- Browser/plugins: auto-start the bundled browser plugin when root `browser` config is present, including restrictive plugin allowlists, and ignore stale persisted plugin registries whose package paths no longer exist. Thanks @codex.

2021

- Gateway/models: skip external OpenRouter and LiteLLM pricing refreshes for local/self-hosted model endpoints so startup does not wait on remote pricing catalogs for local-only Ollama, vLLM, and compatible providers. Thanks @codex.

Original file line numberDiff line numberDiff line change

@@ -87,6 +87,26 @@ describe("clawhub helpers", () => {

8787

expect(satisfiesPluginApiRange("invalid", "^1.2.0")).toBe(false);

8888

});

8989
90+

it.each(["*", "x", "X", "=*", "=x", ">=*", ">=x", "<=*", "^*", "~*"] as const)(

91+

"accepts plugin api wildcard range %s for valid runtime versions",

92+

(range) => {

93+

expect(satisfiesPluginApiRange("2026.3.24", range)).toBe(true);

94+

expect(satisfiesPluginApiRange("1.0.0", range)).toBe(true);

95+

},

96+

);

97+
98+

it("keeps wildcard plugin api ranges intersected with concrete comparators", () => {

99+

expect(satisfiesPluginApiRange("2026.3.24", "* >=2026.3.22")).toBe(true);

100+

expect(satisfiesPluginApiRange("2026.3.21", "* >=2026.3.22")).toBe(false);

101+

expect(satisfiesPluginApiRange("2026.3.24", "x <2026.3.24")).toBe(false);

102+

});

103+
104+

it("rejects invalid runtime versions and impossible wildcard comparators", () => {

105+

expect(satisfiesPluginApiRange("invalid", "*")).toBe(false);

106+

expect(satisfiesPluginApiRange("2026.3.24", ">*")).toBe(false);

107+

expect(satisfiesPluginApiRange("2026.3.24", "<*")).toBe(false);

108+

});

109+
90110

it("checks min gateway versions with loose host labels", () => {

91111

expect(satisfiesGatewayMinimum("2026.3.22", "2026.3.0")).toBe(true);

92112

expect(satisfiesGatewayMinimum("OpenClaw 2026.3.22", "2026.3.0")).toBe(true);

Original file line numberDiff line numberDiff line change

@@ -299,11 +299,24 @@ function upperBoundForCaret(version: string): string | null {

299299

return `0.0.${parsed.patch + 1}`;

300300

}

301301
302+

function matchWildcardComparator(token: string): "any" | "none" | null {

303+

const match = /^(>=|<=|>|<|=|\^|~)?\s*([*xX])$/.exec(token);

304+

if (!match) {

305+

return null;

306+

}

307+

const operator = match[1];

308+

return operator === ">" || operator === "<" ? "none" : "any";

309+

}

310+
302311

function satisfiesComparator(version: string, token: string): boolean {

303312

const trimmed = token.trim();

304313

if (!trimmed) {

305314

return true;

306315

}

316+

const wildcard = matchWildcardComparator(trimmed);

317+

if (wildcard) {

318+

return wildcard === "any" && parseComparableSemver(version) != null;

319+

}

307320

if (trimmed.startsWith("^")) {

308321

const base = trimmed.slice(1).trim();

309322

const upperBound = upperBoundForCaret(base);

Original file line numberDiff line numberDiff line change

@@ -249,6 +249,64 @@ describe("installPluginFromClawHub", () => {

249249

expect(archiveCleanupMock).toHaveBeenCalledTimes(1);

250250

});

251251
252+

it("installs when ClawHub advertises a wildcard plugin API range", async () => {

253+

fetchClawHubPackageVersionMock.mockResolvedValueOnce({

254+

version: {

255+

version: "2026.3.22",

256+

createdAt: 0,

257+

changelog: "",

258+

sha256hash: "a9eac48c6129bc44b6f93c9a9f48f6c700d191b7279a1e1915f28df6f59bb1af",

259+

compatibility: {

260+

pluginApiRange: "*",

261+

minGatewayVersion: "2026.3.0",

262+

},

263+

},

264+

});

265+
266+

const result = await installPluginFromClawHub({

267+

spec: "clawhub:demo",

268+

baseUrl: "https://clawhub.ai",

269+

});

270+
271+

expectSuccessfulClawHubInstall(result);

272+

expect(downloadClawHubPackageArchiveMock).toHaveBeenCalledTimes(1);

273+

expect(installPluginFromArchiveMock).toHaveBeenCalledWith(

274+

expect.objectContaining({

275+

archivePath: "/tmp/clawhub-demo/archive.zip",

276+

}),

277+

);

278+

expect(archiveCleanupMock).toHaveBeenCalledTimes(1);

279+

});

280+
281+

it("does not let a wildcard plugin API range hide an invalid runtime version", async () => {

282+

resolveCompatibilityHostVersionMock.mockReturnValueOnce("invalid");

283+

fetchClawHubPackageVersionMock.mockResolvedValueOnce({

284+

version: {

285+

version: "2026.3.22",

286+

createdAt: 0,

287+

changelog: "",

288+

sha256hash: "a9eac48c6129bc44b6f93c9a9f48f6c700d191b7279a1e1915f28df6f59bb1af",

289+

compatibility: {

290+

pluginApiRange: "*",

291+

minGatewayVersion: "2026.3.0",

292+

},

293+

},

294+

});

295+
296+

const result = await installPluginFromClawHub({

297+

spec: "clawhub:demo",

298+

});

299+
300+

expect(result).toMatchObject({

301+

ok: false,

302+

code: CLAWHUB_INSTALL_ERROR_CODE.INCOMPATIBLE_PLUGIN_API,

303+

error: 'Plugin "demo" requires plugin API *, but this OpenClaw runtime exposes invalid.',

304+

});

305+

expect(downloadClawHubPackageArchiveMock).not.toHaveBeenCalled();

306+

expect(installPluginFromArchiveMock).not.toHaveBeenCalled();

307+

expect(archiveCleanupMock).not.toHaveBeenCalled();

308+

});

309+
252310

it("passes dangerous force unsafe install through to archive installs", async () => {

253311

await installPluginFromClawHub({

254312

spec: "clawhub:demo",