Plugins
Plugins extend Velaclaw with new capabilities: channels, model providers, tools, skills, speech, realtime transcription, realtime voice, media-understanding, image generation, video generation, web fetch, web search, and more. Some plugins are core (shipped with Velaclaw), others are external (published on npm by the community).Quick start
1
See what is loaded
2
Install a plugin
3
Restart the Gateway
plugins.entries.\<id\>.config in your config file.commands.plugins: true and use:
clawhub:<pkg>, or bare package spec (ClawHub first, then npm fallback).
If config is invalid, install normally fails closed and points you at
velaclaw doctor --fix. The only recovery exception is a narrow bundled-plugin
reinstall path for plugins that opt into
velaclaw.install.allowInvalidConfigRecovery.
Plugin types
Velaclaw recognizes two plugin formats:
Both show up under
velaclaw plugins list. See Plugin Bundles for bundle details.
If you are writing a native plugin, start with Building Plugins
and the Plugin SDK Overview.
Official plugins
Installable (npm)
Core (shipped with Velaclaw)
Model providers (enabled by default)
Model providers (enabled by default)
anthropic, byteplus, cloudflare-ai-gateway, github-copilot, google,
huggingface, kilocode, kimi-coding, minimax, mistral, qwen,
moonshot, nvidia, openai, opencode, opencode-go, openrouter,
qianfan, synthetic, together, venice,
vercel-ai-gateway, volcengine, xiaomi, zaiMemory plugins
Memory plugins
memory-core— bundled memory search (default viaplugins.slots.memory)memory-lancedb— install-on-demand long-term memory with auto-recall/capture (setplugins.slots.memory = "memory-lancedb")
Speech providers (enabled by default)
Speech providers (enabled by default)
elevenlabs, microsoftOther
Other
browser— bundled browser plugin for the browser tool,velaclaw browserCLI,browser.requestgateway method, browser runtime, and default browser control service (enabled by default; disable before replacing it)copilot-proxy— VS Code Copilot Proxy bridge (disabled by default)
Configuration
Config changes require a gateway restart. If the Gateway is running with config
watch + in-process restart enabled (the default
velaclaw gateway path), that
restart is usually performed automatically a moment after the config write lands.
Plugin states: disabled vs missing vs invalid
Plugin states: disabled vs missing vs invalid
- Disabled: plugin exists but enablement rules turned it off. Config is preserved.
- Missing: config references a plugin id that discovery did not find.
- Invalid: plugin exists but its config does not match the declared schema.
Discovery and precedence
Velaclaw scans for plugins in this order (first match wins):1
Config paths
plugins.load.paths — explicit file or directory paths.2
Workspace extensions
\<workspace\>/.velaclaw/<plugin-root>/*.ts and \<workspace\>/.velaclaw/<plugin-root>/*/index.ts.3
Global extensions
~/.velaclaw/<plugin-root>/*.ts and ~/.velaclaw/<plugin-root>/*/index.ts.4
Bundled plugins
Shipped with Velaclaw. Many are enabled by default (model providers, speech).
Others require explicit enablement.
Enablement rules
plugins.enabled: falsedisables all pluginsplugins.denyalways wins over allowplugins.entries.\<id\>.enabled: falsedisables that plugin- Workspace-origin plugins are disabled by default (must be explicitly enabled)
- Bundled plugins follow the built-in default-on set unless overridden
- Exclusive slots can force-enable the selected plugin for that slot
Plugin slots (exclusive categories)
Some categories are exclusive (only one active at a time):CLI reference
velaclaw plugins enable <id>.
--force overwrites an existing installed plugin or hook pack in place.
It is not supported with --link, which reuses the source path instead of
copying over a managed install target.
--pin is npm-only. It is not supported with --marketplace, because
marketplace installs persist marketplace source metadata instead of an npm spec.
--dangerously-force-unsafe-install is a break-glass override for false
positives from the built-in dangerous-code scanner. It allows plugin installs
and plugin updates to continue past built-in critical findings, but it still
does not bypass plugin before_install policy blocks or scan-failure blocking.
This CLI flag applies to plugin install/update flows only. Gateway-backed skill
dependency installs use the matching dangerouslyForceUnsafeInstall request
override instead, while velaclaw skills install remains the separate ClawHub
skill download/install flow.
Compatible bundles participate in the same plugin list/inspect/enable/disable
flow. Current runtime support includes bundle skills, Claude command-skills,
Claude settings.json defaults, Claude .lsp.json and manifest-declared
lspServers defaults, Cursor command-skills, and compatible Codex hook
directories.
velaclaw plugins inspect <id> also reports detected bundle capabilities plus
supported or unsupported MCP and LSP server entries for bundle-backed plugins.
Marketplace sources can be a Claude known-marketplace name from
~/.claude/plugins/known_marketplaces.json, a local marketplace root or
marketplace.json path, a GitHub shorthand like owner/repo, a GitHub repo
URL, or a git URL. For remote marketplaces, plugin entries must stay inside the
cloned marketplace repo and use relative path sources only.
See velaclaw plugins CLI reference for full details.
Plugin API overview
Native plugins export an entry object that exposesregister(api). Older
plugins may still use activate(api) as a legacy alias, but new plugins should
use register.
register(api) during plugin
activation. The loader still falls back to activate(api) for older plugins,
but bundled plugins and new external plugins should treat register as the
public contract.
Common registration methods:
Hook guard behavior for typed lifecycle hooks:
before_tool_call:{ block: true }is terminal; lower-priority handlers are skipped.before_tool_call:{ block: false }is a no-op and does not clear an earlier block.before_install:{ block: true }is terminal; lower-priority handlers are skipped.before_install:{ block: false }is a no-op and does not clear an earlier block.message_sending:{ cancel: true }is terminal; lower-priority handlers are skipped.message_sending:{ cancel: false }is a no-op and does not clear an earlier cancel.
Related
- Building Plugins — create your own plugin
- Plugin Bundles — Codex/Claude/Cursor bundle compatibility
- Plugin Manifest — manifest schema
- Registering Tools — add agent tools in a plugin
- Plugin Internals — capability model and load pipeline
- Community Plugins — third-party listings