peertable 0.4.0 → 0.4.2

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 (38) hide show
  1. package/LICENSE +21 -21
  2. package/README.ja.md +122 -120
  3. package/README.md +158 -156
  4. package/package.json +49 -49
  5. package/room/Dockerfile +6 -6
  6. package/room/client.mjs +6 -1
  7. package/skill/SKILL.md +245 -243
  8. package/skill/scripts/aiterm-configure.mjs +1 -1
  9. package/skill/scripts/aiterm-launch.mjs +1 -1
  10. package/skill/scripts/archive-room-log.py +0 -0
  11. package/skill/scripts/change-effort.sh +0 -0
  12. package/skill/scripts/change-seat.sh +4 -2
  13. package/skill/scripts/codex-parent-watch.sh +0 -0
  14. package/skill/scripts/ensure-bridge.sh +4 -2
  15. package/skill/scripts/ensure-codex-room-mcp.mjs +0 -0
  16. package/skill/scripts/ensure-room-mcp.mjs +0 -0
  17. package/skill/scripts/external-pane.mjs +0 -0
  18. package/skill/scripts/launch-seat.sh +54 -32
  19. package/skill/scripts/leave-seat.sh +7 -8
  20. package/skill/scripts/make-plan-input.mjs +0 -0
  21. package/skill/scripts/parent-join.sh +5 -3
  22. package/skill/scripts/parent-watch.mjs +7 -6
  23. package/skill/scripts/seat-identity.mjs +58 -0
  24. package/skill/scripts/seat-status-bridge.mjs +2 -2
  25. package/skill/scripts/seat-usage.mjs +50 -6
  26. package/skill/scripts/setup.sh +0 -0
  27. package/skill/scripts/teardown.sh +5 -3
  28. package/skill/scripts/tmux-at.bash +10 -0
  29. package/skill/scripts/tmux-socket.mjs +13 -4
  30. package/skill/scripts/upgrade-team-assets.sh +0 -0
  31. package/skill/scripts/wakeup-bridge.mjs +49 -21
  32. package/skill/scripts/wakeup-delivery.mjs +37 -0
  33. package/skill/templates/charter.md +20 -20
  34. package/skill/templates/mcp.json +5 -5
  35. package/skill/templates/member-standalone.md +43 -43
  36. package/skill/templates/member.md +127 -127
  37. package/skill/templates/parent.md +131 -128
  38. package/skill/templates/tasks.md +8 -8
