← 返回 Skills 市场
403914291

微信公众号发布技能

作者 403914291 · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ⚠ suspicious
90
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install ly-wechat-publisher
功能描述
自动收集15条AI新闻,生成HTML内容,并发布到微信公众号草稿箱,支持多模板和自定义发布时间。
使用说明 (SKILL.md)

微信公众号发布技能

技能名称: wechat-publisher
版本: V1.1.0
描述: 自动发布 AI 新闻到微信公众号草稿箱
作者: 小蛋蛋


📋 功能特性

  • ✅ 自动收集 15 条 AI 新闻
  • ✅ 自动生成 HTML 格式内容
  • ✅ 自动发布到公众号草稿箱
  • ✅ 支持 5 套专业模板
  • ✅ 50 次免费试用 + 8.8 元永久买断
  • ✅ 支持自定义发布时间

🔧 配置项

配置项 说明 默认值 是否必填
app_id 公众号 AppID - ✅ 是
app_secret 公众号 AppSecret - ✅ 是
schedule 发布时间 06:00 ❌ 否
template 发布模板 v5-simple ❌ 否
news_count 新闻条数 15 ❌ 否
timezone 时区 Asia/Shanghai ❌ 否

📖 使用说明

安装技能

openclaw skill install wechat-publisher

配置技能

openclaw skill config wechat-publisher

设置发布时间

openclaw schedule wechat-publisher 07:00

查看状态

openclaw skill status wechat-publisher

💰 授权说明

  • 试用版: 50 次免费使用(约 1 个月)
  • 专业版: 8.8 元永久买断
  • 购买命令: openclaw skill buy wechat-publisher

📊 试用次数说明

50 次免费试用包含:

  • ✅ 测试所有 5 套模板
  • ✅ 配置调试和学习成本
  • ✅ 约 1 个月的实际使用
  • ✅ 充分体验自动发布功能

试用次数用完后:

  • 运行 openclaw skill buy wechat-publisher 购买专业版
  • 8.8 元永久买断,无限次使用

📞 支付联系方式

支付流程:

  1. 运行购买命令后,系统生成订单
  2. 用户扫码支付(微信/支付宝)
  3. 支付成功后,通过以下方式联系管理员获取激活码:
联系方式 说明
微信 添加管理员微信:lylovejava(备注:技能购买)
公众号 关注"小蛋蛋助手"公众号,发送订单号
邮箱 [email protected](24 小时内回复)
GitHub https://github.com/403914291 提交 Issue

自动激活(推荐):

  • 支付成功后,系统自动发送激活码到用户邮箱
  • 或在购买界面直接显示激活码

📁 文件结构

wechat-publisher-skill/
├── SKILL.md              # 技能定义文件
├── publish.py            # 核心发布脚本
├── scripts/
│   ├── install.sh        # 安装脚本
│   └── activate.py       # 激活脚本
├── templates/
│   ├── v5-simple.html    # V5 简洁模板
│   └── ...               # 其他模板
├── config/
│   └── default.json      # 默认配置
└── docs/
    └── USER_GUIDE.md     # 用户手册

创建日期:2026-03-26
最后更新:2026-03-26

安全使用建议
This skill appears to implement a legitimate WeChat publishing workflow, but there are multiple red flags you should resolve before installing or entering credentials: - Do not provide your AppSecret or AppID until you verify the source. The package metadata does not declare required credentials, yet the code expects them (and reads WECHAT_APP_SECRET if set). - The documentation references additional scripts (install.sh, activate.py) that are not present in the package. Ask the maintainer for the complete source or inspect any missing files before use — missing activation/installation scripts could hide network calls. - Inspect publish.py fully (including the truncated/remaining code) or run it in a sandbox to see whether it contacts any servers other than api.weixin.qq.com (activation/licensing could contact external hosts). - Store AppSecret securely (prefer config file with strict permissions or a secrets manager). Avoid pasting secrets into third-party GUIs or unverified installers. - If you intend to buy/activate, verify payment/activation flow independently (the SKILL.md lists contacts and an external GitHub account). Do not authorize payments or send credentials until you confirm the provider's identity and hosting of activation logic. If you want, I can: - Inspect the rest of publish.py (the file was truncated) for any network calls or telemetry code if you provide the remaining lines, - Suggest a safe test plan (run in an isolated VM, monitor network traffic) or show how to redact AppSecret when sharing diagnostics.
功能分析
Type: OpenClaw Skill Name: ly-wechat-publisher Version: 1.1.0 The skill bundle is a legitimate tool designed to automate the publication of AI news to WeChat Official Accounts. The core logic in `scripts/publish.py` handles authentication and content drafting via official WeChat API endpoints (api.weixin.qq.com) and includes a transparent local licensing system for a trial-to-paid model. While the script handles sensitive credentials like `app_secret`, there is no evidence of data exfiltration, unauthorized network calls, or malicious instructions in the documentation.
能力评估
Purpose & Capability
The skill's purpose (collect AI news, build HTML, publish to WeChat draft) is consistent with the included publish.py which calls the WeChat API. However the registry metadata declares no required credentials or env vars while the skill clearly needs and documents AppID/AppSecret — metadata and the package are not aligned.
Instruction Scope
SKILL.md and docs reference auxiliary scripts (scripts/install.sh, scripts/activate.py) and a different file layout than what is present in the package. The runtime script (publish.py) reads AppSecret from either a configuration file or the WECHAT_APP_SECRET environment variable (the env var is used even though the registry metadata lists none). The skill writes local caches, logs, token cache, license and usage files under its memory directory. No evidence in the included code of exfiltration to unexpected external endpoints beyond api.weixin.qq.com, but the missing referenced scripts mean behavior could differ if those files are expected at runtime.
Install Mechanism
This is an instruction-only skill/package with an included Python script; there is no remote download or installer specified in the registry. The publish.py depends on the requests package and will exit if it's missing (asks user to pip install requests). No high-risk install URLs or archive extraction are present.
Credentials
The skill legitimately needs WeChat credentials (AppID/AppSecret) to function. However the registry metadata does not declare these requirements (no required env vars or primary credential), while the code checks an environment variable WECHAT_APP_SECRET and the docs instruct storing AppID/AppSecret in a config file under the user's skills directory. The undeclared use of an environment variable and omission from metadata is a mismatch that reduces transparency and could lead to accidental credential exposure.
Persistence & Privilege
The skill does not request persistent platform-wide privileges (always: false). It writes its own log, token cache, usage and license files inside its script_dir/memory directory — expected for a publishing tool. It does not appear to modify other skills or system-wide configuration based on the provided files.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ly-wechat-publisher
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ly-wechat-publisher 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
试用次数增加到 50 次,覆盖用户学习成本和模板测试
元数据
Slug ly-wechat-publisher
版本 1.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

微信公众号发布技能 是什么?

自动收集15条AI新闻,生成HTML内容,并发布到微信公众号草稿箱,支持多模板和自定义发布时间。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 90 次。

如何安装 微信公众号发布技能?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install ly-wechat-publisher」即可一键安装,无需额外配置。

微信公众号发布技能 是免费的吗?

是的,微信公众号发布技能 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

微信公众号发布技能 支持哪些平台?

微信公众号发布技能 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 微信公众号发布技能?

由 403914291(@403914291)开发并维护,当前版本 v1.1.0。

💬 留言讨论