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

wechat-desktop-sender微信桌面发送器

Agent Skill

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

总安装

4,281

周安装

182

GitHub Stars

公开资料未说明

下载量

1,855
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install wechat-desktop-sender

简介

Windows 微信桌面端自动化消息发送工具。

  • 支持聊天窗口打开、联系人搜索与消息推送。
  • 通过 UI 控制实现精准消息投递。
  • 需 Windows 环境与微信客户端常驻。
  • 避免高频操作触发风控或账号限制。wechat-desktop-sender 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
wechat-desktop-sender
description
Windows WeChat desktop automation for opening chats and sending messages. Use when the user wants to open 微信桌面端, search a contact or group, send a message, send the same message to multiple contacts/groups in serial batch mode, or send personalized messages where each recipient gets different content. Best for direct desktop WeChat messaging workflows like 文件传输助手 testing, one-to-one outreach, 串行群发, and名单驱动个性化发送. Not for browser WeChat,朋友圈 scraping, or reliable historical-message forwarding.

wechat-desktop-sender

Use this skill for Windows 微信桌面端发消息 workflows.

What this skill provides

Bundled scripts:

  • scripts/wechat_send.py — formal single-send command entry
  • scripts/wechat_send_hello.py — core implementation (open WeChat, search chat, send, verify)
  • scripts/wechat_send_batch.py — serial batch sender for multiple contacts/groups
  • scripts/wechat_send_campaign.py — personalized serial sender (different message per contact)
  • scripts/wechat_send_template_campaign.py — template-variable sender (same template, different row values)

Quick start

Install dependencies:

pip install pywinauto pyperclip psutil pywin32 pillow pytesseract
pytesseract is optional. Install it only if OCR verification is needed.

Single send

python scripts/wechat_send.py --to "文件传输助手" --message "你好"

Useful flags:

python scripts/wechat_send.py --to "李义" --message "我是龙虾Koi,打个招呼。" --verify-title
python scripts/wechat_send.py --to "文件传输助手" --message "OCR测试" --ocr-verify

Serial batch send

python scripts/wechat_send_batch.py --to "张三,李四,文件传输助手" --message "晚上 8 点开会"

Or from file:

python scripts/wechat_send_batch.py --contacts-file contacts.txt --message "晚上 8 点开会"

Personalized send

python scripts/wechat_send_campaign.py --csv contacts_messages.csv --verify-title
python scripts/wechat_send_campaign.py --json contacts_messages.json --verify-title

Template-variable send

python scripts/wechat_send_template_campaign.py --csv template_contacts.csv --template "{name}你好,我是Koi,关于{company}这边和你打个招呼。" --verify-title

Recommended workflow

  1. Ensure WeChat desktop is logged in
  2. Test on 文件传输助手 first
  3. Use single-send for one contact/group
  4. Use batch-send for serial outreach
  5. Check wechat_automation_logs/ for logs and summaries

Verification model

Current verification layers:

  1. UI element location succeeded
  2. Message was sent through the input box
  3. Window text verification checks whether the message text appears in current WeChat window
  4. Optional OCR verification if --ocr-verify is enabled and OCR deps are installed

Treat this as practical desktop automation, not a cryptographic delivery guarantee.

Boundaries

Do not claim support for these unless separately extended:

  • Moments / 朋友圈 scraping
  • Reliable historical message forwarding
  • Multi-window true parallel sending
  • Full desktop social graph extraction

Files and outputs

By default, scripts create logs under:

wechat_automation_logs/

Outputs may include:

  • run logs
  • failure screenshots
  • control-tree dumps
  • batch summary JSON files

OpenClaw workflow usage

Once this skill is installed, the user can express intent conversationally and the agent should route to the correct script:

  • “给张三发一句话:今晚 8 点开会” → use single-send
  • “给这 20 个人发同一条消息” → use batch-send
  • “按这份名单分别发不同文案” → use personalized-send
  • “按这份名单套一个模板变量群发” → use template-variable send

Preferred operational pattern:

  1. Normalize the recipient list and message payload
  2. If one recipient and one message → scripts/wechat_send.py
  3. If many recipients and same message → scripts/wechat_send_batch.py
  4. If many recipients and different messages → scripts/wechat_send_campaign.py
  5. If many recipients share one template with per-row fields → scripts/wechat_send_template_campaign.py
  6. Report success count, verification count, retry recommendations, and log/summary paths back to the user

When to read more

For detailed CLI usage and arguments, read:

  • references/single-send.md
  • references/batch-send.md
  • references/personalized-send.md
  • references/template-send.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.76%
按下载量换算1,331

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills