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

推荐订阅源

B
Blog
D
Docker
J
Java Code Geeks
腾讯CDC
Blog — PlanetScale
Blog — PlanetScale
G
Google Developers Blog
M
MIT News - Artificial intelligence
L
LangChain Blog
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
博客园 - Franky
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
N
Netflix TechBlog - Medium
B
Blog RSS Feed
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News

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): load explicit hook plugins at startup (#766...
MkDev11 · 2026-05-03 · via Recent Commits to openclaw:main

@@ -301,6 +301,25 @@ function createManifestRegistryFixture(): PluginManifestRegistry {

301301

providers: [],

302302

cliBackends: [],

303303

},

304+

{

305+

id: "external-hook-capability",

306+

channels: [],

307+

activation: {

308+

onCapabilities: ["hook"],

309+

},

310+

origin: "global",

311+

enabledByDefault: undefined,

312+

providers: [],

313+

cliBackends: [],

314+

},

315+

{

316+

id: "external-hook-policy",

317+

channels: [],

318+

origin: "global",

319+

enabledByDefault: undefined,

320+

providers: [],

321+

cliBackends: [],

322+

},

304323

{

305324

id: "lossless-claw",

306325

kind: "context-engine",

@@ -847,6 +866,173 @@ describe("resolveGatewayStartupPluginIds", () => {

847866

});

848867

});

849868869+

it("loads explicit hook-capability plugins at startup", () => {

870+

expectStartupPluginIdsCase({

871+

config: createStartupConfig({

872+

enabledPluginIds: ["external-hook-capability"],

873+

allowPluginIds: ["external-hook-capability"],

874+

noConfiguredChannels: true,

875+

memorySlot: "none",

876+

}),

877+

expected: ["external-hook-capability"],

878+

});

879+

});

880+881+

it("does not ambient-load hook-capability plugins at startup", () => {

882+

expectStartupPluginIdsCase({

883+

config: createStartupConfig({

884+

noConfiguredChannels: true,

885+

memorySlot: "none",

886+

}),

887+

expected: ["browser"],

888+

});

889+

});

890+891+

it("blocks hook-capability plugins when plugins are globally disabled", () => {

892+

expectStartupPluginIdsCase({

893+

config: {

894+

channels: {},

895+

plugins: {

896+

enabled: false,

897+

allow: ["external-hook-capability"],

898+

slots: { memory: "none" },

899+

entries: {

900+

"external-hook-capability": {

901+

enabled: true,

902+

},

903+

},

904+

},

905+

},

906+

expected: [],

907+

});

908+

});

909+910+

it("blocks hook-capability plugins when explicitly denied", () => {

911+

expectStartupPluginIdsCase({

912+

config: {

913+

channels: {},

914+

plugins: {

915+

allow: ["external-hook-capability"],

916+

deny: ["external-hook-capability"],

917+

slots: { memory: "none" },

918+

entries: {

919+

"external-hook-capability": {

920+

enabled: true,

921+

},

922+

},

923+

},

924+

},

925+

expected: [],

926+

});

927+

});

928+929+

it("loads explicit hook-policy plugins at startup", () => {

930+

expectStartupPluginIdsCase({

931+

config: {

932+

channels: {},

933+

plugins: {

934+

slots: { memory: "none" },

935+

entries: {

936+

browser: {

937+

enabled: false,

938+

},

939+

"external-hook-policy": {

940+

hooks: {

941+

allowConversationAccess: true,

942+

allowPromptInjection: true,

943+

},

944+

},

945+

},

946+

},

947+

},

948+

expected: ["external-hook-policy"],

949+

});

950+

});

951+952+

it.each([

953+

["conversation access", { allowConversationAccess: true }],

954+

["prompt injection", { allowPromptInjection: true }],

955+

] as const)("loads hook-policy plugins with only %s enabled", (_name, hooks) => {

956+

expectStartupPluginIdsCase({

957+

config: {

958+

channels: {},

959+

plugins: {

960+

slots: { memory: "none" },

961+

entries: {

962+

browser: {

963+

enabled: false,

964+

},

965+

"external-hook-policy": {

966+

hooks,

967+

},

968+

},

969+

},

970+

},

971+

expected: ["external-hook-policy"],

972+

});

973+

});

974+975+

it("keeps hook-policy plugins behind restrictive allowlists", () => {

976+

expectStartupPluginIdsCase({

977+

config: {

978+

channels: {},

979+

plugins: {

980+

allow: ["browser"],

981+

slots: { memory: "none" },

982+

entries: {

983+

browser: {

984+

enabled: false,

985+

},

986+

"external-hook-policy": {

987+

hooks: {

988+

allowPromptInjection: true,

989+

},

990+

},

991+

},

992+

},

993+

},

994+

expected: [],

995+

});

996+

});

997+998+

it("does not let effective-only hook policy bypass the authored startup allowlist", () => {

999+

const activationSourceConfig = {

1000+

channels: {},

1001+

plugins: {

1002+

allow: ["browser"],

1003+

slots: { memory: "none" },

1004+

entries: {

1005+

browser: {

1006+

enabled: false,

1007+

},

1008+

},

1009+

},

1010+

} as OpenClawConfig;

1011+

const runtimeConfig = {

1012+

channels: {},

1013+

plugins: {

1014+

allow: ["browser", "external-hook-policy"],

1015+

slots: { memory: "none" },

1016+

entries: {

1017+

browser: {

1018+

enabled: false,

1019+

},

1020+

"external-hook-policy": {

1021+

hooks: {

1022+

allowPromptInjection: true,

1023+

},

1024+

},

1025+

},

1026+

},

1027+

} as OpenClawConfig;

1028+1029+

expectStartupPluginIdsCase({

1030+

config: runtimeConfig,

1031+

activationSourceConfig,

1032+

expected: [],

1033+

});

1034+

});

1035+8501036

it("starts bundled sidecars selected by root config activation paths", () => {

8511037

const rawConfig = {

8521038

browser: {