peertable 0.8.34 → 0.8.35

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "peertable",
3
- "version": "0.8.34",
3
+ "version": "0.8.35",
4
4
  "description": "A round table of peer agents. No orchestrator at the head. Turn Claude Code, Codex, and Grok sessions into a team of equal, long-lived peers.",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/room/client.mjs CHANGED
@@ -14,7 +14,7 @@ import { boundedRecent, boundedUnread } from './message-bounds.mjs'
14
14
 
15
15
  // client.mjs 側のハードコード版数。package.json の version と一致していることを
16
16
  // diagnostics の version_consistency が見る(2 つの版数源の drift 検出。決定45)
17
- const MCP_VERSION = '0.8.34'
17
+ const MCP_VERSION = '0.8.35'
18
18
  const PKG_ROOT = join(dirname(fileURLToPath(import.meta.url)), '..')
19
19
 
20
20
  const USAGE = `usage:
@@ -354,8 +354,16 @@ function composerSquashed(screen) {
354
354
  for (let i = lines.length - 1; i >= 0; i--) {
355
355
  if (/[›❯]/u.test(lines[i])) { start = i; break }
356
356
  }
357
- const region = start >= 0 ? lines.slice(start) : lines.slice(-14)
358
- return region.join('').replace(/\s+/gu, '')
357
+ if (start < 0) return lines.slice(-14).join('').replace(/\s+/gu, '')
358
+ // マーカー行から**直後の空行まで**だけが composer。末尾まで含めると、Codex がターン間に
359
+ // composer の下へ描く受理済み・キュー済みの本文(空行を挟んで表示される)を「残存」と
360
+ // 誤検知する(実被弾 2026-08-29: 受理済み配達を failed 固定し、空 Enter を打ち続けた)。
361
+ // 折返しの composer 続行行は空行を挟まず続くので、この区切りで取りこぼさない。
362
+ let end = lines.length
363
+ for (let i = start + 1; i < lines.length; i++) {
364
+ if (lines[i].trim() === '') { end = i; break }
365
+ }
366
+ return lines.slice(start, end).join('').replace(/\s+/gu, '')
359
367
  }
360
368
 
361
369
  const deferredBusy = new Set()