Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

wechat-to-xiaohongshu微信小红书

Agent Skill

wechat-to-xiaohongshu 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,914

周安装

409

GitHub Stars

公开资料未说明

下载量

3,239
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install wechat-to-xiaohongshu

简介

wechat-to-xiaohongshu 自动迁移微信公众号内容至小红书平台,适配移动端阅读。

  • 适用于 OpenClaw 中跨平台分发营销内容的场景。
  • 保留原文结构并优化排版,支持图片和链接转换。
  • 安装命令为 openclaw skills install wechat-to-xiaohongshu,需绑定小红书 API。
  • 注意平台内容规范差异,避免因格式问题被限流。

SKILL.md

name
wechat-to-xiaohongshu
description
Automatically migrate WeChat Official Account articles to Xiaohongshu (Little Red Book). Use when the user wants to (1) cross-post published WeChat articles to Xiaohongshu, (2) sync content between WeChat and Xiaohongshu platforms, (3) automate daily article distribution workflow.
tags
["content-distribution", "cross-platform", "automation", "weixin", "xiaohongshu"]
version
1.0.0
author
老洪

WeChat to Xiaohongshu Content Migration

Automates cross-posting of WeChat Official Account articles to Xiaohongshu (Little Red Book) — the leading Chinese content platform.

This skill handles the entire workflow: fetching latest articles from WeChat, importing them to Xiaohongshu with auto-formatting, adding relevant hashtags, and publishing — all without manual intervention on either platform.

Quick Start

"把今天的微信文章搬到小红书"
或
"用 wechat-to-xiaohongshu 发布最新文章"

Result: Article imported, formatted, tagged, and published in ~50 seconds.

Before You Start

See full requirements: Read REQUIREMENTS.md for hardware, software, and account setup.

Quick checklist:

  • ✅ WeChat OA account with published articles
  • ✅ Xiaohongshu creator account with publish permission
  • ✅ Both platforms logged in (browser tabs open)
  • ✅ OpenClaw Browser Relay extension installed and ON on both tabs

Using This Skill

→ See USAGE.md for:

  • How to invoke the skill in conversation
  • Common workflow scenarios
  • Customization options
  • Tips for better results

Troubleshooting

→ See TROUBLESHOOTING.md for:

  • Common error messages and fixes
  • Network/connection issues
  • Account/permission problems
  • Browser relay troubleshooting

Workflow

1. Prepare Browser Tabs

Ensure both platforms are open and the OpenClaw Browser Relay extension is attached (ON status):

  • WeChat Official Account backend: https://mp.weixin.qq.com
  • Xiaohongshu Creator Platform: https://creator.xiaohongshu.com/publish/publish?from=menu&target=article

Check tabs:

browser(action="tabs", profile="chrome")

2. Find the Latest Article

Navigate to WeChat backend and identify the most recent published article:

browser(action="snapshot", profile="chrome", targetId="<wechat-tab-id>")

Look for the "近期发表" (Recent Posts) section. The latest article will be at the top with today's timestamp.

3. Get Article URL

The article URL is in the link element. Format: https://mp.weixin.qq.com/s/<article-id>

Extract the URL from the snapshot (check the link href in recent posts).

4. Import to Xiaohongshu

Switch to Xiaohongshu tab and use the "导入链接" (Import Link) feature:

a. Click "导入链接" button:

browser(action="act", profile="chrome", targetId="<xiaohongshu-tab-id>", 
        request={"kind": "click", "ref": "<import-button-ref>"})

b. Paste the WeChat article URL:

browser(action="act", profile="chrome", targetId="<xiaohongshu-tab-id>",
        request={"kind": "type", "ref": "<input-field-ref>", "text": "<article-url>"})

c. Click "一键排版" (Auto Format):

browser(action="act", profile="chrome", targetId="<xiaohongshu-tab-id>",
        request={"kind": "click", "ref": "<format-button-ref>"})

Wait 30 seconds for import to complete.

5. Add Topics and Publish

a. Take snapshot to find the description field:

browser(action="snapshot", profile="chrome", targetId="<xiaohongshu-tab-id>")

b. Add relevant hashtags to description:

browser(action="act", profile="chrome", targetId="<xiaohongshu-tab-id>",
        request={"kind": "type", "ref": "<description-ref>", 
                 "text": "#小龙虾 #OpenClaw #AI工具 #自动化办公 #效率工具 #人工智能"})

Customize hashtags based on article content.

c. Click "下一步" (Next) if needed to proceed to publish settings.

d. Click "发布" (Publish):

browser(action="act", profile="chrome", targetId="<xiaohongshu-tab-id>",
        request={"kind": "click", "ref": "<publish-button-ref>"})

Error Handling

Extension disconnected: If you get "tab not found" error:

  • Ask user to re-click the OpenClaw extension icon on the relevant tab
  • Wait for "ON" badge to appear
  • Retry the operation

Import failed: If "一键排版" times out or fails:

  • Verify the WeChat article URL is publicly accessible
  • Check if article contains unsupported media types
  • Try manual copy-paste as fallback

Publish button disabled: Usually means:

  • Content hasn't fully loaded yet (wait longer)
  • Required fields missing (check title/description)
  • Image processing still in progress

Customization

Adjust hashtags based on article topic. Common categories:

  • AI/Tech: #人工智能 #AI工具 #科技 #效率工具
  • Programming: #程序员 #编程 #开发者工具
  • Business: #职场 #效率 #自动化办公
  • Tutorial: #教程 #干货分享 #实用技巧

Notes

  • Import preserves formatting, images, and text structure
  • Cover images are auto-generated (7 options provided)
  • Character count is displayed after import
  • Auto-save activates every few minutes
  • Published articles appear in "笔记管理" (Note Management)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.47%
按下载量换算3,092

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills