workbuddy-switch 0.1.0 → 0.1.1

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 CHANGED
@@ -3,7 +3,7 @@
3
3
  WorkBuddy(腾讯 AI 编程助手)账号切换工具。两种形态:
4
4
 
5
5
  - **桌面 App**:下载 `.app` 双击运行(Tauri,推荐日常使用)
6
- - **npm / webui**:`npm i -g wb-switch` 后运行 `wb-switch`,浏览器打开操作界面
6
+ - **npm / webui**:`npm i -g workbuddy-switch` 后运行 `wb-switch`,浏览器打开操作界面
7
7
 
8
8
  多账号共享登录态(`workbuddy-desktop.info`),一键切换 WorkBuddy 登录账号,并支持将当前账号的会话复制给目标账号(云端归属目标)。
9
9
 
@@ -12,7 +12,7 @@ WorkBuddy(腾讯 AI 编程助手)账号切换工具。两种形态:
12
12
  ### npm 安装(webui)
13
13
 
14
14
  ```bash
15
- npm i -g wb-switch
15
+ npm i -g workbuddy-switch
16
16
  wb-switch # 启动本地服务 + 自动打开浏览器
17
17
  wb-switch status # 终端查看当前账号
18
18
  ```
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "workbuddy-switch",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "WorkBuddy 账号切换工具:本地 webui(浏览器操作)+ 桌面 App(安装后运行 wb-switch)",
5
5
  "bin": {
6
- "wb-switch": "bin/wb-switch.js"
6
+ "workbuddy-switch": "bin/workbuddy-switch.js"
7
7
  },
8
8
  "files": [
9
9
  "bin",
@@ -7,7 +7,7 @@ const os = require("os");
7
7
  const https = require("https");
8
8
 
9
9
  const OWNER = "changexbc"; // 发布二进制到 Release 的 GitHub 仓库
10
- const REPO = "wb-switch";
10
+ const REPO = "workbuddy-switch";
11
11
 
12
12
  const FILE = {
13
13
  "darwin-arm64": "wb-switch-darwin-arm64",
File without changes