{"id":121306,"url":"https://github.com/thisisjeron/awesome-openclaw-plugins","name":"awesome-openclaw-plugins","description":"A curated list of plugins for OpenClaw, the open-source personal AI assistant","projects_count":45,"last_synced_at":"2026-07-16T13:00:24.136Z","repository":{"id":336374410,"uuid":"1149350397","full_name":"ThisIsJeron/awesome-openclaw-plugins","owner":"ThisIsJeron","description":"A curated list of plugins for OpenClaw, the open-source personal AI assistant","archived":false,"fork":false,"pushed_at":"2026-05-10T18:12:15.000Z","size":82,"stargazers_count":13,"open_issues_count":2,"forks_count":12,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-06T04:05:11.154Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ThisIsJeron.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-04T02:31:18.000Z","updated_at":"2026-05-29T08:22:42.000Z","dependencies_parsed_at":"2026-05-08T21:00:35.745Z","dependency_job_id":null,"html_url":"https://github.com/ThisIsJeron/awesome-openclaw-plugins","commit_stats":null,"previous_names":["thisisjeron/awesome-openclaw-plugins"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ThisIsJeron/awesome-openclaw-plugins","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThisIsJeron%2Fawesome-openclaw-plugins","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThisIsJeron%2Fawesome-openclaw-plugins/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThisIsJeron%2Fawesome-openclaw-plugins/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThisIsJeron%2Fawesome-openclaw-plugins/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ThisIsJeron","download_url":"https://codeload.github.com/ThisIsJeron/awesome-openclaw-plugins/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThisIsJeron%2Fawesome-openclaw-plugins/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34876271,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-28T02:00:05.809Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"created_at":"2026-02-24T09:08:04.251Z","updated_at":"2026-07-16T13:00:24.136Z","primary_language":null,"list_of_lists":false,"displayable":true,"categories":["License","Skills vs Plugins: What's the Difference?","Related Resources"],"sub_categories":["Bundled Plugins","The Case for Plugins"],"readme":"# Awesome OpenClaw Plugins [![Awesome](https://awesome.re/badge.svg)](https://awesome.re)\n\n\u003e A curated list of plugins for [OpenClaw](https://github.com/openclaw/openclaw), the open-source personal AI assistant.\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://docs.openclaw.ai/plugin\"\u003ePlugin Docs\u003c/a\u003e •\n  \u003ca href=\"https://github.com/openclaw/openclaw\"\u003eGitHub\u003c/a\u003e •\n  \u003ca href=\"https://discord.com/invite/clawd\"\u003eDiscord\u003c/a\u003e\n\u003c/p\u003e\n\n## Contents\n\n- [Skills vs Plugins: What's the Difference?](#skills-vs-plugins-whats-the-difference)\n- [Official Plugins](#official-plugins)\n- [Channel Plugins](#channel-plugins)\n- [Smart Home \u0026 IoT](#smart-home--iot)\n- [Automotive](#automotive)\n- [Utility Plugins](#utility-plugins)\n- [Memory \u0026 AI](#memory--ai)\n- [Security \u0026 Governance](#security--governance)\n- [Multi-Agent \u0026 Coordination](#multi-agent--coordination)\n- [Observability \u0026 DevOps](#observability--devops)\n- [Health \u0026 Wellness](#health--wellness)\n- [Meta \u0026 Self-Improvement](#meta--self-improvement)\n- [Social Media \u0026 Content](#social-media--content)\n- [Contributing](#contributing)\n\n## Skills vs Plugins: What's the Difference?\n\nOpenClaw has two extension mechanisms: **Skills** and **Plugins**. Understanding when to use each is key to building effective extensions.\n\n### Skills\n\nSkills are **prompt-based instructions** that teach the agent how to use external tools or follow specific workflows.\n\n```\nskills/\n└── weather/\n    └── SKILL.md    # Instructions for the agent\n```\n\n**Characteristics:**\n- 📝 Markdown files with instructions\n- 🧠 Loaded into the agent's context at runtime\n- 🔧 Rely on existing tools (exec, browser, etc.)\n- 🚀 Easy to create — just write a SKILL.md\n- ⚡ No code execution, just prompt engineering\n\n**Best for:**\n- Teaching the agent to use CLI tools\n- Defining workflows and best practices\n- API integration via curl/scripts\n- Quick, low-code extensions\n\n### Plugins\n\nPlugins are **TypeScript modules** that run in-process with the OpenClaw gateway, extending its core capabilities.\n\n```\nextensions/\n└── voice-call/\n    ├── index.ts              # Plugin code\n    ├── openclaw.plugin.json  # Manifest\n    └── package.json\n```\n\n**Characteristics:**\n- 💻 Full TypeScript/JavaScript code\n- ⚙️ Run in the gateway process\n- 🔌 Can register new tools, channels, CLI commands, and RPC methods\n- 🔐 Access to gateway internals and APIs\n- 📦 Distributed via npm or git\n\n**Best for:**\n- Adding new messaging channels (Slack, Teams, etc.)\n- Custom agent tools with complex logic\n- Background services and scheduled tasks\n- Gateway UI enhancements\n- Anything requiring persistent state or network connections\n\n### The Case for Plugins\n\nWhile skills are great for quick integrations, **plugins are fundamentally more powerful**:\n\n| Capability | Skills | Plugins |\n|------------|--------|---------|\n| Add new messaging channels | ❌ | ✅ |\n| Register custom agent tools | ❌ | ✅ |\n| Add CLI commands | ❌ | ✅ |\n| Run background services | ❌ | ✅ |\n| Modify gateway behavior | ❌ | ✅ |\n| Persistent state management | ❌ | ✅ |\n| OAuth flows \u0026 auth handlers | ❌ | ✅ |\n| WebSocket connections | ❌ | ✅ |\n| HTTP endpoint handlers | ❌ | ✅ |\n| Ship bundled skills | ❌ | ✅ |\n\n**Bottom line:** Skills tell the agent *how* to do things. Plugins give the agent *new abilities* it couldn't have otherwise.\n\n\u003cdetails open\u003e\n\u003csummary\u003e\u003ch2 style=\"display:inline\"\u003eOfficial Plugins\u003c/h2\u003e\u003c/summary\u003e\n\nPlugins maintained by the OpenClaw team, available under the `@openclaw/*` scope.\n\n- [voice-call](https://docs.openclaw.ai/plugins/voice-call) - Voice calling via Twilio (or log fallback for dev). `openclaw plugins install @openclaw/voice-call`\n- [matrix](https://docs.openclaw.ai/channels/matrix) - Matrix chat protocol channel. `openclaw plugins install @openclaw/matrix`\n- [nostr](https://docs.openclaw.ai/channels/nostr) - Nostr decentralized protocol channel. `openclaw plugins install @openclaw/nostr`\n- [zalo](https://docs.openclaw.ai/channels/zalo) - Zalo messaging (Vietnam). `openclaw plugins install @openclaw/zalo`\n- [zalouser](https://docs.openclaw.ai/plugins/zalouser) - Zalo Personal account integration. `openclaw plugins install @openclaw/zalouser`\n- [msteams](https://docs.openclaw.ai/channels/msteams) - Microsoft Teams channel. `openclaw plugins install @openclaw/msteams`\n\n### Bundled Plugins\n\nThese ship with OpenClaw and can be enabled via config:\n\n- **memory-core** — Default memory search plugin\n- **memory-lancedb** — LanceDB-based long-term memory with auto-recall\n- **google-antigravity-auth** — Google OAuth provider\n- **google-gemini-cli-auth** — Gemini CLI OAuth provider\n- **qwen-portal-auth** — Qwen OAuth provider\n- **copilot-proxy** — VS Code Copilot proxy bridge\n\n\u003c/details\u003e\n\n\u003cdetails open\u003e\n\u003csummary\u003e\u003ch2 style=\"display:inline\"\u003eChannel Plugins\u003c/h2\u003e\u003c/summary\u003e\n\nAdd new messaging platforms to OpenClaw.\n\n- [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`\n- [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`\n- [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`\n- [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`\n- [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`\n- [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`\n- [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`\n- [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`\n- [eclaw](https://github.com/HankHuang0516/openclaw-channel-eclaw) - E-Claw AI live wallpaper chat — connect your bot to animated Android wallpaper characters (lobsters, pigs). By [@HankHuang0516](https://github.com/HankHuang0516). `openclaw plugins install @eclaw/openclaw-channel`\n\n\u003c/details\u003e\n\n\u003cdetails open\u003e\n\u003csummary\u003e\u003ch2 style=\"display:inline\"\u003eSmart Home \u0026 IoT\u003c/h2\u003e\u003c/summary\u003e\n\nConnect your agent to smart home platforms and IoT devices.\n\n- [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**\n- [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`\n\n\u003c/details\u003e\n\n\u003cdetails open\u003e\n\u003csummary\u003e\u003ch2 style=\"display:inline\"\u003eAutomotive\u003c/h2\u003e\u003c/summary\u003e\n\nControl and monitor vehicles from your agent.\n\n- [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`\n\n\u003c/details\u003e\n\n\u003cdetails open\u003e\n\u003csummary\u003e\u003ch2 style=\"display:inline\"\u003eUtility Plugins\u003c/h2\u003e\u003c/summary\u003e\n\nEnhance the gateway experience with quality-of-life improvements.\n\n- [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`\n- [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`\n- [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`\n- [claw-turbo](https://github.com/jacobye2017-afk/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](https://github.com/jacobye2017-afk). `git clone https://github.com/jacobye2017-afk/claw-turbo.git \u0026\u0026 cd claw-turbo \u0026\u0026 pip install -e . \u0026\u0026 claw-turbo install`\n- [discourse-openclaw](https://github.com/pranciskus/discourse-openclaw) - Discourse forum integration — search, read, create topics/posts, find unanswered questions. By [@pranciskus](https://github.com/pranciskus). `openclaw plugins install openclaw-discourse`\n- [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`\n- [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`\n- [clawcollect](https://github.com/ruan11223344/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](https://github.com/ruan11223344). `openclaw plugins install @clawcollect/clawcollect`\n\n\u003c/details\u003e\n\n\u003cdetails open\u003e\n\u003csummary\u003e\u003ch2 style=\"display:inline\"\u003eMemory \u0026 AI\u003c/h2\u003e\u003c/summary\u003e\n\nAdvanced memory backends and AI enhancements.\n\n- [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`\n- [memos-cloud](https://github.com/MemTensor/MemOS-Cloud-OpenClaw-Plugin) - MemOS cloud-based memory backend for cross-device persistence. By [@MemTensor](https://github.com/MemTensor). `openclaw plugins install https://github.com/MemTensor/MemOS-Cloud-OpenClaw-Plugin.git`\n\n\u003c/details\u003e\n\n\u003cdetails open\u003e\n\u003csummary\u003e\u003ch2 style=\"display:inline\"\u003eSecurity \u0026 Governance\u003c/h2\u003e\u003c/summary\u003e\n\nAdd guardrails and governance to your agent.\n\n- [guardspine](https://github.com/DNYoussef/guardspine-openclaw) - Deny-by-default tool gating with L0-L4 risk tiers, 3-model council verification, and evidence packs. By [@DNYoussef](https://github.com/DNYoussef). `openclaw plugins install https://github.com/DNYoussef/guardspine-openclaw.git`\n- [air-trust](https://github.com/airblackbox/openclaw-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](https://github.com/airblackbox). `npm install openclaw-air-trust`\n- [codex-watchdog](https://github.com/ThisIsJeron/openclaw-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](https://github.com/ThisIsJeron). `openclaw plugins install https://github.com/ThisIsJeron/openclaw-codex-watchdog.git`\n\n\u003c/details\u003e\n\n\u003cdetails open\u003e\n\u003csummary\u003e\u003ch2 style=\"display:inline\"\u003eMulti-Agent \u0026 Coordination\u003c/h2\u003e\u003c/summary\u003e\n\nRun distributed agents and coordinate across instances.\n\n- [ansible](https://github.com/likesjx/openclaw-plugin-ansible) - Distributed coordination layer — one agent, multiple bodies across machines. By [@likesjx](https://github.com/likesjx). `openclaw plugins install https://github.com/likesjx/openclaw-plugin-ansible.git`\n\n\u003c/details\u003e\n\n\u003cdetails open\u003e\n\u003csummary\u003e\u003ch2 style=\"display:inline\"\u003eObservability \u0026 DevOps\u003c/h2\u003e\u003c/summary\u003e\n\nMonitor, debug, and manage your OpenClaw instances.\n\n- [observatory](https://github.com/ThisIsJeron/openclaw-observatory) - Self-hosted observability dashboard — monitor sessions, context windows, costs, and failures across multiple gateways. By [@ThisIsJeron](https://github.com/ThisIsJeron). `openclaw plugins install @thisisjeron/openclaw-observatory`\n- [Manifest](https://github.com/mnfst/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](https://manifest.build). By [@mnfst](https://github.com/mnfst). `openclaw plugins install manifest`\n- [opik-openclaw](https://github.com/comet-ml/opik-openclaw) - OpenClaw plugin that exports agent traces to Opik with LLM/tool/sub-agent spans plus usage and cost metadata. By [@comet-ml](https://github.com/comet-ml). `openclaw plugins install @opik/opik-openclaw`\n\n\u003c/details\u003e\n\n\u003cdetails open\u003e\n\u003csummary\u003e\u003ch2 style=\"display:inline\"\u003eHealth \u0026 Wellness\u003c/h2\u003e\u003c/summary\u003e\n\nIntegrate health and fitness data into your agent conversations.\n\n- [ouraclaw](https://github.com/rickybloomfield/OuraClaw) - Oura Ring integration — sleep, readiness, activity, stress data with scheduled summaries. By [@rickybloomfield](https://github.com/rickybloomfield). `openclaw plugins install @rickybloomfield/ouraclaw`\n\n\u003c/details\u003e\n\n\u003cdetails open\u003e\n\u003csummary\u003e\u003ch2 style=\"display:inline\"\u003eMeta \u0026 Self-Improvement\u003c/h2\u003e\u003c/summary\u003e\n\nPlugins that enhance OpenClaw's ability to learn and grow.\n\n- [foundry](https://github.com/lekt9/openclaw-foundry) - Self-writing meta-extension — observes workflows, learns patterns, writes new extensions and skills. By [@lekt9](https://github.com/lekt9). `openclaw plugins install @getfoundry/foundry-openclaw`\n\n\u003c/details\u003e\n\n\u003cdetails open\u003e\n\u003csummary\u003e\u003ch2 style=\"display:inline\"\u003eSocial Media \u0026 Content\u003c/h2\u003e\u003c/summary\u003e\n\nPlugins for social publishing, scheduling, and audience engagement.\n\n- [sendit](https://www.npmjs.com/package/@senditapp/openclaw) - AI-native social publishing with 41 tools for scheduling, analytics, campaigns, CRM, inbox, and workflow automation across 32 platforms. By [@Shree-git](https://github.com/Shree-git). `openclaw plugins install @senditapp/openclaw`\n- [tweetclaw](https://github.com/Xquik-dev/tweetclaw) - Post tweets, reply, like, retweet, follow, DM \u0026 more from your chat. 40+ X/Twitter endpoints via Xquik. By [@Xquik-dev](https://github.com/Xquik-dev). `openclaw plugins install @xquik/tweetclaw`\n- [clawsocial-plugin](https://github.com/mrpeter2025/clawsocial-plugin) - Social discovery network — helps users find and connect with people who share their interests through their AI agent. Semantic matching, real-time messaging, profile cards, web inbox. By [@mrpeter2025](https://github.com/mrpeter2025). `openclaw plugins install clawsocial-plugin@latest`\n\n\u003c/details\u003e\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines on adding plugins to this list.\n\n## Related Resources\n\n- [Awesome OpenClaw Skills](https://github.com/VoltAgent/awesome-openclaw-skills) — Curated list of 1700+ OpenClaw skills\n- [ClawHub](https://clawhub.com) — Official skill registry\n- [Plugin Documentation](https://docs.openclaw.ai/plugin) — Official plugin authoring guide\n- [Plugin Agent Tools](https://docs.openclaw.ai/plugins/agent-tools) — How to add agent tools in plugins\n\n## License\n\n[![CC0](https://licensebuttons.net/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/)\n\nTo the extent possible under law, the authors have waived all copyright and related rights to this work.\n","projects_url":"https://awesome.ecosyste.ms/api/v1/lists/thisisjeron%2Fawesome-openclaw-plugins/projects"}