Plugin Bundles
Plugin Bundles
Section titled “Plugin Bundles”OpenClaw can install plugins from three external ecosystems: Codex, Claude, and Cursor. These are called bundles — content and metadata packs that OpenClaw maps into native features like skills, hooks, and MCP tools.
Why bundles exist
Section titled “Why bundles exist”Many useful plugins are published in Codex, Claude, or Cursor format. Instead of requiring authors to rewrite them as native OpenClaw plugins, OpenClaw detects these formats and maps their supported content into the native feature set. This means you can install a Claude command pack or a Codex skill bundle and use it immediately.
Install a bundle
Section titled “Install a bundle”Install from a directory, archive, or marketplace
Terminal window # Local directoryopenclaw plugins install ./my-bundle# Archiveopenclaw plugins install ./my-bundle.tgz# Claude marketplaceopenclaw plugins marketplace listopenclaw plugins install
@
Verify detection
Terminal window openclaw plugins listopenclaw plugins inspectBundles show as `Format: bundle` with a subtype of `codex`, `claude`, or `cursor`.Restart and use
Terminal window openclaw gateway restartMapped features (skills, hooks, MCP tools) are available in the next session.
What OpenClaw maps from bundles
Section titled “What OpenClaw maps from bundles”Not every bundle feature runs in OpenClaw today. Here is what works and what is detected but not yet wired.
Supported now
Section titled “Supported now”| Feature | How it maps | Applies to |
|---|---|---|
| Skill content | Bundle skill roots load as normal OpenClaw skills | All formats |
| Commands | commands/ and .cursor/commands/ treated as skill roots | Claude, Cursor |
| Hook packs | OpenClaw-style HOOK.md + handler.ts layouts | Codex |
| MCP tools | Bundle MCP config merged into embedded Pi settings; supported stdio and HTTP servers loaded | All formats |
| Settings | Claude settings.json imported as embedded Pi defaults | Claude |
Skill content
Section titled “Skill content”- bundle skill roots load as normal OpenClaw skill roots
- Claude
commandsroots are treated as additional skill roots - Cursor
.cursor/commandsroots are treated as additional skill roots
This means Claude markdown command files work through the normal OpenClaw skill loader. Cursor command markdown works through the same path.
Hook packs
Section titled “Hook packs”- bundle hook roots work only when they use the normal OpenClaw hook-pack
layout. Today this is primarily the Codex-compatible case:
HOOK.mdhandler.tsorhandler.js
MCP for Pi
Section titled “MCP for Pi”- enabled bundles can contribute MCP server config
- OpenClaw merges bundle MCP config into the effective embedded Pi settings as
mcpServers - OpenClaw exposes supported bundle MCP tools during embedded Pi agent turns by launching stdio servers or connecting to HTTP servers
- project-local Pi settings still apply after bundle defaults, so workspace settings can override bundle MCP entries when needed
Transports
Section titled “Transports”MCP servers can use stdio or HTTP transport:
Stdio launches a child process:
{ "mcp": { "servers": { "my-server": { "command": "node", "args": ["server.js"], "env": { "PORT": "3000" } } } }}HTTP connects to a running MCP server over sse by default, or streamable-http when requested:
{ "mcp": { "servers": { "my-server": { "url": "http://localhost:3100/mcp", "transport": "streamable-http", "headers": { "Authorization": "Bearer ${MY_SECRET_TOKEN}" }, "connectionTimeoutMs": 30000 } } }}transportmay be set to"streamable-http"or"sse"; when omitted, OpenClaw usessse- only
http:andhttps:URL schemes are allowed headersvalues support${ENV_VAR}interpolation- a server entry with both
commandandurlis rejected - URL credentials (userinfo and query params) are redacted from tool descriptions and logs
connectionTimeoutMsoverrides the default 30-second connection timeout for both stdio and HTTP transports
Tool naming
Section titled “Tool naming”OpenClaw registers bundle MCP tools with provider-safe names in the form
serverName__toolName. For example, a server keyed "vigil-harbor" exposing a
memory_search tool registers as vigil-harbor__memory_search.
- characters outside
A-Za-z0-9_-are replaced with- - server prefixes are capped at 30 characters
- full tool names are capped at 64 characters
- empty server names fall back to
mcp - colliding sanitized names are disambiguated with numeric suffixes
Embedded Pi settings
Section titled “Embedded Pi settings”- Claude
settings.jsonis imported as default embedded Pi settings when the bundle is enabled - OpenClaw sanitizes shell override keys before applying them
Sanitized keys:
shellPathshellCommandPrefix
Detected but not executed
Section titled “Detected but not executed”These are recognized and shown in diagnostics, but OpenClaw does not run them:
- Claude
agents,hooks.jsonautomation,lspServers,outputStyles - Cursor
.cursor/agents,.cursor/hooks.json,.cursor/rules - Codex inline/app metadata beyond capability reporting
Bundle formats
Section titled “Bundle formats”Codex bundles
Markers: .codex-plugin/plugin.json
Optional content: skills/, hooks/, .mcp.json, .app.json
Codex bundles fit OpenClaw best when they use skill roots and OpenClaw-style
hook-pack directories (HOOK.md + handler.ts).
Claude bundles
Two detection modes:
- Manifest-based:
.claude-plugin/plugin.json - Manifestless: default Claude layout (
skills/,commands/,agents/,hooks/,.mcp.json,settings.json)
Claude-specific behavior:
commands/is treated as skill contentsettings.jsonis imported into embedded Pi settings (shell override keys are sanitized).mcp.jsonexposes supported stdio tools to embedded Pihooks/hooks.jsonis detected but not executed- Custom component paths in the manifest are additive (they extend defaults, not replace them)
Cursor bundles
Markers: .cursor-plugin/plugin.json
Optional content: skills/, .cursor/commands/, .cursor/agents/, .cursor/rules/, .cursor/hooks.json, .mcp.json
.cursor/commands/is treated as skill content.cursor/rules/,.cursor/agents/, and.cursor/hooks.jsonare detect-only
Detection precedence
Section titled “Detection precedence”OpenClaw checks for native plugin format first:
openclaw.plugin.jsonor validpackage.jsonwithopenclaw.extensions— treated as native plugin- Bundle markers (
.codex-plugin/,.claude-plugin/, or default Claude/Cursor layout) — treated as bundle
If a directory contains both, OpenClaw uses the native path. This prevents dual-format packages from being partially installed as bundles.
Security
Section titled “Security”Bundles have a narrower trust boundary than native plugins:
- OpenClaw does not load arbitrary bundle runtime modules in-process
- Skills and hook-pack paths must stay inside the plugin root (boundary-checked)
- Settings files are read with the same boundary checks
- Supported stdio MCP servers may be launched as subprocesses
This makes bundles safer by default, but you should still treat third-party bundles as trusted content for the features they do expose.
Troubleshooting
Section titled “Troubleshooting”Bundle is detected but capabilities do not run
Run `openclaw plugins inspect
`. If a capability is listed but marked as not wired, that is a product limit — not a broken install.
Claude command files do not appear
Make sure the bundle is enabled and the markdown files are inside a detected
commands/ or skills/ root.
Claude settings do not apply
Only embedded Pi settings from settings.json are supported. OpenClaw does
not treat bundle settings as raw config patches.
Claude hooks do not execute
hooks/hooks.json is detect-only. If you need runnable hooks, use the
OpenClaw hook-pack layout or ship a native plugin.
Related
Section titled “Related”- Install and Configure Plugins
- Building Plugins — create a native plugin
- Plugin Manifest — native manifest schema