peertable 0.8.41 → 0.8.42

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.41",
3
+ "version": "0.8.42",
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.41'
17
+ const MCP_VERSION = '0.8.42'
18
18
  const PKG_ROOT = join(dirname(fileURLToPath(import.meta.url)), '..')
19
19
 
20
20
  const USAGE = `usage:
@@ -513,7 +513,13 @@ async function wake(seat, msgs) {
513
513
  writeFileSync(pasteFile, text)
514
514
  try {
515
515
  await run('tmux', tmuxArgv(['load-buffer', '-b', pasteBuf, pasteFile], { socket: observation.socket }))
516
- await run('tmux', tmuxArgv(['paste-buffer', '-p', '-d', '-b', pasteBuf, '-t', observation.target], { socket: observation.socket }))
516
+ // bracketed paste(-p)はCodexの素打ち破損対策に必須だが、Grok TUIは非対応で
517
+ // 終端コード ^[[201~ がリテラルとして composer へ混入し submit 不能になる
518
+ // (実被弾 2026-08-30)。paste自体の原子性は -p なしでも保たれる。
519
+ const pasteArgs = memberHarness(member) === 'grok'
520
+ ? ['paste-buffer', '-d', '-b', pasteBuf, '-t', observation.target]
521
+ : ['paste-buffer', '-p', '-d', '-b', pasteBuf, '-t', observation.target]
522
+ await run('tmux', tmuxArgv(pasteArgs, { socket: observation.socket }))
517
523
  } finally {
518
524
  try { unlinkSync(pasteFile) } catch { /* 一時fileの掃除失敗は配達判定に影響しない */ }
519
525
  }