← 返回 Skills 市场
jisuapi

Wechat MP Article Stats Comments Suite - 微信公众号管理套件

作者 极速数据 · GitHub ↗ · v1.0.11 · MIT-0
cross-platform ✓ 安全检测通过
469
总下载
7
收藏
1
当前安装
12
版本数
在 OpenClaw 中安装
/install wechat-mp
功能描述
公众号运营:发文到草稿、样式与封面、评论与用户管理、数据统计等。当用户说:把这篇 Markdown 发到公众号草稿、看下昨天阅读量统计,或类似公众号后台操作时,使用本技能。
安全使用建议
This package appears coherent for managing WeChat public accounts, but take standard precautions: only set AppID/AppSecret (and optional WECHAT_MP_ACCOUNTS) in a trusted/isolated environment; avoid placing WECHAT_MP_APP_SECRET or WECHAT_MP_COOKIE in logs or public repos; review the scripts if you want to confirm behavior (they use only api.weixin.qq.com and fetch user-supplied URLs); install Python dependencies in a virtualenv; and if you must provide WECHAT_MP_COOKIE (sensitive), store it securely and only when needed.
功能分析
Type: OpenClaw Skill Name: wechat-mp Version: 1.0.11 The bundle is a legitimate toolset for managing WeChat Official Accounts, providing scripts for article publishing, comment moderation, user management, and statistics. It includes proactive security measures, such as path normalization in `publish.py`, `users.py`, and `fetch_article.py`, to prevent directory traversal and unauthorized file access. While the skill requires sensitive credentials (AppID, AppSecret, and Cookies), these are handled as environment variables and used exclusively to communicate with the official WeChat API (api.weixin.qq.com) for its stated operational purposes.
能力评估
Purpose & Capability
Name/description match the code and SKILL.md: scripts call WeChat API endpoints for drafts, publish, comments, users, and stats. Requested env vars (AppID/AppSecret, optional multi-account JSON and cookie) are appropriate and expected for this purpose.
Instruction Scope
SKILL.md and individual scripts define explicit CLI commands and parameters; runtime instructions limit local file reads to current working directory and subdirectories and only fetch external resources when URLs are provided. There are no instructions asking the agent to read unrelated system files or exfiltrate data beyond WeChat/API requests and optionally fetching user-specified URLs.
Install Mechanism
No installation spec is included (instruction-only), and the code is pure Python relying on common libraries (requests, markdown, pillow). Dependencies are declared in SKILL.md and no remote executable downloads or archive extraction are used.
Credentials
Required environment variables (WECHAT_MP_APP_ID, WECHAT_MP_APP_SECRET) are proportional to the stated functionality. Optional variables (WECHAT_MP_ACCOUNTS, WECHAT_MP_COOKIE, WECHAT_MP_DEFAULT_AUTHOR) are documented and justified. No unrelated secrets or broad system credentials are requested.
Persistence & Privilege
Skill does not request 'always: true' or other elevated persistence. It does not modify other skills or system-wide configs. Normal autonomous invocation is allowed but not excessive given the functionality.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install wechat-mp
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /wechat-mp 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.11
- Updated skill name and description for improved clarity and discoverability. - No functional or code changes; documentation updated only. - Existing feature set and usage remain the same.
v1.0.10
No file changes detected. No functional or interface changes in this version. - Documentation updated to reflect new directory structure (e.g., skills/wechat-mp/). - Added usage guidance for integrating with jisu-wechat-article as a recommended workflow. - No changes made to code, features, parameters, or requirements.
v1.0.9
- 优化封面图使用逻辑,优先采用用户指定的封面(cover_path/cover_base64/cover_url),如无则自动尝试页面 og:image,不再默认生成本地封面图。 - 完善文档描述,明确封面参数优先级和逻辑,并删除有关自动生成本地封面图的相关说明。 - 细化参数表:标注 cover_path、cover_base64、cover_url 等为“优先”,并补充 cover_out 用法说明。 - 其余功能保持一致。
v1.0.8
- Added explicit security notes for sensitive environment variables (e.g., WECHAT_MP_APP_SECRET, WECHAT_MP_ACCOUNTS, WECHAT_MP_COOKIE) in the documentation. - Clarified the handling and recommended management of these sensitive credentials for safer usage. - No functional or interface changes; this update enhances documentation for improved security awareness.
v1.0.7
No changes detected in this version. - Version 1.0.7 is functionally identical to the previous release; no file or documentation updates were made. - No action needed for existing users.
v1.0.6
No changes detected in this version. - No file changes were found between versions 1.0.5 and 1.0.6. - Functionality, usage, and documentation remain unchanged. - Safe to upgrade; expect identical behavior to previous version.
v1.0.5
- Added user management support via new users.py script. - Now supports fetching follower openid lists, user basic info, and blacklist management (batch blacklist/unblacklist). - Documentation updated to include the new 用户管理(users.py) capabilities and usage.
v1.0.4
- 草稿管理(drafts.py)模块新增「将草稿提交发布」功能,支持 freepublish_submit 接口。 - 其余功能和用法保持不变。
v1.0.3
- Renamed the skill from "wechatmp-suite" to "wechat-mp-suite" and updated the description for clarity. - Minor wording, format, and consistency updates throughout documentation. - No code or functional changes. This is a documentation cleanup and naming update only.
v1.0.2
- 新增对“今日头条”正文元素的自动提取支持,现在 auto_content_selector 可适配今日头条(使用 article 选择器)。 - 文档对应补充:常见站点 auto_content_selector 说明中新增今日头条案例和用法。 - 其余功能无变更。
v1.0.1
- 优化草稿功能,支持从 mp.weixin.qq.com 链接自动优先提取 id="js_content" 正文区域,减少内容体积并避免草稿超限。 - 草稿接口新增 content_max_bytes 参数,可自定义内容字节数上限,超限时直接阻止发布。 - 文档细节优化,补充对公众号正文提取及内容超限处理的说明。
v1.0.0
WeChatMP Suite 1.0.0 - Initial release of the WeChat Official Account toolkit, supporting publishing Markdown/HTML to drafts, with style and cover processing. - Includes modules for draft management, comment management, and data statistics. - Supports syncing to multiple official accounts via environment variable configuration. - CLI-based scripts for publishing, managing drafts, handling comments, and accessing data cube stats. - Detailed documentation added for usage, parameters, and example commands. - Safety features: only allows reading local files in the current working directory and below.
元数据
Slug wechat-mp
版本 1.0.11
许可证 MIT-0
累计安装 2
当前安装数 1
历史版本数 12
常见问题

Wechat MP Article Stats Comments Suite - 微信公众号管理套件 是什么?

公众号运营:发文到草稿、样式与封面、评论与用户管理、数据统计等。当用户说:把这篇 Markdown 发到公众号草稿、看下昨天阅读量统计,或类似公众号后台操作时,使用本技能。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 469 次。

如何安装 Wechat MP Article Stats Comments Suite - 微信公众号管理套件?

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

Wechat MP Article Stats Comments Suite - 微信公众号管理套件 是免费的吗?

是的,Wechat MP Article Stats Comments Suite - 微信公众号管理套件 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Wechat MP Article Stats Comments Suite - 微信公众号管理套件 支持哪些平台?

Wechat MP Article Stats Comments Suite - 微信公众号管理套件 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Wechat MP Article Stats Comments Suite - 微信公众号管理套件?

由 极速数据(@jisuapi)开发并维护,当前版本 v1.0.11。

💬 留言讨论