peertable 0.4.15 → 0.4.16
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/README.ja.md +1 -1
- package/README.md +1 -1
- package/package.json +1 -1
- package/room/client.mjs +3 -2
package/README.ja.md
CHANGED
|
@@ -107,7 +107,7 @@ Codex では、スキルが所有する room MCP block をプロジェクトの
|
|
|
107
107
|
|
|
108
108
|
動いており、**自分自身の開発に使っている**。2026-08-08 に end-to-end 検証済み——オーケストレーターなしの完全な一周(2 メンバーが相談し、claim し、インターフェースを交渉し、見つけた罠を共有して小さなプロジェクトを出荷)を**外部介入ゼロ**で完走。2026-08-13の実席ライフサイクルでは、作業席が親を通じてsession contextを保ったままmodel / effortを変更し、再起動後はroomと工程正本から再着任した。2026-08-14にはGrok 4.6席の着席、room参加、同一sessionの4.6↔4.5変更、DM起床を実機で確認した。2026-08-17にGrok席はidle待ち、broadcastは本文を残し、tmuxの無い親でbridge cursorが止まらないよう直した。
|
|
109
109
|
|
|
110
|
-
現在のnpm releaseは **peertable 0.4.
|
|
110
|
+
現在のnpm releaseは **peertable 0.4.16**。
|
|
111
111
|
|
|
112
112
|
設計文書と決定履歴(**91 決定**)は [docs/plan.md](docs/plan.md)。
|
|
113
113
|
|
package/README.md
CHANGED
|
@@ -143,7 +143,7 @@ It interviews you, names the members, scaffolds `.team/` (charter + roles, isola
|
|
|
143
143
|
|
|
144
144
|
Working, and used to build itself. First verified end-to-end on 2026-08-08 with a full no-orchestrator loop: two members consulted, claimed, negotiated an interface, shared a discovered pitfall, and shipped a small project with **zero external intervention**. A 2026-08-13 real-seat lifecycle verified in-place model/effort changes and restart recovery. On 2026-08-14, a Grok 4.6 seat joined the room, changed 4.6↔4.5 in the same session, and woke on a direct message in a live acceptance run. On 2026-08-17 the wake-up path was corrected so Grok seats wait for idle, broadcasts keep their body, and a parent without a tmux seat cannot stall the bridge cursor.
|
|
145
145
|
|
|
146
|
-
The current npm release is **peertable 0.4.
|
|
146
|
+
The current npm release is **peertable 0.4.16**.
|
|
147
147
|
|
|
148
148
|
The design document and decision log (**91 decisions**, in Japanese) live in [docs/plan.md](docs/plan.md).
|
|
149
149
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "peertable",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.16",
|
|
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
|
@@ -8,10 +8,11 @@ import { existsSync, readFileSync } from 'node:fs'
|
|
|
8
8
|
import { execFileSync } from 'node:child_process'
|
|
9
9
|
import { dirname, join } from 'node:path'
|
|
10
10
|
import { fileURLToPath } from 'node:url'
|
|
11
|
+
import { isIdleSelfWake } from '../skill/scripts/wakeup-delivery.mjs'
|
|
11
12
|
|
|
12
13
|
// client.mjs 側のハードコード版数。package.json の version と一致していることを
|
|
13
14
|
// diagnostics の version_consistency が見る(2 つの版数源の drift 検出。決定45)
|
|
14
|
-
const MCP_VERSION = '0.4.
|
|
15
|
+
const MCP_VERSION = '0.4.16'
|
|
15
16
|
const PKG_ROOT = join(dirname(fileURLToPath(import.meta.url)), '..')
|
|
16
17
|
|
|
17
18
|
const USAGE = `usage:
|
|
@@ -207,7 +208,7 @@ async function subscribe() {
|
|
|
207
208
|
const data = lines.filter(l => l.startsWith('data: ')).map(l => l.slice(6)).join('')
|
|
208
209
|
if (!data) continue
|
|
209
210
|
const m = JSON.parse(data)
|
|
210
|
-
if (!relevant(m)) continue
|
|
211
|
+
if (!relevant(m) || isIdleSelfWake(m)) continue
|
|
211
212
|
await mcp.notification({
|
|
212
213
|
method: 'notifications/claude/channel',
|
|
213
214
|
params: {
|