codex-to-im 1.0.37 → 1.0.39
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 +9 -0
- package/README_EN.md +9 -0
- package/dist/daemon.mjs +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,6 +11,15 @@
|
|
|
11
11
|
3. 把桌面里的 Codex 会话接到 IM
|
|
12
12
|
4. 在 IM 中继续对话、切线程、查看状态
|
|
13
13
|
|
|
14
|
+
## 项目来源
|
|
15
|
+
|
|
16
|
+
当前代码库是两个早期工程整合后的延续版本:
|
|
17
|
+
|
|
18
|
+
- `Claude-to-IM`
|
|
19
|
+
- `Claude-to-IM-skill`
|
|
20
|
+
|
|
21
|
+
`codex-to-im` 基于这两个项目继续演进,重构为单包本地应用,并统一了本地工作台、bridge、共享线程工作流,以及可选的 skill 集成方式。
|
|
22
|
+
|
|
14
23
|
## 核心能力
|
|
15
24
|
|
|
16
25
|
- 共享桌面线程:把 Codex Desktop 中正在使用的 thread 绑定到 IM,在 IM 中继续同一条会话。
|
package/README_EN.md
CHANGED
|
@@ -11,6 +11,15 @@ Its main path is not to modify Codex itself, but to:
|
|
|
11
11
|
3. bind desktop Codex sessions to IM chats
|
|
12
12
|
4. continue the same conversation, switch threads, and inspect status from IM
|
|
13
13
|
|
|
14
|
+
## Project Origin
|
|
15
|
+
|
|
16
|
+
The current codebase is a consolidated continuation of two earlier projects:
|
|
17
|
+
|
|
18
|
+
- `Claude-to-IM`
|
|
19
|
+
- `Claude-to-IM-skill`
|
|
20
|
+
|
|
21
|
+
`codex-to-im` continues from those two repositories and has been reworked into a single local package with a unified workbench, bridge, shared-thread workflow, and optional skill integration model.
|
|
22
|
+
|
|
14
23
|
## Core Capabilities
|
|
15
24
|
|
|
16
25
|
- Shared desktop threads: bind a thread currently used in Codex Desktop to IM and continue the same conversation there.
|
package/dist/daemon.mjs
CHANGED
|
@@ -5619,7 +5619,7 @@ var DEDUP_MAX = 1e3;
|
|
|
5619
5619
|
var MAX_FILE_SIZE = 20 * 1024 * 1024;
|
|
5620
5620
|
var TYPING_EMOJI = "Typing";
|
|
5621
5621
|
var CARD_THROTTLE_MS = 200;
|
|
5622
|
-
var INITIAL_STREAMING_STATUS = "\
|
|
5622
|
+
var INITIAL_STREAMING_STATUS = "\u5904\u7406\u4E2D";
|
|
5623
5623
|
var EMPTY_STREAMING_TOOLS = "";
|
|
5624
5624
|
var MIME_BY_TYPE = {
|
|
5625
5625
|
image: "image/png",
|
|
@@ -19024,7 +19024,7 @@ function formatRuntimeDuration(ms) {
|
|
|
19024
19024
|
return `${hours}h ${minutes}m ${seconds}s`;
|
|
19025
19025
|
}
|
|
19026
19026
|
function formatInteractiveRuntimeStatus(elapsedMs, silentMs) {
|
|
19027
|
-
const parts = [`\u5DF2\u8FD0\u884C ${formatRuntimeDuration(elapsedMs)}`];
|
|
19027
|
+
const parts = [elapsedMs < 1e3 ? "\u5904\u7406\u4E2D" : `\u5DF2\u8FD0\u884C ${formatRuntimeDuration(elapsedMs)}`];
|
|
19028
19028
|
if (typeof silentMs === "number" && silentMs >= 0) {
|
|
19029
19029
|
parts.push(`\u6700\u8FD1 ${formatRuntimeDuration(silentMs)} \u65E0\u65B0\u8F93\u51FA`);
|
|
19030
19030
|
}
|
package/package.json
CHANGED