← 返回 Skills 市场
smallccwc

微信QQ自动发消息

作者 smallccwc · GitHub ↗ · v1.1.3 · MIT-0
cross-platform ⚠ suspicious
1218
总下载
4
收藏
3
当前安装
8
版本数
在 OpenClaw 中安装
/install wechat-qq-sender
功能描述
Windows 平台微信和 QQ 自动发消息工具。支持搜索联系人、发送消息、截图OCR分析、智能回复建议(需用户确认后发送)。
安全使用建议
这是一个典型的本地 GUI 自动化工具,功能与其声明一致,但请在安装/运行前注意: - 隐私与敏感数据:脚本会截屏并保存到 ~/.openclaw/workspace/screenshots/,截屏可能包含敏感信息;在包含敏感对话的环境中不要运行。定期删除该目录中的文件。 - 剪贴板与键鼠控制:运行期间脚本会修改剪贴板并模拟键盘/鼠标,运行时请避免同时人工操作以免干扰或发送错误内容。 - 网络活动:EasyOCR 首次加载会下载模型(约 100MB),需要网络;如果你不希望运行时有下载,可替换为本地已安装的 OCR(pytesseract)或预先安装好 easyocr 模型。脚本本身没有自动上传截图或向远端 API 发送数据,但 README 提到“将截图发送给 AI 助手”是手动流程。 - 代码来源与审计:发布源未知,建议在受信任或隔离环境(测试账户或虚拟机)中先运行并查看行为;如果担心隐私或合规问题,审阅脚本以确认没有额外的网络请求或隐蔽行为(当前代码未显示外部上报)。 - 运行前测试:先在非敏感的测试聊天里试验,确认窗口定位和坐标设定正确;脚本中有少量实现细节(例如某处对 right/bottom 的引用问题)可能导致异常,准备好手动中断(Ctrl-C)并检查日志。 总体建议:如果你理解并接受截图与键鼠自动化带来的隐私/操作风险,并愿意在受控环境中使用,这个技能在功能与权限上是自洽的;否则不要在真实/敏感账号上直接运行。
功能分析
Type: OpenClaw Skill Name: wechat-qq-sender Version: 1.1.3 The skill bundle provides Windows GUI automation for WeChat and QQ using pyautogui, pygetwindow, and EasyOCR. It contains high-risk capabilities including screen capturing (ImageGrab), clipboard manipulation (pyperclip), and simulated keyboard/mouse control, which are used to scrape chat history and send messages. While the logic in chat_assistant_v2.py and qq_capture_and_reply.py appears aligned with the stated purpose and includes local-only storage and user confirmation prompts, the broad access to sensitive communication interfaces and desktop control constitutes a significant security risk.
能力评估
Purpose & Capability
技能名和描述(微信/QQ 自动发消息、截图 OCR、智能回复)与包含的 Python 脚本 (wechat_send_message.py, qq_send_message.py, qq_capture_and_reply.py, chat_assistant_v2.py, ocr_helper.py) 一致。所需操作(窗口查找、截屏、剪贴板、键盘/鼠标模拟、EasyOCR 本地识别)都是实现这些功能所需的,未请求无关凭据或外部服务凭证。
Instruction Scope
SKILL.md 与各脚本详细描述了截图、OCR、本地保存、生成建议并等待用户确认后发送的流程;脚本不会自动将截图上传到外部服务(README/SKILL.md 中明确声明截图仅本地保存)。注意:文档建议可“将截图发送给 AI 助手”作为手动流程,但代码本身没有自动上报或调用外部 API 的实现。
Install Mechanism
技能是 instruction-only(没有 install spec),但 SKILL.md 要求用 pip 安装依赖(pyautogui, pygetwindow, pyperclip, pillow, easyocr 等)。EasyOCR 在首次运行时会下载大约 ~100MB 的模型(运行时网络请求由 easyocr 库触发),这是一个需要注意的网络活动,但属于该 OCR 功能的合理需求;没有发现从不可信的 URL 下载可执行代码的安装脚本。
Credentials
技能不要求环境变量、凭证或外部密钥,所需资源(屏幕访问、剪贴板、本地文件路径)与其功能相符。package.json 中声明的数据路径 (~/.openclaw/workspace/screenshots 和 temp) 与脚本保存截图/临时文件的位置一致。
Persistence & Privilege
manifest flags 不要求 always:true,也不修改其他技能或系统设置;脚本仅在被调用时运行并将文件写到用户家目录下的明确路径(可删除)。不存在强制常驻或自动授权其他技能的行为。
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install wechat-qq-sender
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /wechat-qq-sender 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.3
- 更换 OCR 引擎为 EasyOCR,替代 Tesseract - 提升中文识别效果 - 添加置信度过滤(识别结果置信度需大于 0.4) - 优化识别速度和准确率
v1.1.1
**v1.1.1 Changelog** - Added detailed privacy and local data storage warnings. - Clarified that screenshots are saved only locally and never uploaded. - Updated documentation with explicit data storage paths. - Fixed package.json formatting by removing Python dependency declarations.
v1.1.0
Main fixes: ✅ fixed click position issue old: top left corner of pyautogui.click(100, 100) new: pyautogui.click(screen_width // 2, screen_height -200) relative position ✅ optimize window activation add exception handling activate by clicking the title bar ✅ improve search process increase waiting time optimize step sequence
v1.0.4
wechat-qq-sender v1.0.4 - 增加“风险提示”与详细的安全建议 - 支持截图、OCR识别与回复建议,新增“需用户确认后发送”机制,避免自动发送误操作 - 优化说明文档结构,新增 ocr_helper.py 文件说明 - 明确表明不会在用户未确认前自动发送智能回复,提高使用安全性
v1.0.3
- Added OCR helper module (ocr_helper.py) for local chat screenshots. - SKILL.md updated: now documents local screenshot saving and optional OCR analysis with pytesseract or easyocr. - Expanded usage notes and privacy reminders regarding screenshots and OCR features. - No changes to existing message sending functions.
v1.0.2
- Version updated to 1.0.2, but no file changes detected. - No new features, fixes, or documentation updates included in this release.
v1.0.1
- Updated example contact names and group names to more generic placeholders in usage instructions and scenarios. - Refined sample commands for clarity. - Simplified author section to "OpenClaw Community."
v1.0.0
- Initial release of WeChat & QQ Sender for Windows - Supports automated messaging in WeChat and QQ, including searching contacts, sending text and emote messages - Clipboard-based pasting ensures support for Chinese, special characters, and emojis - Screenshot analysis and auto-reply features for QQ group chats - Simple usage with Python scripts; requires visible, non-minimized desktop app windows - Includes troubleshooting and usage examples for typical scenarios
元数据
Slug wechat-qq-sender
版本 1.1.3
许可证 MIT-0
累计安装 3
当前安装数 3
历史版本数 8
常见问题

微信QQ自动发消息 是什么?

Windows 平台微信和 QQ 自动发消息工具。支持搜索联系人、发送消息、截图OCR分析、智能回复建议(需用户确认后发送)。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1218 次。

如何安装 微信QQ自动发消息?

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

微信QQ自动发消息 是免费的吗?

是的,微信QQ自动发消息 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

微信QQ自动发消息 支持哪些平台?

微信QQ自动发消息 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 微信QQ自动发消息?

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

💬 留言讨论