codex-to-im 1.0.26 → 1.0.27

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
@@ -102,6 +102,20 @@ codex-to-im status
102
102
  codex-to-im stop
103
103
  ```
104
104
 
105
+ ### 卸载
106
+
107
+ ```bash
108
+ codex-to-im uninstall
109
+ ```
110
+
111
+ 说明:
112
+
113
+ - 该命令会停止本地 UI、停止 bridge,并尝试移除已安装的 bridge 开机自启动任务。
114
+ - 当前命令退出后,后台会尝试执行 `npm uninstall -g codex-to-im`;这一步不是立即完成。
115
+ - 可根据输出中的日志路径确认后台卸载结果;如果几秒后 `codex-to-im` 仍可执行,请手动运行 `npm uninstall -g codex-to-im`。
116
+ - 该命令不会删除 `~/.codex-to-im` 下的配置、日志和会话数据。
117
+ - 该命令也不会删除 `~/.codex/skills/codex-to-im`;如需彻底清理,请手动删除相关目录。
118
+
105
119
  ## 典型使用方式
106
120
 
107
121
  ### 1. 接管桌面线程
package/README_EN.md CHANGED
@@ -102,6 +102,20 @@ If you want to stop the local UI and bridge:
102
102
  codex-to-im stop
103
103
  ```
104
104
 
105
+ ### Uninstall
106
+
107
+ ```bash
108
+ codex-to-im uninstall
109
+ ```
110
+
111
+ Notes:
112
+
113
+ - This command stops the local UI, stops the bridge, and attempts to remove the installed bridge boot task if present.
114
+ - After the command exits, a background helper attempts to run `npm uninstall -g codex-to-im`; this step is not immediate.
115
+ - Check the log path printed by the command to confirm the uninstall result. If `codex-to-im` is still available a few seconds later, run `npm uninstall -g codex-to-im` manually.
116
+ - This command does not delete local config, logs, or session data under `~/.codex-to-im`.
117
+ - This command also does not delete `~/.codex/skills/codex-to-im`; remove those directories manually if you want a full local cleanup.
118
+
105
119
  ## Typical Workflows
106
120
 
107
121
  ### 1. Take over a desktop thread
package/dist/cli.mjs CHANGED
@@ -657,9 +657,12 @@ async function main() {
657
657
  [
658
658
  `Stopped services. UI running=${result.ui.running ? "yes" : "no"}, Bridge running=${result.bridge.running ? "yes" : "no"}`,
659
659
  result.autostart.installed ? `Bridge autostart still installed: ${result.autostart.taskName}` : "Bridge autostart removed.",
660
- `Global npm uninstall scheduled via ${result.npmCommand}.`,
660
+ `Background npm uninstall scheduled via ${result.npmCommand}.`,
661
661
  `Log: ${result.logPath}`,
662
- "\u5F53\u524D\u547D\u4EE4\u9000\u51FA\u540E\uFF0C\u540E\u53F0\u4F1A\u7EE7\u7EED\u6267\u884C\u5168\u5C40\u5378\u8F7D\u3002"
662
+ "\u5F53\u524D\u547D\u4EE4\u9000\u51FA\u540E\uFF0C\u540E\u53F0\u4F1A\u5C1D\u8BD5\u6267\u884C npm uninstall -g codex-to-im\u3002",
663
+ "\u8FD9\u4E00\u6B65\u4E0D\u662F\u7ACB\u5373\u5B8C\u6210\uFF1B\u5982\u9700\u786E\u8BA4\u7ED3\u679C\uFF0C\u8BF7\u67E5\u770B\u4E0A\u9762\u7684\u65E5\u5FD7\u6587\u4EF6\u3002",
664
+ "\u5982\u679C\u51E0\u79D2\u540E codex-to-im \u4ECD\u53EF\u6267\u884C\uFF0C\u8BF7\u624B\u52A8\u8FD0\u884C\uFF1Anpm uninstall -g codex-to-im",
665
+ "\u672C\u547D\u4EE4\u4E0D\u4F1A\u5220\u9664 ~/.codex-to-im \u6216 ~/.codex/skills/codex-to-im\uFF0C\u8BF7\u6309\u9700\u624B\u52A8\u5220\u9664\u3002"
663
666
  ].join("\n") + "\n"
664
667
  );
