codecamp

OpenClaw 社区插件指南

本页面用于追踪 OpenClaw 的高质量社区维护插件。 我们接受符合质量标准的 PR,将社区插件添加到此处。

列表收录要求

  • 插件包已发布到 npmjs(可通过 openclaw plugins install <npm-spec> 安装)
  • 源代码托管在 GitHub(公开仓库)
  • 仓库包含安装 / 使用文档,以及问题追踪器
  • 插件有明确的维护标识(活跃的维护者、近期更新,或是响应及时的问题处理)

提交方式

打开一个 PR,将你的插件添加到本页面,需要包含:

  • 插件名称
  • npm 包名称
  • GitHub 仓库地址
  • 一行描述
  • 安装命令

审核标准

我们优先选择实用、有文档、可安全运行的插件。 低质量的包装、所有权不明确,或是未维护的包可能会被拒绝。

候选条目格式

添加条目时请使用此格式:

  • 插件名称 — 简短描述 npm: @scope/package repo: https://github.com/org/repo install: openclaw plugins install @scope/package

已收录插件

  • 微信(WeChat) — 通过 WeChatPadPro(iPad 协议)将 OpenClaw 连接到微信个人账号,支持文本、图片和文件交换,以及关键词触发的对话。 npm: @icesword760/openclaw-wechat repo: https://github.com/icesword0760/openclaw-wechat install: openclaw plugins install @icesword760/openclaw-wechat
OpenClaw 插件架构
OpenClaw 插件捆绑包指南:兼容 Codex/Claude/Cursor 的第三方包支持,功能映射与安全模型
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

OpenClaw 消息渠道

OpenClaw 工具

OpenClaw 模型

OpenClaw 平台

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }