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

推荐订阅源

博客园_首页
H
Help Net Security
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
A
About on SuperTechFans
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
Martin Fowler
Martin Fowler
I
InfoQ
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog RSS Feed
U
Unit 42
The Cloudflare Blog
Y
Y Combinator 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(plugins): honor descriptor-only setup flag · openclaw...
vincentkoc · 2026-04-25 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

77

### Changes

88
99

- Gradium: add a bundled text-to-speech provider with voice-note and telephony output support. (#64958) Thanks @LaurentMazare.

10+

- Plugins/setup: honor explicit `setup.requiresRuntime: false` as a descriptor-only setup contract while keeping omitted values on the legacy setup-api fallback path. Thanks @vincentkoc.

1011

- TUI/dependencies: remove direct `cli-highlight` usage from the OpenClaw TUI code-block renderer, keeping themed code coloring without the extra root dependency. Thanks @vincentkoc.

1112

- Diagnostics/OTEL: export run, model-call, and tool-execution diagnostic lifecycle events as OTEL spans without retaining live span state. Thanks @vincentkoc.

1213

- Plugins/activation: expose activation plan reasons and a richer plan API so callers can inspect why a plugin was selected while preserving existing id-list activation behavior. (#70943) Thanks @vincentkoc.

Original file line numberDiff line numberDiff line change

@@ -71,10 +71,12 @@ or fallback behavior without changing runtime loading semantics.

7171
7272

Setup discovery now prefers descriptor-owned ids such as `setup.providers` and

7373

`setup.cliBackends` to narrow candidate plugins before it falls back to

74-

`setup-api` for plugins that still need setup-time runtime hooks. If more than

75-

one discovered plugin claims the same normalized setup provider or CLI backend

76-

id, setup lookup refuses the ambiguous owner instead of relying on discovery

77-

order.

74+

`setup-api` for plugins that still need setup-time runtime hooks. Explicit

75+

`setup.requiresRuntime: false` is a descriptor-only cutoff; omitted

76+

`requiresRuntime` keeps the legacy setup-api fallback for compatibility. If more

77+

than one discovered plugin claims the same normalized setup provider or CLI

78+

backend id, setup lookup refuses the ambiguous owner instead of relying on

79+

discovery order.

7880
7981

### What the loader caches

8082
Original file line numberDiff line numberDiff line change

@@ -327,6 +327,12 @@ narrows the candidate plugin and setup still needs richer setup-time runtime

327327

hooks, set `requiresRuntime: true` and keep `setup-api` in place as the

328328

fallback execution path.

329329
330+

Set `requiresRuntime: false` only when those descriptors are sufficient for the

331+

setup surface. OpenClaw treats explicit `false` as a descriptor-only contract

332+

and will not execute `setup-api` for setup lookup. Omitted `requiresRuntime`

333+

keeps legacy fallback behavior so existing plugins that added descriptors

334+

without the flag do not break.

335+
330336

Because setup lookup can execute plugin-owned `setup-api` code, normalized

331337

`setup.providers[].id` and `setup.cliBackends[]` values must stay unique across

332338

discovered plugins. Ambiguous ownership fails closed instead of picking a

Original file line numberDiff line numberDiff line change

@@ -349,6 +349,39 @@ describe("setup-registry getJiti", () => {

349349

expect(mocks.createJiti.mock.calls[0]?.[0]).toBe(path.join(pluginRoot, "setup-api.js"));

350350

});

351351
352+

it("treats explicit descriptor-only setup as a runtime cutoff", () => {

353+

const pluginRoot = makeTempDir();

354+

fs.writeFileSync(

355+

path.join(pluginRoot, "setup-api.js"),

356+

"export default { register(api) { api.registerProvider({ id: 'openai', label: 'OpenAI', auth: [] }); api.registerCliBackend({ id: 'codex-cli', config: { command: 'codex' } }); } };\n",

357+

"utf-8",

358+

);

359+

mocks.loadPluginManifestRegistry.mockReturnValue({

360+

plugins: [

361+

{

362+

id: "openai",

363+

rootDir: pluginRoot,

364+

setup: {

365+

providers: [{ id: "openai" }],

366+

cliBackends: ["codex-cli"],

367+

requiresRuntime: false,

368+

},

369+

},

370+

],

371+

diagnostics: [],

372+

});

373+
374+

expect(resolvePluginSetupProvider({ provider: "openai", env: {} })).toBeUndefined();

375+

expect(resolvePluginSetupCliBackend({ backend: "codex-cli", env: {} })).toBeUndefined();

376+

expect(resolvePluginSetupRegistry({ env: {} })).toEqual({

377+

providers: [],

378+

cliBackends: [],

379+

configMigrations: [],

380+

autoEnableProbes: [],

381+

});

382+

expect(mocks.createJiti).not.toHaveBeenCalled();

383+

});

384+
352385

it("does not load setup-api modules from the current working directory", () => {

353386

const pluginRoot = makeTempDir();

354387

const workspaceRoot = makeTempDir();

Original file line numberDiff line numberDiff line change

@@ -272,6 +272,9 @@ function resolveSetupRegistration(record: PluginManifestRecord): {

272272

setupSource: string;

273273

register: (api: ReturnType<typeof buildPluginApi>) => void | Promise<void>;

274274

} | null {

275+

if (record.setup?.requiresRuntime === false) {

276+

return null;

277+

}

275278

const setupSource = record.setupSource ?? resolveSetupApiPath(record.rootDir);

276279

if (!setupSource) {

277280

return null;