665
668
  return;
package/dist/daemon.mjs CHANGED
@@ -17230,8 +17230,10 @@ function buildIndexedCommandList(title, items, footer = [], markdown = false) {
17230
17230
  return lines.join("\n").trim();
17231
17231
  }
17232
17232
  function buildDesktopThreadsCommandResponse(desktopSessions, markdown, showAll, limit = 10) {
17233
+ const actualCount = desktopSessions.length;
17234
+ const title = showAll ? `\u684C\u9762\u4F1A\u8BDD\uFF08\u5F53\u524D\u663E\u793A ${actualCount} \u6761\uFF0C\u6700\u591A ${MAX_DESKTOP_THREAD_LIST_LIMIT} \u6761\uFF09` : `\u6700\u8FD1 ${actualCount} \u6761\u684C\u9762\u4F1A\u8BDD`;
17233
17235
  return buildIndexedCommandList(
17234
- showAll ? `\u684C\u9762\u4F1A\u8BDD\uFF08\u6700\u591A ${MAX_DESKTOP_THREAD_LIST_LIMIT} \u6761\uFF09` : `\u6700\u8FD1 ${limit} \u6761\u684C\u9762\u4F1A\u8BDD`,
17236
+ title,
17235
17237
  desktopSessions.map((session) => ({
17236
17238
  heading: session.title || "\u672A\u547D\u540D\u7EBF\u7A0B",
17237
17239
  details: [
@@ -19397,7 +19399,7 @@ async function handleCommand(adapter, msg, text2) {
19397
19399
  );
19398
19400
  break;
19399
19401
  }
19400
- const displayedThreads = getDisplayedDesktopThreads(DEFAULT_DESKTOP_THREAD_LIST_LIMIT);
19402
+ const displayedThreads = getDisplayedDesktopThreads(MAX_DESKTOP_THREAD_LIST_LIMIT);
19401
19403
  const threadPick = resolveByIndexOrPrefix(args, displayedThreads, (session) => session.threadId);
19402
19404
  if (threadPick.ambiguous) {
19403
19405
  response = "\u5339\u914D\u5230\u591A\u4E2A\u684C\u9762\u4F1A\u8BDD\uFF0C\u8BF7\u5148\u53D1\u9001 `/t` \u67E5\u770B\u5217\u8868\uFF0C\u518D\u7528 `/t 1` \u8FD9\u79CD\u5E8F\u53F7\u5207\u6362\u3002";
@@ -19428,6 +19430,10 @@ async function handleCommand(adapter, msg, text2) {
19428
19430
  );
19429
19431
  break;
19430
19432
  }
19433
+ if (threadPick.index !== void 0) {
19434
+ response = displayedThreads.length > 0 ? `\u5F53\u524D\u53EA\u627E\u5230 ${displayedThreads.length} \u6761\u684C\u9762\u4F1A\u8BDD\uFF0C\u6CA1\u6709\u7B2C ${threadPick.index} \u6761\u3002\u5148\u53D1\u9001 \`/t\` \u67E5\u770B\u6700\u8FD1\u4F1A\u8BDD\uFF0C\u6216\u53D1\u9001 \`/t all\` \u67E5\u770B\u66F4\u591A\u540E\u518D\u9009\u62E9\u3002` : "\u6CA1\u6709\u627E\u5230\u684C\u9762\u4F1A\u8BDD\u3002\u5148\u5728 Codex Desktop App \u4E2D\u6253\u5F00\u4E00\u4E2A\u4F1A\u8BDD\uFF0C\u518D\u56DE\u6765\u8BD5\u4E00\u6B21\u3002";
19435
+ break;
19436
+ }
19431
19437
  response = "\u6CA1\u6709\u627E\u5230\u5BF9\u5E94\u7684\u684C\u9762\u4F1A\u8BDD\u3002\u5148\u53D1\u9001 `/t` \u67E5\u770B\u6700\u8FD1\u4F1A\u8BDD\uFF0C\u518D\u7528 `/t 1` \u63A5\u7BA1\u3002";
19432
19438
  break;
19433
19439
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-to-im",
3
- "version": "1.0.26",
3
+ "version": "1.0.27",
4
4
  "description": "Installable Codex-to-IM bridge with local setup UI and background service",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/zhangle1987/codex-to-im#readme",