This is the deep architecture reference for the OpenClaw plugin system. For practical guides, start with one of the focused pages below.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.
Install and use plugins
End-user guide for adding, enabling, and troubleshooting plugins.
Building plugins
First-plugin tutorial with the smallest working manifest.
Channel plugins
Build a messaging channel plugin.
Provider plugins
Build a model provider plugin.
SDK overview
Import map and registration API reference.
Public capability model
Capabilities are the public native plugin model inside OpenClaw. Every native OpenClaw plugin registers against one or more capability types:| Capability | Registration method | Example plugins |
|---|---|---|
| Text inference | api.registerProvider(...) | openai, anthropic |
| CLI inference backend | api.registerCliBackend(...) | openai, anthropic |
| Speech | api.registerSpeechProvider(...) | elevenlabs, microsoft |
| Realtime transcription | api.registerRealtimeTranscriptionProvider(...) | openai |
| Realtime voice | api.registerRealtimeVoiceProvider(...) | openai |
| Media understanding | api.registerMediaUnderstandingProvider(...) | openai, google |
| Image generation | api.registerImageGenerationProvider(...) | openai, google, fal, minimax |
| Music generation | api.registerMusicGenerationProvider(...) | google, minimax |
| Video generation | api.registerVideoGenerationProvider(...) | qwen |
| Web fetch | api.registerWebFetchProvider(...) | firecrawl |
| Web search | api.registerWebSearchProvider(...) | google |
| Channel / messaging | api.registerChannel(...) | msteams, matrix |
| Gateway discovery | api.registerGatewayDiscoveryService(...) | bonjour |
A plugin that registers zero capabilities but provides hooks, tools, discovery services, or background services is a legacy hook-only plugin. That pattern is still fully supported.
External compatibility stance
The capability model is landed in core and used by bundled/native plugins today, but external plugin compatibility still needs a tighter bar than “it is exported, therefore it is frozen.”| Plugin situation | Guidance |
|---|---|
| Existing external plugins | Keep hook-based integrations working; this is the compatibility baseline. |
| New bundled/native plugins | Prefer explicit capability registration over vendor-specific reach-ins or new hook-only designs. |
| External plugins adopting capability registration | Allowed, but treat capability-specific helper surfaces as evolving unless docs mark them stable. |
Plugin shapes
OpenClaw classifies every loaded plugin into a shape based on its actual registration behavior (not just static metadata):plain-capability
plain-capability
Registers exactly one capability type (for example a provider-only plugin like
mistral).hybrid-capability
hybrid-capability
Registers multiple capability types (for example
openai owns text inference, speech, media understanding, and image generation).hook-only
hook-only
Registers only hooks (typed or custom), no capabilities, tools, commands, or services.
non-capability
non-capability
Registers tools, commands, services, or routes but no capabilities.
openclaw plugins inspect <id> to see a plugin’s shape and capability breakdown. See CLI reference for details.
Legacy hooks
Thebefore_agent_start hook remains supported as a compatibility path for hook-only plugins. Legacy real-world plugins still depend on it.
Direction:
- keep it working
- document it as legacy
- prefer
before_model_resolvefor model/provider override work - prefer
before_prompt_buildfor prompt mutation work - remove only after real usage drops and fixture coverage proves migration safety
Compatibility signals
When you runopenclaw doctor or openclaw plugins inspect <id>, you may see one of these labels:
| Signal | Meaning |
|---|---|
| config valid | Config parses fine and plugins resolve |
| compatibility advisory | Plugin uses a supported-but-older pattern (e.g. hook-only) |
| legacy warning | Plugin uses before_agent_start, which is deprecated |
| hard error | Config is invalid or plugin failed to load |
hook-only nor before_agent_start will break your plugin today: hook-only is advisory, and before_agent_start only triggers a warning. These signals also appear in openclaw status --all and openclaw plugins doctor.
Architecture overview
OpenClaw’s plugin system has four layers:Manifest + discovery
OpenClaw finds candidate plugins from configured paths, workspace roots, global plugin roots, and bundled plugins. Discovery reads native
openclaw.plugin.json manifests plus supported bundle manifests first.Enablement + validation
Core decides whether a discovered plugin is enabled, disabled, blocked, or selected for an exclusive slot such as memory.
Runtime loading
Native OpenClaw plugins are loaded in-process and register capabilities into a central registry. Packaged JavaScript loads through native
require; third-party local source TypeScript is the emergency Jiti fallback. Compatible bundles are normalized into registry records without importing runtime code.- parse-time metadata comes from
registerCli(..., { descriptors: [...] }) - the real plugin CLI module can stay lazy and register on first invocation
- manifest/config validation should work from manifest/schema metadata without executing plugin code
- native capability discovery may load trusted plugin entry code to build a non-activating registry snapshot
- native runtime behavior comes from the plugin module’s
register(api)path withapi.registrationMode === "full"
Plugin metadata snapshot and lookup table
Gateway startup builds onePluginMetadataSnapshot for the current config snapshot. The snapshot is metadata-only: it stores the installed plugin index, manifest registry, manifest diagnostics, owner maps, a plugin id normalizer, and manifest records. It does not hold loaded plugin modules, provider SDKs, package contents, or runtime exports.
Plugin-aware config validation, startup auto-enable, and Gateway plugin bootstrap consume that snapshot instead of rebuilding manifest/index metadata independently. PluginLookUpTable is derived from the same snapshot and adds the startup plugin plan for the current runtime config.
After startup, Gateway keeps the current metadata snapshot as a replaceable runtime product. Repeated runtime provider discovery can borrow that snapshot instead of reconstructing the installed index and manifest registry for each provider-catalog pass. The snapshot is cleared or replaced on Gateway shutdown, config/plugin inventory changes, and installed index writes; callers fall back to the cold manifest/index path when no compatible current snapshot exists. Compatibility checks must include plugin discovery roots such as plugins.load.paths and the default agent workspace, because workspace plugins are part of the metadata scope.
The snapshot and lookup table keep repeated startup decisions on the fast path:
- channel ownership
- deferred channel startup
- startup plugin ids
- provider and CLI backend ownership
- setup provider, command alias, model catalog provider, and manifest contract ownership
- plugin config schema and channel config schema validation
- startup auto-enable decisions
PluginLookUpTable. That path now reconstructs the registry on demand; prefer passing the current lookup table or an explicit manifest registry through runtime flows when a caller already has one.
Activation planning
Activation planning is part of the control plane. Callers can ask which plugins are relevant to a concrete command, provider, channel, route, agent harness, or capability before loading broader runtime registries. The planner keeps current manifest behavior compatible:activation.*fields are explicit planner hintsproviders,channels,commandAliases,setup.providers,contracts.tools, and hooks remain manifest ownership fallback- the ids-only planner API stays available for existing callers
- the plan API reports reason labels so diagnostics can distinguish explicit hints from ownership fallback
Channel plugins and the shared message tool
Channel plugins do not need to register a separate send/edit/react tool for normal chat actions. OpenClaw keeps one sharedmessage tool in core, and channel plugins own the channel-specific discovery and execution behind it.
The current boundary is:
- core owns the shared
messagetool host, prompt wiring, session/thread bookkeeping, and execution dispatch - channel plugins own scoped action discovery, capability discovery, and any channel-specific schema fragments
- channel plugins own provider-specific session conversation grammar, such as how conversation ids encode thread ids or inherit from parent conversations
- channel plugins execute the final action through their action adapter
ChannelMessageActionAdapter.describeMessageTool(...). That unified discovery call lets a plugin return its visible actions, capabilities, and schema contributions together so those pieces do not drift apart.
When a channel-specific message-tool param carries a media source such as a local path or remote media URL, the plugin should also return mediaSourceParams from describeMessageTool(...). Core uses that explicit list to apply sandbox path normalization and outbound media-access hints without hardcoding plugin-owned param names. Prefer action-scoped maps there, not one channel-wide flat list, so a profile-only media param does not get normalized on unrelated actions like send.
Core passes runtime scope into that discovery step. Important fields include:
accountIdcurrentChannelIdcurrentThreadTscurrentMessageIdsessionKeysessionIdagentId- trusted inbound
requesterSenderId
message tool.
This is why embedded-runner routing changes are still plugin work: the runner is responsible for forwarding the current chat/session identity into the plugin discovery boundary so the shared message tool exposes the right channel-owned surface for the current turn.
For channel-owned execution helpers, bundled plugins should keep the execution runtime inside their own extension modules. Core no longer owns the Discord, Slack, Telegram, or WhatsApp message-action runtimes under src/agents/tools. We do not publish separate plugin-sdk/*-action-runtime subpaths, and bundled plugins should import their own local runtime code directly from their extension-owned modules.
The same boundary applies to provider-named SDK seams in general: core should not import channel-specific convenience barrels for Slack, Discord, Signal, WhatsApp, or similar extensions. If core needs a behavior, either consume the bundled plugin’s own api.ts / runtime-api.ts barrel or promote the need into a narrow generic capability in the shared SDK.
Bundled plugins follow the same rule. A bundled plugin’s runtime-api.ts should not re-export its own branded openclaw/plugin-sdk/<plugin-id> facade. Those branded facades remain compatibility shims for external plugins and older consumers, but bundled plugins should use local exports plus narrow generic SDK subpaths such as openclaw/plugin-sdk/channel-policy, openclaw/plugin-sdk/runtime-store, or openclaw/plugin-sdk/webhook-ingress. New code should not add plugin-id-specific SDK facades unless the compatibility boundary for an existing external ecosystem requires it.
For polls specifically, there are two execution paths:
outbound.sendPollis the shared baseline for channels that fit the common poll modelactions.handleAction("poll")is the preferred path for channel-specific poll semantics or extra poll parameters
Capability ownership model
OpenClaw treats a native plugin as the ownership boundary for a company or a feature, not as a grab bag of unrelated integrations. That means:- a company plugin should usually own all of that company’s OpenClaw-facing surfaces
- a feature plugin should usually own the full feature surface it introduces
- channels should consume shared core capabilities instead of re-implementing provider behavior ad hoc
Vendor multi-capability
Vendor multi-capability
openai owns text inference, speech, realtime voice, media understanding, and image generation. google owns text inference plus media understanding, image generation, and web search. qwen owns text inference plus media understanding and video generation.Vendor single-capability
Vendor single-capability
elevenlabs and microsoft own speech; firecrawl owns web-fetch; minimax / mistral / moonshot / zai own media-understanding backends.Feature plugin
Feature plugin
voice-call owns call transport, tools, CLI, routes, and Twilio media-stream bridging, but consumes shared speech, realtime transcription, and realtime voice capabilities instead of importing vendor plugins directly.- OpenAI lives in one plugin even if it spans text models, speech, images, and future video
- another vendor can do the same for its own surface area
- channels do not care which vendor plugin owns the provider; they consume the shared capability contract exposed by core
- plugin = ownership boundary
- capability = core contract that multiple plugins can implement or consume
This keeps ownership explicit while avoiding core behavior that depends on a single vendor or a one-off plugin-specific code path.
Capability layering
Use this mental model when deciding where code belongs:- Core capability layer
- Vendor plugin layer
- Channel/feature plugin layer
Shared orchestration, policy, fallback, config merge rules, delivery semantics, and typed contracts.
- core owns reply-time TTS policy, fallback order, prefs, and channel delivery
openai,elevenlabs, andmicrosoftown synthesis implementationsvoice-callconsumes the telephony TTS runtime helper
Multi-capability company plugin example
A company plugin should feel cohesive from the outside. If OpenClaw has shared contracts for models, speech, realtime transcription, realtime voice, media understanding, image generation, video generation, web fetch, and web search, a vendor can own all of its surfaces in one place:- one plugin owns the vendor surface
- core still owns the capability contracts
- channels and feature plugins consume
api.runtime.*helpers, not vendor code - contract tests can assert that the plugin registered the capabilities it claims to own
Capability example: video understanding
OpenClaw already treats image/audio/video understanding as one shared capability. The same ownership model applies there:Vendor plugins register
Vendor plugins register
describeImage, transcribeAudio, and describeVideo as applicable.api.registerVideoGenerationProvider(...) implementations against it.
Need a concrete rollout checklist? See Capability Cookbook.
Contracts and enforcement
The plugin API surface is intentionally typed and centralized inOpenClawPluginApi. That contract defines the supported registration points and the runtime helpers a plugin may rely on.
Why this matters:
- plugin authors get one stable internal standard
- core can reject duplicate ownership such as two plugins registering the same provider id
- startup can surface actionable diagnostics for malformed registration
- contract tests can enforce bundled-plugin ownership and prevent silent drift
Runtime registration enforcement
Runtime registration enforcement
The plugin registry validates registrations as plugins load. Examples: duplicate provider ids, duplicate speech provider ids, and malformed registrations produce plugin diagnostics instead of undefined behavior.
Contract tests
Contract tests
Bundled plugins are captured in contract registries during test runs so OpenClaw can assert ownership explicitly. Today this is used for model providers, speech providers, web search providers, and bundled registration ownership.
What belongs in a contract
- Good contracts
- Bad contracts
- typed
- small
- capability-specific
- owned by core
- reusable by multiple plugins
- consumable by channels/features without vendor knowledge
Execution model
Native OpenClaw plugins run in-process with the Gateway. They are not sandboxed. A loaded native plugin has the same process-level trust boundary as core code. Compatible bundles are safer by default because OpenClaw currently treats them as metadata/content packs. In current releases, that mostly means bundled skills. Use allowlists and explicit install/load paths for non-bundled plugins. Treat workspace plugins as development-time code, not production defaults. For bundled workspace package names, keep the plugin id anchored in the npm name:@openclaw/<id> by default, or an approved typed suffix such as -provider, -plugin, -speech, -sandbox, or -media-understanding when the package intentionally exposes a narrower plugin role.
Trust note:
plugins.allow trusts plugin ids, not source provenance. A workspace plugin with the same id as a bundled plugin intentionally shadows the bundled copy when that workspace plugin is enabled/allowlisted. This is normal and useful for local development, patch testing, and hotfixes. Bundled-plugin trust is resolved from the source snapshot — the manifest and code on disk at load time — rather than from install metadata. A corrupted or substituted install record cannot silently widen a bundled plugin’s trust surface beyond what the actual source claims.Export boundary
OpenClaw exports capabilities, not implementation convenience. Keep capability registration public. Trim non-contract helper exports:- bundled-plugin-specific helper subpaths
- runtime plumbing subpaths not intended as public API
- vendor-specific convenience helpers
- setup/onboarding helpers that are implementation details
plugin-sdk/gateway-runtime, plugin-sdk/security-runtime, and plugin-sdk/plugin-config-runtime.