@clawos-dev/clawd 0.2.377 → 0.2.379

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.
Files changed (2) hide show
  1. package/dist/cli.cjs +4 -2
  2. package/package.json +1 -1
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
- summary: str2(e.preview) || "(\u7A7A\u4F1A\u8BDD)",
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.377".length > 0 ? "0.2.377" : "dev";
61198
+ var version = "0.2.379".length > 0 ? "0.2.379" : "dev";
61197
61199
 
61198
61200
  // src/cli-probe/probe.ts
61199
61201
  var fs64 = __toESM(require("fs"), 1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawos-dev/clawd",
3
- "version": "0.2.377",
3
+ "version": "0.2.379",
4
4
  "description": "Standalone clawd daemon — Claude Code (and future Codex) session server over WebSocket",
5
5
  "type": "module",
6
6
  "license": "MIT",