Files
WechatExplorer/services/wechat-connector
Wxw-Gu cf3f115124 feat: 完成 TraceMemo v2.2.0 品牌身份与数据迁移升级
- 将 WechatExplorer 产品身份升级为 TraceMemo
- 更新 appId、Runtime Identity、Reader Skill 和 API 环境变量
- 增加旧用户数据、Knowledge、Token 与 AI Provider 安全迁移
- 保留 Windows WeFlow 和旧版配置兼容
- 完善首次启动迁移测试及 v2.2.0 发布文档
- 移除 macOS Intel x64 构建与发布支持
2026-08-11 17:52:57 +08:00
..

TraceMemo WeChat Connector

This repository-local service provides the minimal WeChat bridge required by TraceMemo:

  • QR-code login with a single persisted credential
  • account discovery
  • inbound long polling and authenticated webhook delivery
  • local HTTP health and send endpoints
  • text and local/remote media sending

The executable is managed by the Electron main process. It is not a general-purpose agent runtime and does not load external AI command-line tools.

Commands

go run . login --json
go run . accounts --json
go run . start --foreground --api-addr 127.0.0.1:18011 --account-id <account-id>

Credential and synchronization state is stored under ~/.wechatexplorer/wechat-connector/accounts. This legacy directory name is intentionally retained so upgrades can reuse existing accounts. A successful login is written before the older credential and synchronization state are removed, so an incomplete login cannot destroy the last working credential.

Attribution

Low-level protocol and media transport portions are distributed under the MIT license in LICENSE. TraceMemo-specific process management, webhook contract, product UI, and Agent Hub behavior live in the surrounding TraceMemo project.