by photon-hq · Codex Skill · ★ 784
qclaw-wechat-client 中文文档 Reverse-engineered TypeScript client for QClaw's WeChat Access API. QClaw (管家 OpenClaw) is a Tencent Electron desktop app that wraps an OpenClaw AI Gateway service. It authenticates exclusively through WeChat OAuth2 QR-code login and communicates with Tencent backend servers via a jprx gateway protocol. This library implements that protocol as a standalone TypeScript module. Origin Extracted from - (unencrypted). The API service class ( / ) was found in the bundled renderer at . Install Development Quick start typescript import { QClawClient } from "qclaw-wechat-client"; import type { WxLoginStateData, WxLoginData } from "qclaw-wechat-client"; const client = new QClawClient({ env: "production" }); // Step 1 - get login state (CSRF token) const stateRes = await client.getWxLoginState({ guid: "machine-id" }); const state = QClawClient.unwrap(stateRes)?.state; // Step 2 - show QR code to user const qrUrl = client.buildWxLoginUrl(state!); console.log("Scan this:", qrUrl); // Step 3 - exchange auth code (from WeChat redirect) for session const loginRes = await client.wxLogin({
| Stars | 784 |
| Forks | 374 |
| Language | TypeScript |
| Category | Codex Skill |
| Quality Score | 64.01/100 |
| Open Issues | 10 |
| Last Updated | 2026-03-22 |
| Created | 2026-03-10 |
| Platforms | cli, node |
| Est. Tokens | ~6k |
These tools work well together with qclaw-wechat-client for enhanced workflows:
Explore other popular codex skill tools:
qclaw-wechat-client is Reverse-engineered TypeScript client for QClaw's WeChat Access API.. It is categorized as a Codex Skill with 784 GitHub stars.
qclaw-wechat-client is primarily written in TypeScript. It covers topics such as agent, openclaw, qclaw.
You can find installation instructions and usage details in the qclaw-wechat-client GitHub repository at github.com/photon-hq/qclaw-wechat-client. The project has 784 stars and 374 forks, indicating an active community.