OpenClaw keeps older plugin contracts wired through named compatibility adapters before removing them. This protects existing bundled and external plugins while the SDK, manifest, setup, config, and agent runtime contracts evolve.Documentation Index
Fetch the complete documentation index at: https://docs.openclaw.ai/llms.txt
Use this file to discover all available pages before exploring further.
Compatibility registry
Plugin compatibility contracts are tracked in the core registry atsrc/plugins/compat/registry.ts.
Each record has:
- a stable compatibility code
- status:
active,deprecated,removal-pending, orremoved - owner: SDK, config, setup, channel, provider, plugin execution, agent runtime, or core
- introduction and deprecation dates when applicable
- replacement guidance
- docs, diagnostics, and tests that cover the old and new behavior
src/commands/doctor/shared/deprecation-compat.ts. Those records cover old
config shapes, install-ledger layouts, and repair shims that may need to stay
available after the runtime compatibility path is removed.
Release sweeps should check both registries. Do not delete a doctor migration
just because the matching runtime or config compatibility record expired; first
verify there is no supported upgrade path that still needs the repair. Also
revalidate each replacement annotation during release planning because plugin
ownership and config footprint can change as providers and channels move out of
core.
Plugin inspector package
The plugin inspector should live outside the core OpenClaw repo as a separate package/repository backed by the versioned compatibility and manifest contracts. The day-one CLI should be:- manifest/schema validation
- the contract compatibility version being checked
- install/source metadata checks
- cold-path import checks
- deprecation and compatibility warnings
--json for stable machine-readable output in CI annotations. OpenClaw
core should expose contracts and fixtures the inspector can consume, but should
not publish the inspector binary from the main openclaw package.
Maintainer acceptance lane
Use Crabbox-backed Blacksmith Testbox for the installable-package acceptance lane when validating the external inspector against OpenClaw plugin packages. Run it from a clean OpenClaw checkout after the package is built:Deprecation policy
OpenClaw should not remove a documented plugin contract in the same release that introduces its replacement. The migration sequence is:- Add the new contract.
- Keep the old behavior wired through a named compatibility adapter.
- Emit diagnostics or warnings when plugin authors can act.
- Document the replacement and timeline.
- Test both old and new paths.
- Wait through the announced migration window.
- Remove only with explicit breaking-release approval.
active
instead.
Current compatibility areas
Current compatibility records include:- legacy broad SDK imports such as
openclaw/plugin-sdk/compat - legacy hook-only plugin shapes and
before_agent_start - legacy
activate(api)plugin entrypoints while plugins migrate toregister(api) - legacy SDK aliases such as
openclaw/extension-api,openclaw/plugin-sdk/channel-runtime,openclaw/plugin-sdk/command-authstatus builders,openclaw/plugin-sdk/test-utils(replaced by focusedopenclaw/plugin-sdk/*test subpaths), and theClawdbotConfig/OpenClawSchemaTypetype aliases - bundled plugin allowlist and enablement behavior
- legacy provider/channel env-var manifest metadata
- legacy provider plugin hooks and type aliases while providers move to explicit catalog, auth, thinking, replay, and transport hooks
- legacy runtime aliases such as
api.runtime.taskFlow,api.runtime.subagent.getSession,api.runtime.stt, and deprecatedapi.runtime.config.loadConfig()/api.runtime.config.writeConfigFile(...) - legacy memory-plugin split registration while memory plugins move to
registerMemoryCapability - legacy channel SDK helpers for native message schemas, mention gating, inbound envelope formatting, and approval capability nesting
- legacy channel route key and comparable-target helper aliases while plugins
move to
openclaw/plugin-sdk/channel-route - activation hints that are being replaced by manifest contribution ownership
setup-apiruntime fallback while setup descriptors move to coldsetup.requiresRuntime: falsemetadata- provider
discoveryhooks while provider catalog hooks move tocatalog.run(...) - channel
showConfigured/showInSetupmetadata while channel packages move toopenclaw.channel.exposure - legacy runtime-policy config keys while doctor migrates operators to
agentRuntime - generated bundled channel config metadata fallback while registry-first
channelConfigsmetadata lands - persisted plugin registry disable and install-migration env flags while
repair flows migrate operators to
openclaw plugins registry --refreshandopenclaw doctor --fix - legacy plugin-owned web search, web fetch, and x_search config paths while
doctor migrates them to
plugins.entries.<plugin>.config - legacy
plugins.installsauthored config and bundled plugin load-path aliases while install metadata moves into the state-managed plugin ledger
Release notes
Release notes should include upcoming plugin deprecations with target dates and links to migration docs. That warning needs to happen before a compatibility path moves toremoval-pending or removed.