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

推荐订阅源

博客园 - 司徒正美
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
罗磊的独立博客
The GitHub Blog
The GitHub Blog
L
LangChain Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
DataBreaches.Net
宝玉的分享
宝玉的分享
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
N
Netflix TechBlog - Medium
The Cloudflare Blog
Microsoft Azure Blog
Microsoft Azure Blog
H
Help Net Security
美团技术团队
大猫的无限游戏
大猫的无限游戏
雷峰网
雷峰网
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | 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
docs: clarify live plugin runtime reloads · openclaw/open...
steipete · 2026-04-24 · via Recent Commits to openclaw:main

@@ -151,6 +151,17 @@ Looking for third-party plugins? See [Community Plugins](/plugins/community).

151151

Config changes **require a gateway restart**. If the Gateway is running with config

152152

watch + in-process restart enabled (the default `openclaw gateway` path), that

153153

restart is usually performed automatically a moment after the config write lands.

154+

There is no supported hot-reload path for native plugin runtime code or lifecycle

155+

hooks; restart the Gateway process that is serving the live channel before

156+

expecting updated `register(api)` code, `api.on(...)` hooks, tools, services, or

157+

provider/runtime hooks to run.

158+159+

`openclaw plugins list` is a local CLI/config snapshot. A `loaded` plugin there

160+

means the plugin is discoverable and loadable from the config/files seen by that

161+

CLI invocation. It does not prove that an already-running remote Gateway child

162+

has restarted into the same plugin code. On VPS/container setups with wrapper

163+

processes, send restarts to the actual `openclaw gateway run` process, or use

164+

`openclaw gateway restart` against the running Gateway.

154165155166

<Accordion title="Plugin states: disabled vs missing vs invalid">

156167

- **Disabled**: plugin exists but enablement rules turned it off. Config is preserved.

@@ -197,6 +208,27 @@ OpenClaw scans for plugins in this order (first match wins):

197208

app-server plugin is selected by `embeddedHarness.runtime: "codex"` or legacy

198209

`codex/*` model refs

199210211+

## Troubleshooting Runtime Hooks

212+213+

If a plugin appears in `plugins list` but `register(api)` side effects or hooks

214+

do not run in live chat traffic, check these first:

215+216+

- Run `openclaw gateway status --deep --require-rpc` and confirm the active

217+

Gateway URL, profile, config path, and process are the ones you are editing.

218+

- Restart the live Gateway after plugin install/config/code changes. In wrapper

219+

containers, PID 1 may only be a supervisor; restart or signal the child

220+

`openclaw gateway run` process.

221+

- Use `openclaw plugins inspect <id> --json` to confirm hook registrations and

222+

diagnostics. Non-bundled conversation hooks such as `llm_input`,

223+

`llm_output`, and `agent_end` need

224+

`plugins.entries.<id>.hooks.allowConversationAccess=true`.

225+

- For model switching, prefer `before_model_resolve`. It runs before model

226+

resolution for agent turns; `llm_output` only runs after a model attempt

227+

produces assistant output.

228+

- For proof of the effective session model, use `openclaw sessions` or the

229+

Gateway session/status surfaces and, when debugging provider payloads, start

230+

the Gateway with `--raw-stream --raw-stream-path <path>`.

231+200232

## Plugin slots (exclusive categories)

201233202234

Some categories are exclusive (only one active at a time):