Skip to content

ThisIsJeron/awesome-openclaw-plugins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 

Repository files navigation

Awesome OpenClaw Plugins Awesome

A curated list of plugins for OpenClaw, the open-source personal AI assistant.

Plugin DocsGitHubDiscord

Contents

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.

Official Plugins

Plugins maintained by the OpenClaw team, available under the @openclaw/* scope.

  • voice-call - Voice calling via Twilio (or log fallback for dev). openclaw plugins install @openclaw/voice-call
  • matrix - Matrix chat protocol channel. openclaw plugins install @openclaw/matrix
  • nostr - Nostr decentralized protocol channel. openclaw plugins install @openclaw/nostr
  • zalo - Zalo messaging (Vietnam). openclaw plugins install @openclaw/zalo
  • zalouser - Zalo Personal account integration. openclaw plugins install @openclaw/zalouser
  • 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

Channel Plugins

Add new messaging platforms to OpenClaw.

  • feishu - Feishu/Lark (飞书) channel with Stream mode, AI cards, docs/wiki/bitable tools. By @m1heng. openclaw plugins install @m1heng-clawd/feishu
  • dingtalk - DingTalk (钉钉) enterprise bot with Stream mode, AI interactive cards. By @soimy. openclaw plugins install https://github.com/soimy/openclaw-channel-dingtalk.git
  • cliq - Zoho Cliq team chat with real-time messaging and @mention support. By @IBIZDigital. openclaw plugins install https://github.com/IBIZDigital/openclaw-cliq-channel.git
  • xmtp - XMTP wallet messaging for AI agents — Web3 native communication. By @flooredApe. openclaw plugins install https://github.com/flooredApe/openclaw-xmtp.git
  • irc - IRC interface with KISS security principles. By @kcherry497. openclaw plugins install https://github.com/kcherry497/OpenClaw-IRC-Plugin.git
  • qq - QQ messaging integration (Chinese). By @limouren01. openclaw plugins install https://github.com/limouren01/openclaw_qq_plugin.git
  • wechat - WeChat messaging integration. By @magicwang1111. openclaw plugins install https://github.com/magicwang1111/openclaw-wechat-plugin.git
  • clawdtalk - 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. openclaw plugins install @team-telnyx/clawdtalk
  • eclaw - E-Claw AI live wallpaper chat — connect your bot to animated Android wallpaper characters (lobsters, pigs). By @HankHuang0516. openclaw plugins install @eclaw/openclaw-channel

Smart Home & IoT

Connect your agent to smart home platforms and IoT devices.

  • home-assistant - Home Assistant add-on — run OpenClaw directly in your HA instance with full entity access. By @techartdev. ⭐ 34 stars
  • webhook-bridge - Event-driven Home Assistant → OpenClaw webhook bridge for automations. By @robb99. openclaw plugins install https://github.com/robb99/clay-webhook-bridge.git

Automotive

Control and monitor vehicles from your agent.

  • tescmd - Tesla vehicle control and telemetry via tescmd — lock/unlock, climate, charging, location. By @Oceanswave. openclaw plugins install https://github.com/Oceanswave/openclaw-tescmd.git

Utility Plugins

Enhance the gateway experience with quality-of-life improvements.

  • better-gateway - Enhanced gateway UI with auto-reconnect, connection status indicator, network awareness. By @ThisIsJeron. openclaw plugins install @thisisjeron/openclaw-better-gateway
  • model-selector - Smart model routing — suggest → confirm → execute → auto-return to default. By @bmbsystemsdir. openclaw plugins install https://github.com/bmbsystemsdir/openclaw-model-selector.git
  • compaction-context - Preserve recent conversation context across compaction cycles. By @robertcuadra. openclaw plugins install https://github.com/robertcuadra/compaction-context.git
  • claw-turbo - Regex skill router with OpenClaw integration that short-circuits common commands locally to cut latency and improve tool-calling reliability on weaker models. By @jacobye2017-afk. git clone https://github.com/jacobye2017-afk/claw-turbo.git && cd claw-turbo && pip install -e . && claw-turbo install
  • discourse-openclaw - Discourse forum integration — search, read, create topics/posts, find unanswered questions. By @pranciskus. openclaw plugins install openclaw-discourse
  • manager - Intelligent installation, configuration, and management for OpenClaw instances. By @ClariSortAi. openclaw plugins install https://github.com/ClariSortAi/openclaw-manager-plugin.git
  • tweetclaw - Post tweets, reply, like, retweet, follow, DM & more from your chat. 40+ X/Twitter endpoints via Xquik. By @Xquik-dev. openclaw plugins install @xquik/tweetclaw
  • 2do - 2Do task app integration — send tasks via natural language to 2Do's Email-to-Task feature. By @chuckiefan. openclaw plugins install https://github.com/chuckiefan/moltbot-plugin-2do.git
  • clawcollect - Hosted form collection bridge — open a form from chat, share a public link, check response progress, and summarize results. Supports managed and self-hosted (Cloudflare Workers + D1) backends. By @ruan11223344. openclaw plugins install @clawcollect/clawcollect

Memory & AI

Advanced memory backends and AI enhancements.

  • unified-memory - Unified memory layer combining Graphiti knowledge graphs with Beads temporal memory. By @bmbsystemsdir. openclaw plugins install https://github.com/bmbsystemsdir/openclaw-unified-plugins.git
  • memos-cloud - MemOS cloud-based memory backend for cross-device persistence. By @MemTensor. openclaw plugins install https://github.com/MemTensor/MemOS-Cloud-OpenClaw-Plugin.git

Security & Governance

Add guardrails and governance to your agent.

  • guardspine - Deny-by-default tool gating with L0-L4 risk tiers, 3-model council verification, and evidence packs. By @DNYoussef. openclaw plugins install https://github.com/DNYoussef/guardspine-openclaw.git
  • air-trust - EU AI Act compliance layer — HMAC-SHA256 tamper-evident audit chains, consent gating for destructive tools, PII/credential tokenization, and 15-pattern prompt injection detection. 6 agent tools + 3 event hooks. By @airblackbox. npm install openclaw-air-trust
  • codex-watchdog - Guardrail plugin that blocks Codex narrative-loop replies when action-oriented runs make zero tool calls, replacing fake progress with an honest watchdog message. By @ThisIsJeron. openclaw plugins install https://github.com/ThisIsJeron/openclaw-codex-watchdog.git

Multi-Agent & Coordination

Run distributed agents and coordinate across instances.

  • ansible - Distributed coordination layer — one agent, multiple bodies across machines. By @likesjx. openclaw plugins install https://github.com/likesjx/openclaw-plugin-ansible.git

Observability & DevOps

Monitor, debug, and manage your OpenClaw instances.

  • observatory - Self-hosted observability dashboard — monitor sessions, context windows, costs, and failures across multiple gateways. By @ThisIsJeron. openclaw plugins install @thisisjeron/openclaw-observatory
  • Manifest - Real-time cost observability for OpenClaw agents — track tokens, costs, messages, and model usage. Self-hosted, local-first, supports 28+ LLM models. Website: manifest.build. By @mnfst. openclaw plugins install manifest
  • opik-openclaw - OpenClaw plugin that exports agent traces to Opik with LLM/tool/sub-agent spans plus usage and cost metadata. By @comet-ml. openclaw plugins install @opik/opik-openclaw

Health & Wellness

Integrate health and fitness data into your agent conversations.

  • ouraclaw - Oura Ring integration — sleep, readiness, activity, stress data with scheduled summaries. By @rickybloomfield. openclaw plugins install @rickybloomfield/ouraclaw

Meta & Self-Improvement

Plugins that enhance OpenClaw's ability to learn and grow.

  • foundry - Self-writing meta-extension — observes workflows, learns patterns, writes new extensions and skills. By @lekt9. openclaw plugins install @getfoundry/foundry-openclaw

Social Media & Content

Plugins for social publishing, scheduling, and audience engagement.

  • sendit - AI-native social publishing with 41 tools for scheduling, analytics, campaigns, CRM, inbox, and workflow automation across 32 platforms. By @Shree-git. openclaw plugins install @senditapp/openclaw

Contributing

See CONTRIBUTING.md for guidelines on adding plugins to this list.

Related Resources

License

CC0

To the extent possible under law, the authors have waived all copyright and related rights to this work.

About

A curated list of plugins for OpenClaw, the open-source personal AI assistant

Resources

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors