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

推荐订阅源

V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
Google Developers Blog
J
Java Code Geeks
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
美团技术团队
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
IT之家
IT之家
博客园_首页
B
Blog RSS Feed
Google DeepMind News
Google DeepMind News
B
Blog
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
罗磊的独立博客
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
博客园 - 聂微东
腾讯CDC
A
About on SuperTechFans

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
Fail invalid plugin registration gates loudly (#72577) · ...
amknight · 2026-04-27 · via Recent Commits to openclaw:main

@@ -235,6 +235,17 @@ export function createPluginRegistry(registryParams: PluginRegistryParams) {

235235

registry.diagnostics.push(diag);

236236

};

237237238+

const throwRegistrationError = (message: string): never => {

239+

throw new Error(message);

240+

};

241+242+

const requireRegistrationValue = (value: string | undefined, message: string): string => {

243+

if (!value) {

244+

throw new Error(message);

245+

}

246+

return value;

247+

};

248+238249

const registerCodexAppServerExtensionFactory = (

239250

record: PluginRecord,

240251

factory: Parameters<OpenClawPluginApi["registerCodexAppServerExtensionFactory"]>[0],

@@ -414,23 +425,17 @@ export function createPluginRegistry(registryParams: PluginRegistryParams) {

414425

const eventList = Array.isArray(events) ? events : [events];

415426

const normalizedEvents = eventList.map((event) => event.trim()).filter(Boolean);

416427

const entry = opts?.entry ?? null;

417-

const name = entry?.hook.name ?? opts?.name?.trim();

418-

if (!name) {

419-

pushDiagnostic({

420-

level: "warn",

421-

pluginId: record.id,

422-

source: record.source,

423-

message: "hook registration missing name",

424-

});

425-

return;

426-

}

427-

const existingHook = registry.hooks.find((entry) => entry.entry.hook.name === name);

428+

const hookName = requireRegistrationValue(

429+

entry?.hook.name ?? opts?.name?.trim(),

430+

"hook registration missing name",

431+

);

432+

const existingHook = registry.hooks.find((entry) => entry.entry.hook.name === hookName);

428433

if (existingHook) {

429434

pushDiagnostic({

430435

level: "error",

431436

pluginId: record.id,

432437

source: record.source,

433-

message: `hook already registered: ${name} (${existingHook.pluginId})`,

438+

message: `hook already registered: ${hookName} (${existingHook.pluginId})`,

434439

});

435440

return;

436441

}

@@ -441,7 +446,7 @@ export function createPluginRegistry(registryParams: PluginRegistryParams) {

441446

...entry,

442447

hook: {

443448

...entry.hook,

444-

name,

449+

name: hookName,

445450

description,

446451

source: "openclaw-plugin",

447452

pluginId: record.id,

@@ -453,7 +458,7 @@ export function createPluginRegistry(registryParams: PluginRegistryParams) {

453458

}

454459

: {

455460

hook: {

456-

name,

461+

name: hookName,

457462

description,

458463

source: "openclaw-plugin",

459464

pluginId: record.id,

@@ -466,7 +471,7 @@ export function createPluginRegistry(registryParams: PluginRegistryParams) {

466471

invocation: { enabled: true },

467472

};

468473469-

record.hookNames.push(name);

474+

record.hookNames.push(hookName);

470475

registry.hooks.push({

471476

pluginId: record.id,

472477

entry: hookEntry,

@@ -483,7 +488,7 @@ export function createPluginRegistry(registryParams: PluginRegistryParams) {

483488

return;

484489

}

485490486-

const previousRegistrations = activePluginHookRegistrations.get(name) ?? [];

491+

const previousRegistrations = activePluginHookRegistrations.get(hookName) ?? [];

487492

for (const registration of previousRegistrations) {

488493

unregisterInternalHook(registration.event, registration.handler);

489494

}

@@ -496,10 +501,10 @@ export function createPluginRegistry(registryParams: PluginRegistryParams) {

496501

registerInternalHook(event, handler);

497502

nextRegistrations.push({ event, handler });

498503

}

499-

activePluginHookRegistrations.set(name, nextRegistrations);

504+

activePluginHookRegistrations.set(hookName, nextRegistrations);

500505

const rollbackEntries = pluginHookRollback.get(record.id) ?? [];

501506

rollbackEntries.push({

502-

name,

507+

name: hookName,

503508

previousRegistrations: [...previousRegistrations],

504509

});

505510

pluginHookRollback.set(record.id, rollbackEntries);

@@ -1562,13 +1567,7 @@ export function createPluginRegistry(registryParams: PluginRegistryParams) {

15621567

},

15631568

registerMemoryCapability: (capability) => {

15641569

if (!hasKind(record.kind, "memory")) {

1565-

pushDiagnostic({

1566-

level: "error",

1567-

pluginId: record.id,

1568-

source: record.source,

1569-

message: "only memory plugins can register a memory capability",

1570-

});

1571-

return;

1570+

throwRegistrationError("only memory plugins can register a memory capability");

15721571

}

15731572

if (

15741573

Array.isArray(record.kind) &&

@@ -1588,13 +1587,9 @@ export function createPluginRegistry(registryParams: PluginRegistryParams) {

15881587

},

15891588

registerMemoryPromptSection: (builder) => {

15901589

if (!hasKind(record.kind, "memory")) {

1591-

pushDiagnostic({

1592-

level: "error",

1593-

pluginId: record.id,

1594-

source: record.source,

1595-

message: "only memory plugins can register a memory prompt section",

1596-

});

1597-

return;

1590+

throwRegistrationError(

1591+

"only memory plugins can register a memory prompt section",

1592+

);

15981593

}

15991594

if (

16001595

Array.isArray(record.kind) &&

@@ -1620,13 +1615,7 @@ export function createPluginRegistry(registryParams: PluginRegistryParams) {

16201615

},

16211616

registerMemoryFlushPlan: (resolver) => {

16221617

if (!hasKind(record.kind, "memory")) {

1623-

pushDiagnostic({

1624-

level: "error",

1625-

pluginId: record.id,

1626-

source: record.source,

1627-

message: "only memory plugins can register a memory flush plan",

1628-

});

1629-

return;

1618+

throwRegistrationError("only memory plugins can register a memory flush plan");

16301619

}

16311620

if (

16321621

Array.isArray(record.kind) &&

@@ -1646,13 +1635,7 @@ export function createPluginRegistry(registryParams: PluginRegistryParams) {

16461635

},

16471636

registerMemoryRuntime: (runtime) => {

16481637

if (!hasKind(record.kind, "memory")) {

1649-

pushDiagnostic({

1650-

level: "error",

1651-

pluginId: record.id,

1652-

source: record.source,

1653-

message: "only memory plugins can register a memory runtime",

1654-

});

1655-

return;

1638+

throwRegistrationError("only memory plugins can register a memory runtime");

16561639

}

16571640

if (

16581641

Array.isArray(record.kind) &&