package/package.json CHANGED
@@ -1,49 +1,49 @@
1
- {
2
- "name": "peertable",
3
- "version": "0.4.0",
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
- "type": "module",
6
- "license": "MIT",
7
- "author": {
8
- "name": "Quo",
9
- "url": "https://kitepon.dev"
10
- },
11
- "homepage": "https://peertable.kitepon.dev",
12
- "repository": {
13
- "type": "git",
14
- "url": "git+https://github.com/kitepon/peertable.git"
15
- },
16
- "bugs": "https://github.com/kitepon/peertable/issues",
17
- "keywords": [
18
- "claude-code",
19
- "grok",
20
- "multi-agent",
21
- "mcp",
22
- "ai-agents",
23
- "collaboration",
24
- "chatroom",
25
- "channels"
26
- ],
27
- "scripts": {
28
- "verify:release-commit": "node scripts/verify-release-commit.mjs",
29
- "prepublishOnly": "npm run verify:release-commit && PEERTABLE_URL= node room/client.mjs diagnostics"
30
- },
31
- "bin": {
32
- "peertable-room": "room/server.mjs",
33
- "peertable-client": "room/client.mjs"
34
- },
35
- "files": [
36
- "room/server.mjs",
37
- "room/client.mjs",
38
- "room/Dockerfile",
39
- "skill/",
40
- "!skill/**/__pycache__/**",
41
- "README.ja.md"
42
- ],
43
- "engines": {
44
- "node": ">=20"
45
- },
46
- "dependencies": {
47
- "@modelcontextprotocol/sdk": "^1.0.0"
48
- }
49
- }
1
+ {
2
+ "name": "peertable",
3
+ "version": "0.4.2",
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
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": {
8
+ "name": "Quo",
9
+ "url": "https://kitepon.dev"
10
+ },
11
+ "homepage": "https://peertable.kitepon.dev",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/kitepon/peertable.git"
15
+ },
16
+ "bugs": "https://github.com/kitepon/peertable/issues",
17
+ "keywords": [
18
+ "claude-code",
19
+ "grok",
20
+ "multi-agent",
21
+ "mcp",
22
+ "ai-agents",
23
+ "collaboration",
24
+ "chatroom",
25
+ "channels"
26
+ ],
27
+ "scripts": {
28
+ "verify:release-commit": "node scripts/verify-release-commit.mjs",
29
+ "prepublishOnly": "node scripts/prepublish.mjs"
30
+ },
31
+ "bin": {
32
+ "peertable-room": "room/server.mjs",
33
+ "peertable-client": "room/client.mjs"
34
+ },
35
+ "files": [
36
+ "room/server.mjs",
37
+ "room/client.mjs",
38
+ "room/Dockerfile",
39
+ "skill/",
40
+ "!skill/**/__pycache__/**",
41
+ "README.ja.md"
42
+ ],
43
+ "engines": {
44
+ "node": ">=20"
45
+ },
46
+ "dependencies": {
47
+ "@modelcontextprotocol/sdk": "^1.0.0"
48
+ }
49
+ }
package/room/Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
- FROM node:22-alpine
2
- WORKDIR /app
3
- COPY server.mjs .
4
- ENV PEERTABLE_PORT=8790 PEERTABLE_DATA=/data
5
- EXPOSE 8790
6
- CMD ["node", "server.mjs"]
1
+ FROM node:22-alpine
2
+ WORKDIR /app
3
+ COPY server.mjs .
4
+ ENV PEERTABLE_PORT=8790 PEERTABLE_DATA=/data
5
+ EXPOSE 8790
6
+ CMD ["node", "server.mjs"]
package/room/client.mjs CHANGED
@@ -11,7 +11,7 @@ import { fileURLToPath } from 'node:url'
11
11
 
12
12
  // client.mjs 側のハードコード版数。package.json の version と一致していることを
13
13
  // diagnostics の version_consistency が見る(2 つの版数源の drift 検出。決定45)
14
- const MCP_VERSION = '0.4.0'
14
+ const MCP_VERSION = '0.4.2'
15
15
  const PKG_ROOT = join(dirname(fileURLToPath(import.meta.url)), '..')
16
16
 
17
17
  const USAGE = `usage:
@@ -241,6 +241,10 @@ async function runDiagnostics(asJson) {
241
241
  'scripts/teardown.sh',
242
242
  'scripts/external-pane.mjs',
243
243
  'scripts/launch-seat.sh',
244
+ 'scripts/tmux-at.bash',
245
+ 'scripts/tmux-socket.mjs',
246
+ 'scripts/seat-identity.mjs',
247
+ 'scripts/parent-watch.mjs',
244
248
  'scripts/seat-credential.mjs',
245
249
  'scripts/ensure-room-mcp.mjs',
246
250
  'scripts/leave-seat.sh',
@@ -250,6 +254,7 @@ async function runDiagnostics(asJson) {
250
254
  'scripts/make-plan-input.mjs',
251
255
  'scripts/parent-join.sh',
252
256
  'scripts/wakeup-bridge.mjs',
257
+ 'scripts/wakeup-delivery.mjs',
253
258
  'scripts/seat-status-bridge.mjs',
254
259
  // teardown の archive(=解散・既定)が呼ぶ。欠けるとログの写しが取れない
255
260
  'scripts/archive-room-log.py',