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.
- package/dist/spawn.js +3 -1
- 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
|
-
|
|
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 } : {}),
|