claude-tempo 0.3.0-beta.3 → 0.3.0-beta.4

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 (2) hide show
  1. package/dist/spawn.js +3 -1
  2. package/package.json +1 -1
package/dist/spawn.js CHANGED
@@ -242,8 +242,10 @@ function spawnCopilotBridge(opts) {
242
242
  ...process.env,
243
243
  [config_1.ENV.ENSEMBLE]: opts.ensemble,
244
244
  [config_1.ENV.BRIDGE_NAME]: opts.name,
245
+ [config_1.ENV.PLAYER_NAME]: '', // Clear parent's player name so child uses BRIDGE_NAME
246
+ [config_1.ENV.BRIDGE_MODE]: '', // Clear parent's bridge mode
245
247
  [config_1.ENV.TEMPORAL_ADDRESS]: opts.temporalAddress,
246
- ...(opts.isConductor ? { [config_1.ENV.CONDUCTOR]: 'true' } : {}),
248
+ [config_1.ENV.CONDUCTOR]: opts.isConductor ? 'true' : '',
247
249
  // Forward Temporal connection settings so child processes can connect
248
250
  ...(opts.temporalNamespace ? { [config_1.ENV.TEMPORAL_NAMESPACE]: opts.temporalNamespace } : {}),
249
251
  ...(opts.temporalApiKey ? { [config_1.ENV.TEMPORAL_API_KEY]: opts.temporalApiKey } : {}),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-tempo",
3
- "version": "0.3.0-beta.3",
3
+ "version": "0.3.0-beta.4",
4
4
  "description": "MCP server for multi-session Claude Code coordination via Temporal",
5
5
  "repository": {
6
6
  "type": "git",