Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

ryan-wechat-mpRyan 微信 mp

Agent Skill

ryan-wechat-mp 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,560

周安装

383

GitHub Stars

公开资料未说明

下载量

3,095
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ryan-wechat-mp(Ryan 微信 mp)
来源仓库:https://github.com/ryan32382/ryan-wechat-mp
安装命令:
openclaw skills install ryan-wechat-mp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ryan-wechat-mp

简介

通过微信MP API自动发布微信公众号文章,包括媒体上传、草稿管理和发布状态查询。

SKILL.md

WeChat MP Publisher

OpenClaw Skill for publishing articles to WeChat Official Account (微信公众号文章自动发布工具)

Description

This skill enables AI agents to publish articles to WeChat Official Accounts using the WeChat MP API. It supports:

  • AccessToken management with automatic caching and refresh
  • Media upload (images, thumbnails, videos)
  • Article draft creation and management
  • Publishing articles to followers
  • Querying publish status and drafts

Tools

wechat-mp-publish

Publish a WeChat Official Account article (发布微信公众号文章)

Parameters:

  • title (string, required): Article title (文章标题)
  • content (string, required): Article content in HTML format (正文内容,支持 HTML)
  • cover_media_id (string, required): Cover image media_id obtained from upload (封面图片素材 ID)
  • author (string, optional): Author name (作者名)
  • digest (string, optional): Article summary/abstract (文章摘要)
  • content_source_url (string, optional): Original source URL (原文链接)
  • publish (boolean, optional): Whether to publish immediately (default: true). Set to false to save as draft. (是否立即发布,false 则保存为草稿)

Returns:

{
  "success": true,
  "message": "文章已创建并提交发布",
  "data": {
    "media_id": "draft media id",
    "publish_id": "publish task id"
  }
}

Example:

tool: wechat-mp-publish
params:
  title: "我的第一篇文章"
  content: "<p>这是一篇测试文章</p>"
  cover_media_id: "MEDIA_ID_FROM_UPLOAD"
  author: "张三"
  publish: true

wechat-mp-upload-media

Upload media file to WeChat server (上传素材到微信服务器)

Parameters:

  • file_path (string, required): Local file path to upload (本地文件路径)
  • type (string, optional): Media type - image, thumb, voice, video (default: image) (素材类型)

Returns:

{
  "success": true,
  "message": "素材上传成功",
  "data": {
    "media_id": "uploaded media id",
    "type": "image",
    "created_at": 1234567890
  }
}

Example:

tool: wechat-mp-upload-media
params:
  file_path: "/path/to/image.jpg"
  type: "image"

wechat-mp-upload-cover

Upload cover image (shortcut for thumb type upload) (上传封面图片)

Parameters:

  • file_path (string, required): Local file path to cover image (封面图片路径)

Returns:

{
  "success": true,
  "message": "封面上传成功",
  "data": {
    "media_id": "cover media id"
  }
}

Example:

tool: wechat-mp-upload-cover
params:
  file_path: "/path/to/cover.jpg"

wechat-mp-query-drafts

Query draft list (查询草稿列表)

Parameters:

  • offset (number, optional): Pagination offset (default: 0) (分页偏移量)
  • count (number, optional): Items per page, max 20 (default: 10) (每页数量)

Returns:

{
  "success": true,
  "message": "获取草稿列表成功,共 5 条",
  "data": {
    "total_count": 5,
    "item_count": 5,
    "items": [...]
  }
}

wechat-mp-query-publish-status

Query publish status by publish_id (查询发布状态)

Parameters:

  • publish_id (string, required): Publish task ID returned from publish (发布任务 ID)

Returns:

{
  "success": true,
  "message": "发布状态: 成功",
  "data": {
    "publish_id": "PUBLISH_ID",
    "publish_status": 0,
    "status_text": "成功",
    "article_id": "ARTICLE_ID",
    "article_detail": {...}
  }
}

Status codes:

  • 0: Success (成功)
  • 1: Publishing (发布中)
  • 2: Original content review failed (原创审核失败)
  • 3: Failed (失败)

wechat-mp-delete-draft

Delete a draft by media_id (删除草稿)

Parameters:

  • media_id (string, required): Draft media_id to delete (草稿素材 ID)

Returns:

{
  "success": true,
  "message": "草稿删除成功"
}

Configuration

Create a configuration file at ~/.openclaw/config/wechat-mp.json:

{
  "app_id": "your-wechat-app-id",
  "app_secret": "your-wechat-app-secret",
  "default_author": "默认作者名",
  "access_token_cache_file": "~/.openclaw/.wechat_mp_token.json"
}

Or use environment variables:

export WECHAT_MP_APP_ID="your-app-id"
export WECHAT_MP_APP_SECRET="your-app-secret"
export WECHAT_MP_DEFAULT_AUTHOR="默认作者"
export WECHAT_MP_TOKEN_CACHE="~/.openclaw/.wechat_mp_token.json"

Prerequisites

  1. WeChat Official Account (Service Account/认证服务号) with API access
  2. IP whitelist configured in WeChat MP Admin Portal
  3. Node.js >= 18

Installation

cd /Users/zhizi/.openclaw/workspace/agents/dev-team/projects/active/wechat-mp-publisher
npm install
npm run build

Usage Example

Complete workflow

// 1. Upload cover image
const coverResult = await wechatMpUploadCover({
  file_path: "/path/to/cover.jpg"
});

// 2. Publish article
const publishResult = await wechatMpPublish({
  title: "我的文章标题",
  content: "<p>文章内容</p>",
  cover_media_id: coverResult.data.media_id,
  author: "作者名",
  publish: true
});

// 3. Check publish status
const status = await wechatMpQueryPublishStatus({
  publish_id: publishResult.data.publish_id
});

Project Structure

wechat-mp-publisher/
├── SKILL.md                    # This file
├── README.md                   # Project documentation
├── package.json                # Dependencies
├── tsconfig.json               # TypeScript config
├── src/
│   ├── index.ts               # Main entry & OpenClaw tools
│   ├── auth.ts                # AccessToken management
│   ├── media.ts               # Media upload
│   ├── article.ts             # Article management
│   └── types.ts               # TypeScript types
├── scripts/                    # CLI scripts (optional)
└── tests/                      # Test files

Error Handling

All tools return a standardized response:

{
  success: boolean;    // Operation success status
  message: string;     // Human-readable message
  data?: any;          // Response data on success
}

On failure, success will be false and message contains the error description.

API Reference

Based on WeChat Official Account API:

  • https://developers.weixin.qq.com/doc/offiaccount/en/Getting_Started/Overview.html

License

MIT

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.28%
按下载量换算2,794

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills