peertable 0.8.47 → 0.8.48

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.47",
3
+ "version": "0.8.48",
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.47'
17
+ const MCP_VERSION = '0.8.48'
18
18
  const PKG_ROOT = join(dirname(fileURLToPath(import.meta.url)), '..')
19
19
 
20
20
  const USAGE = `usage:
@@ -71,12 +71,11 @@ import json,sys
71
71
  try: d=json.load(sys.stdin)
72
72
  except Exception: print(0); raise SystemExit
73
73
  print(len(d.get('next_ready',[]))+len(d.get('active_set',[]))+len(d.get('audit_pending',[])))" 2>/dev/null)
74
- if [ "${work:-0}" -gt 0 ]; then
75
- date -u +%FT%TZ > "$lock"
76
- echo "$(date -u +%FT%TZ) 席消失を検知($proj:$dead / 残工程 $work)。resumeで自動蘇生する"
77
- (cd "$proj" && bash "$scripts/resume.sh" "$proj" >> "$proj/.team/seat-revive.log" 2>&1) \
78
- || echo "$(date -u +%FT%TZ) 自動蘇生に失敗: $proj(seat-revive.log参照)"
79
- else
80
- echo "$(date -u +%FT%TZ) 席消失を検知したが残工程ゼロのため起こさない($proj:$dead)"
81
- fi
74
+ # 工程ゼロでも起こす(オーナー裁定 2026-08-30「席全滅で待機でもないのは何もログ取れない」)。
75
+ # 空の卓は障害の再現条件と席側の証人(pane log・rollout)を失う。蘇生コストは席あたり
76
+ # 待機宣言1ターンで、観測体制の維持が勝る。
77
+ date -u +%FT%TZ > "$lock"
78
+ echo "$(date -u +%FT%TZ) 席消失を検知($proj:$dead / 残工程 ${work:-0})。resumeで自動蘇生する"
79
+ (cd "$proj" && bash "$scripts/resume.sh" "$proj" >> "$proj/.team/seat-revive.log" 2>&1) \
80
+ || echo "$(date -u +%FT%TZ) 自動蘇生に失敗: $proj(seat-revive.log参照)"
82
81
  done