wxauto
Installation
SKILL.md
微信自动化
通过 wxautox4 RESTful API 操作微信,支持消息收发、监听、好友管理等功能。API 服务必须运行在 Windows 设备上(wxautox4 仅支持 Windows),可通过本地或远程方式连接。
步骤 0:平台检测(最优先执行)
在做任何其他操作之前,先检测当前设备的操作系统:
import platform
print(platform.system()) # 返回 'Windows' / 'Darwin' / 'Linux'
根据结果走不同分支:
非 Windows 设备(macOS / Linux)
Related skills