← Back to Skills Marketplace
smallccwc

微信QQ自动发消息

by smallccwc · GitHub ↗ · v1.1.3 · MIT-0
cross-platform ⚠ suspicious
1218
Downloads
4
Stars
3
Active Installs
8
Versions
Install in OpenClaw
/install wechat-qq-sender
Description
Windows 平台微信和 QQ 自动发消息工具。支持搜索联系人、发送消息、截图OCR分析、智能回复建议(需用户确认后发送)。
Usage Guidance
这是一个典型的本地 GUI 自动化工具,功能与其声明一致,但请在安装/运行前注意: - 隐私与敏感数据:脚本会截屏并保存到 ~/.openclaw/workspace/screenshots/,截屏可能包含敏感信息;在包含敏感对话的环境中不要运行。定期删除该目录中的文件。 - 剪贴板与键鼠控制:运行期间脚本会修改剪贴板并模拟键盘/鼠标,运行时请避免同时人工操作以免干扰或发送错误内容。 - 网络活动:EasyOCR 首次加载会下载模型(约 100MB),需要网络;如果你不希望运行时有下载,可替换为本地已安装的 OCR(pytesseract)或预先安装好 easyocr 模型。脚本本身没有自动上传截图或向远端 API 发送数据,但 README 提到“将截图发送给 AI 助手”是手动流程。 - 代码来源与审计:发布源未知,建议在受信任或隔离环境(测试账户或虚拟机)中先运行并查看行为;如果担心隐私或合规问题,审阅脚本以确认没有额外的网络请求或隐蔽行为(当前代码未显示外部上报)。 - 运行前测试:先在非敏感的测试聊天里试验,确认窗口定位和坐标设定正确;脚本中有少量实现细节(例如某处对 right/bottom 的引用问题)可能导致异常,准备好手动中断(Ctrl-C)并检查日志。 总体建议:如果你理解并接受截图与键鼠自动化带来的隐私/操作风险,并愿意在受控环境中使用,这个技能在功能与权限上是自洽的;否则不要在真实/敏感账号上直接运行。
Capability Analysis
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.
Capability Assessment
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,也不修改其他技能或系统设置;脚本仅在被调用时运行并将文件写到用户家目录下的明确路径(可删除)。不存在强制常驻或自动授权其他技能的行为。
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install wechat-qq-sender
  3. After installation, invoke the skill by name or use /wechat-qq-sender
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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
Metadata
Slug wechat-qq-sender
Version 1.1.3
License MIT-0
All-time Installs 3
Active Installs 3
Total Versions 8
Frequently Asked Questions

What is 微信QQ自动发消息?

Windows 平台微信和 QQ 自动发消息工具。支持搜索联系人、发送消息、截图OCR分析、智能回复建议(需用户确认后发送)。 It is an AI Agent Skill for Claude Code / OpenClaw, with 1218 downloads so far.

How do I install 微信QQ自动发消息?

Run "/install wechat-qq-sender" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 微信QQ自动发消息 free?

Yes, 微信QQ自动发消息 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 微信QQ自动发消息 support?

微信QQ自动发消息 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 微信QQ自动发消息?

It is built and maintained by smallccwc (@smallccwc); the current version is v1.1.3.

💬 Comments