@clawos-dev/clawd 0.2.378 → 0.2.380
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/dist/cli.cjs
CHANGED
|
@@ -54310,7 +54310,9 @@ var CodexHistoryReader = class {
|
|
|
54310
54310
|
const updatedAtMs = Math.round((num2(e.updatedAt) ?? 0) * 1e3);
|
|
54311
54311
|
out.push({
|
|
54312
54312
|
toolSessionId: id,
|
|
54313
|
-
|
|
54313
|
+
// name 才是会话标题:codex 桌面 app 会 AI 生成标题并经 thread/name/set 落到这里,
|
|
54314
|
+
// CLI 里 `/rename` 也写同一个字段;preview 只是首条用户消息原文,没 name 时才顶上
|
|
54315
|
+
summary: str2(e.name) || str2(e.preview) || "(\u7A7A\u4F1A\u8BDD)",
|
|
54314
54316
|
messageCount: 0,
|
|
54315
54317
|
// thread/list 不提供条数;活跃/read 时才知
|
|
54316
54318
|
updatedAt: new Date(updatedAtMs).toISOString()
|
|
@@ -61193,7 +61195,7 @@ function computeMethodAccess(args) {
|
|
|
61193
61195
|
}
|
|
61194
61196
|
|
|
61195
61197
|
// src/version.ts
|
|
61196
|
-
var version = "0.2.
|
|
61198
|
+
var version = "0.2.380".length > 0 ? "0.2.380" : "dev";
|
|
61197
61199
|
|
|
61198
61200
|
// src/cli-probe/probe.ts
|
|
61199
61201
|
var fs64 = __toESM(require("fs"), 1);
|