colana 1.0.0-beta.52 → 1.0.0-beta.53

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": "colana",
3
- "version": "1.0.0-beta.52",
3
+ "version": "1.0.0-beta.53",
4
4
  "description": "Agent-First. Multiplied. Multi-agent command center for AI coding agents.",
5
5
  "type": "module",
6
6
  "main": "server/index.js",
@@ -453,6 +453,9 @@ async function ensureOpenClawGateway(port) {
453
453
  for (const v of providerKeyVars) {
454
454
  if (process.env[v]) providerKeys[v] = process.env[v];
455
455
  }
456
+ // Log which provider keys are being passed (redacted) for debugging
457
+ const keyNames = Object.keys(providerKeys);
458
+ console.log(`[pty-manager] Gateway env: AUTH_TOKEN=yes, provider keys=[${keyNames.join(', ') || 'NONE'}]`);
456
459
 
457
460
  const gwEnv = buildGwEnv({
458
461
  GOG_KEYRING_PASSWORD: process.env.GOG_KEYRING_PASSWORD || config.deriveGogKeyringPassword(),