@agent-wechat/cli 0.11.5 → 0.11.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Command-line tool for managing agent-wechat containers and interacting with WeChat.
|
|
4
4
|
|
|
5
|
+
**[Documentation](https://thisnick.github.io/agent-wechat/getting-started/cli/commands/)**
|
|
6
|
+
|
|
5
7
|
## Install
|
|
6
8
|
|
|
7
9
|
```bash
|
|
@@ -141,8 +143,7 @@ wx up
|
|
|
141
143
|
```
|
|
142
144
|
|
|
143
145
|
This starts a container named `agent-wechat` with:
|
|
144
|
-
- **Port 6174** — REST API (exposed to all interfaces)
|
|
145
|
-
- **Port 5900** — VNC (localhost only — use SSH tunnel for remote access)
|
|
146
|
+
- **Port 6174** — REST API + VNC web viewer at `/vnc/` (exposed to all interfaces)
|
|
146
147
|
- Persistent volumes for data and WeChat home directory
|
|
147
148
|
- Auth token from `~/.config/agent-wechat/token` (auto-generated on first run)
|
|
148
149
|
|
|
@@ -170,7 +171,6 @@ services:
|
|
|
170
171
|
- NET_ADMIN
|
|
171
172
|
ports:
|
|
172
173
|
- "6174:6174"
|
|
173
|
-
- "127.0.0.1:5900:5900"
|
|
174
174
|
volumes:
|
|
175
175
|
- agent-wechat-data:/data
|
|
176
176
|
- agent-wechat-home:/home/wechat
|
package/dist/cli.js
CHANGED
|
@@ -7911,7 +7911,7 @@ import qrTerminal from "qrcode-terminal";
|
|
|
7911
7911
|
import os from "os";
|
|
7912
7912
|
import path from "path";
|
|
7913
7913
|
import { fileURLToPath } from "url";
|
|
7914
|
-
var VERSION = "0.11.
|
|
7914
|
+
var VERSION = "0.11.7";
|
|
7915
7915
|
var CONTAINER_NAME = "agent-wechat";
|
|
7916
7916
|
var GHCR_IMAGE = "ghcr.io/thisnick/agent-wechat";
|
|
7917
7917
|
var DEFAULT_PORT = 6174;
|