Tools
Awesome Openclaw Plugins
A curated list of plugins for OpenClaw, the open-source personal AI assistant
Install
openclaw plugins install @openclaw/voice-call`
README
# Awesome OpenClaw Plugins [](https://awesome.re)
> A curated list of plugins for [OpenClaw](https://github.com/openclaw/openclaw), the open-source personal AI assistant.
<p align="center">
<a href="https://docs.openclaw.ai/plugin">Plugin Docs</a> โข
<a href="https://github.com/openclaw/openclaw">GitHub</a> โข
<a href="https://discord.com/invite/clawd">Discord</a>
</p>
## Contents
- [Skills vs Plugins: What's the Difference?](#skills-vs-plugins-whats-the-difference)
- [Official Plugins](#official-plugins)
- [Channel Plugins](#channel-plugins)
- [Smart Home & IoT](#smart-home--iot)
- [Automotive](#automotive)
- [Utility Plugins](#utility-plugins)
- [Memory & AI](#memory--ai)
- [Security & Governance](#security--governance)
- [Multi-Agent & Coordination](#multi-agent--coordination)
- [Observability & DevOps](#observability--devops)
- [Health & Wellness](#health--wellness)
- [Meta & Self-Improvement](#meta--self-improvement)
- [Contributing](#contributing)
## Skills vs Plugins: What's the Difference?
OpenClaw has two extension mechanisms: **Skills** and **Plugins**. Understanding when to use each is key to building effective extensions.
### Skills
Skills are **prompt-based instructions** that teach the agent how to use external tools or follow specific workflows.
```
skills/
โโโ weather/
โโโ SKILL.md # Instructions for the agent
```
**Characteristics:**
- ๐ Markdown files with instructions
- ๐ง Loaded into the agent's context at runtime
- ๐ง Rely on existing tools (exec, browser, etc.)
- ๐ Easy to create โ just write a SKILL.md
- โก No code execution, just prompt engineering
**Best for:**
- Teaching the agent to use CLI tools
- Defining workflows and best practices
- API integration via curl/scripts
- Quick, low-code extensions
### Plugins
Plugins are **TypeScript modules** that run in-process with the OpenClaw gateway, extending its core capabilities.
```
extensions/
โโโ voice-call/
โโโ index.ts # Plugin code
โโโ openclaw.plugin.json # Manifest
โโโ package.json
```
**Characteristics:**
- ๐ป Full TypeScript/JavaScript code
- โ๏ธ Run in the gateway process
- ๐ Can register new tools, channels, CLI commands, and RPC methods
- ๐ Access to gateway internals and APIs
- ๐ฆ Distributed via npm or git
**Best for:**
- Adding new messaging channels (Slack, Teams, etc.)
- Custom agent tools with complex logic
- Background services and scheduled tasks
- Gateway UI enhancements
- Anything requiring persistent state or network connections
### The Case for Plugins
While skills are great for quick integrations, **plugins are fundamentally more powerful**:
| Capability | Skills | Plugins |
|------------|--------|---------|
| Add new messaging channels | โ | โ
|
| Register custom agent tools | โ | โ
|
| Add CLI commands | โ | โ
|
| Run background services | โ | โ
|
| Modify gateway behavior | โ | โ
|
| Persistent state management | โ | โ
|
| OAuth flows & auth handlers | โ | โ
|
| WebSocket connections | โ | โ
|
| HTTP endpoint handlers | โ | โ
|
| Ship bundled skills | โ | โ
|
**Bottom line:** Skills tell the agent *how* to do things. Plugins give the agent *new abilities* it couldn't have otherwise.
<details open>
<summary><h2 style="display:inline">Official Plugins</h2></summary>
Plugins maintained by the OpenClaw team, available under the `@openclaw/*` scope.
- [voice-call](https://docs.openclaw.ai/plugins/voice-call) - Voice calling via Twilio (or log fallback for dev). `openclaw plugins install @openclaw/voice-call`
- [matrix](https://docs.openclaw.ai/channels/matrix) - Matrix chat protocol channel. `openclaw plugins install @openclaw/matrix`
- [nostr](https://docs.openclaw.ai/channels/nostr) - Nostr decentralized protocol channel. `openclaw plugins install @openclaw/nostr`
- [zalo](https://docs.openclaw.ai/channels/zalo) - Zalo messaging (Vietnam). `openclaw plugins install @openclaw/zalo`
- [zalouser](https://docs.openclaw.ai/plugins/zalouser) - Zalo Personal account integration. `openclaw plugins install @openclaw/zalouser`
- [msteams](https://docs.openclaw.ai/channels/msteams) - Microsoft Teams channel. `openclaw plugins install @openclaw/msteams`
### Bundled Plugins
These ship with OpenClaw and can be enabled via config:
- **memory-core** โ Default memory search plugin
- **memory-lancedb** โ LanceDB-based long-term memory with auto-recall
- **google-antigravity-auth** โ Google OAuth provider
- **google-gemini-cli-auth** โ Gemini CLI OAuth provider
- **qwen-portal-auth** โ Qwen OAuth provider
- **copilot-proxy** โ VS Code Copilot proxy bridge
</details>
<details open>
<summary><h2 style="display:inline">Channel Plugins</h2></summary>
Add new messaging platforms to OpenClaw.
- [feishu](https://github.com/m1heng/clawdbot-feishu) - Feishu/Lark (้ฃไนฆ) channel with Stream mode, AI cards, docs/wiki/bitable tools. By [@m1heng](https://github.com/m1heng). `openclaw plugins install @m1heng-clawd/feishu`
- [dingtalk](https://github.com/soimy/openclaw-channel-dingtalk) - DingTalk (้้) enterprise bot with Stream mode, AI interactive cards. By [@soimy](https://github.com/soimy). `openclaw plugins install https://github.com/soimy/openclaw-channel-dingtalk.git`
- [cliq](https://github.com/IBIZDigital/openclaw-cliq-channel) - Zoho Cliq team chat with real-time messaging and @mention support. By [@IBIZDigital](https://github.com/IBIZDigital). `openclaw plugins install https://github.com/IBIZDigital/openclaw-cliq-channel.git`
- [xmtp](https://github.com/flooredApe/openclaw-xmtp) - XMTP wallet messaging for AI agents โ Web3 native communication. By [@flooredApe](https://github.com/flooredApe). `openclaw plugins install https://github.com/flooredApe/openclaw-xmtp.git`
- [irc](https://github.com/kcherry497/OpenClaw-IRC-Plugin) - IRC interface with KISS security principles. By [@kcherry497](https://github.com/kcherry497). `openclaw plugins install https://github.com/kcherry497/OpenClaw-IRC-Plugin.git`
- [qq](https://github.com/limouren01/openclaw_qq_plugin) - QQ messaging integration (Chinese). By [@limouren01](https://github.com/limouren01). `openclaw plugins install https://github.com/limouren01/openclaw_qq_plugin.git`
- [wechat](https://github.com/magicwang1111/openclaw-wechat-plugin) - WeChat messaging integration. By [@magicwang1111](https://github.com/magicwang1111). `openclaw plugins install https://github.com/magicwang1111/openclaw-wechat-plugin.git`
- [clawdtalk](https://github.com/team-telnyx/clawdtalk-client) - Phone calling and SMS for OpenClaw via Telnyx. Make and receive phone calls and SMS messages from your AI agent with full calendar, Jira, and web search integration. By [@team-telnyx](https://github.com/team-telnyx). `openclaw plugins install @team-telnyx/clawdtalk`
</details>
<details open>
<summary><h2 style="display:inline">Smart Home & IoT</h2></summary>
Connect your agent to smart home platforms and IoT devices.
- [home-assistant](https://github.com/techartdev/OpenClawHomeAssistant) - Home Assistant add-on โ run OpenClaw directly in your HA instance with full entity access. By [@techartdev](https://github.com/techartdev). โญ **34 stars**
- [webhook-bridge](https://github.com/robb99/clay-webhook-bridge) - Event-driven Home Assistant โ OpenClaw webhook bridge for automations. By [@robb99](https://github.com/robb99). `openclaw plugins install https://github.com/robb99/clay-webhook-bridge.git`
</details>
<details open>
<summary><h2 style="display:inline">Automotive</h2></summary>
Control and monitor vehicles from your agent.
- [tescmd](https://github.com/Oceanswave/openclaw-tescmd) - Tesla vehicle control and telemetry via tescmd โ lock/unlock, climate, charging, location. By [@Oceanswave](https://github.com/Oceanswave). `openclaw plugins install https://github.com/Oceanswave/openclaw-tescmd.git`
</details>
<details open>
<summary><h2 style="display:inline">Utility Plugins</h2></summary>
Enhance the gateway experience with quality-of-life improvements.
- [better-gateway](https://github.com/ThisIsJeron/openclaw-better-gateway) - Enhanced gateway UI with auto-reconnect, connection status indicator, network awareness. By [@ThisIsJeron](https://github.com/ThisIsJeron). `openclaw plugins install @thisisjeron/openclaw-better-gateway`
- [model-selector](https://github.com/bmbsystemsdir/openclaw-model-selector) - Smart model routing โ suggest โ confirm โ execute โ auto-return to default. By [@bmbsystemsdir](https://github.com/bmbsystemsdir). `openclaw plugins install https://github.com/bmbsystemsdir/openclaw-model-selector.git`
- [compaction-context](https://github.com/robertcuadra/compaction-context) - Preserve recent conversation context across compaction cycles. By [@robertcuadra](https://github.com/robertcuadra). `openclaw plugins install https://github.com/robertcuadra/compaction-context.git`
- [manager](https://github.com/ClariSortAi/openclaw-manager-plugin) - Intelligent installation, configuration, and management for OpenClaw instances. By [@ClariSortAi](https://github.com/ClariSortAi). `openclaw plugins install https://github.com/ClariSortAi/openclaw-manager-plugin.git`
- [2do](https://github.com/chuckiefan/moltbot-plugin-2do) - 2Do task app integration โ send tasks via natural language to 2Do's Email-to-Task feature. By [@chuckiefan](https://github.com/chuckiefan). `openclaw plugins install https://github.com/chuckiefan/moltbot-plugin-2do.git`
</details>
<details open>
<summary><h2 style="display:inline">Memory & AI</h2></summary>
Advanced memory backends and AI enhancements.
- [unified-memory](https://github.com/bmbsystemsdir/openclaw-unified-plugins) - Unified memory layer combining Graphiti knowledge graphs with Beads temporal memory. By [@bmbsystemsdir](https://github.com/bmbsystemsdir). `openclaw plugins install https://github.com/bmbsystemsdir/openclaw-unified-plugins.git`
- [memos-cloud](https://github.com/MemTensor/MemOS-Cloud-OpenClaw-Plugin) - MemOS cloud-based memory backend for cross-devic
... (truncated)
tools
Comments
Sign in to leave a comment