peertable 0.8.5 → 0.8.6

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.5",
3
+ "version": "0.8.6",
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
@@ -13,7 +13,7 @@ import { findModelsDoc, resolveSeatIdentity } from '../skill/scripts/resolve-sea
13
13
 
14
14
  // client.mjs 側のハードコード版数。package.json の version と一致していることを
15
15
  // diagnostics の version_consistency が見る(2 つの版数源の drift 検出。決定45)
16
- const MCP_VERSION = '0.8.5'
16
+ const MCP_VERSION = '0.8.6'
17
17
  const PKG_ROOT = join(dirname(fileURLToPath(import.meta.url)), '..')
18
18
 
19
19
  const USAGE = `usage:
@@ -7,4 +7,8 @@ if (mission) body.mission = mission
7
7
  return body
8
8
  }
9
9
  const [name, model, effort, harness, mission] = process.argv.slice(2)
10
- process.stdout.write(`${JSON.stringify(parentMember(name, model, effort, harness, mission))}\n`)
10
+ if (process.argv[1] && fileURLToPath(import.meta.url) === resolve(process.argv[1])) {
11
+ process.stdout.write(`${JSON.stringify(parentMember(name, model, effort, harness, mission))}\n`)
12
+ }
13
+ import { resolve } from 'node:path'
14
+ import { fileURLToPath } from 'node:url'