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

推荐订阅源

MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net
腾讯CDC
GbyAI
GbyAI
I
InfoQ
博客园 - Franky
G
Google Developers Blog
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
Vercel News
Vercel News
博客园_首页
MyScale Blog
MyScale Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
V
V2EX
T
The Blog of Author Tim Ferriss
M
MIT News - Artificial intelligence
雷峰网
雷峰网
H
Hackread – Cybersecurity News, Data Breaches, AI and More
大猫的无限游戏
大猫的无限游戏
The GitHub Blog
The GitHub 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): accept deactivate hook alias · openclaw/ope...
vincentkoc · 2026-05-16 · via Recent Commits to openclaw:main

@@ -2298,36 +2298,45 @@ export function createPluginRegistry(registryParams: PluginRegistryParams) {

22982298

});

22992299

return;

23002300

}

2301+

const effectiveHookName = hookName === "deactivate" ? "gateway_stop" : hookName;

2302+

if (hookName === "deactivate") {

2303+

pushDiagnostic({

2304+

level: "warn",

2305+

pluginId: record.id,

2306+

source: record.source,

2307+

message: 'typed hook "deactivate" is a compatibility alias for "gateway_stop"',

2308+

});

2309+

}

23012310

let effectiveHandler = handler;

2302-

if (policy?.allowPromptInjection === false && isPromptInjectionHookName(hookName)) {

2303-

if (hookName !== "before_agent_start") {

2311+

if (policy?.allowPromptInjection === false && isPromptInjectionHookName(effectiveHookName)) {

2312+

if (effectiveHookName !== "before_agent_start") {

23042313

pushDiagnostic({

23052314

level: "warn",

23062315

pluginId: record.id,

23072316

source: record.source,

2308-

message: `typed hook "${hookName}" blocked by plugins.entries.${record.id}.hooks.allowPromptInjection=false`,

2317+

message: `typed hook "${effectiveHookName}" blocked by plugins.entries.${record.id}.hooks.allowPromptInjection=false`,

23092318

});

23102319

return;

23112320

}

23122321

pushDiagnostic({

23132322

level: "warn",

23142323

pluginId: record.id,

23152324

source: record.source,

2316-

message: `typed hook "${hookName}" prompt fields constrained by plugins.entries.${record.id}.hooks.allowPromptInjection=false`,

2325+

message: `typed hook "${effectiveHookName}" prompt fields constrained by plugins.entries.${record.id}.hooks.allowPromptInjection=false`,

23172326

});

23182327

effectiveHandler = constrainLegacyPromptInjectionHook(

23192328

handler as PluginHookHandlerMap["before_agent_start"],

23202329

) as PluginHookHandlerMap[K];

23212330

}

2322-

if (isConversationHookName(hookName)) {

2331+

if (isConversationHookName(effectiveHookName)) {

23232332

const explicitConversationAccess = policy?.allowConversationAccess;

23242333

if (record.origin !== "bundled" && explicitConversationAccess !== true) {

23252334

pushDiagnostic({

23262335

level: "warn",

23272336

pluginId: record.id,

23282337

source: record.source,

23292338

message:

2330-

`typed hook "${hookName}" blocked because non-bundled plugins must set ` +

2339+

`typed hook "${effectiveHookName}" blocked because non-bundled plugins must set ` +

23312340

`plugins.entries.${record.id}.hooks.allowConversationAccess=true`,

23322341

});

23332342

return;

@@ -2337,16 +2346,16 @@ export function createPluginRegistry(registryParams: PluginRegistryParams) {

23372346

level: "warn",

23382347

pluginId: record.id,

23392348

source: record.source,

2340-

message: `typed hook "${hookName}" blocked by plugins.entries.${record.id}.hooks.allowConversationAccess=false`,

2349+

message: `typed hook "${effectiveHookName}" blocked by plugins.entries.${record.id}.hooks.allowConversationAccess=false`,

23412350

});

23422351

return;

23432352

}

23442353

}

2345-

const timeoutMs = resolveTypedHookTimeoutMs({ hookName, opts, policy });

2354+

const timeoutMs = resolveTypedHookTimeoutMs({ hookName: effectiveHookName, opts, policy });

23462355

record.hookCount += 1;

23472356

registry.typedHooks.push({

23482357

pluginId: record.id,

2349-

hookName,

2358+

hookName: effectiveHookName,

23502359

handler: effectiveHandler,

23512360

priority: opts?.priority,

23522361

...(timeoutMs !== undefined ? { timeoutMs } : {}),