skalpel 2.0.20 → 2.0.22

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/cli/index.js CHANGED
@@ -62,7 +62,9 @@ var init_dispatcher = __esm({
62
62
  keepAliveTimeout: 1e4,
63
63
  keepAliveMaxTimeout: 6e4,
64
64
  connections: 100,
65
- pipelining: 1
65
+ pipelining: 1,
66
+ allowH2: false
67
+ // Force HTTP/1.1 to prevent GCP LB WebSocket downgrade
66
68
  });
67
69
  }
68
70
  });
@@ -1606,7 +1608,7 @@ function configureCodex(agent, proxyConfig, direct = false) {
1606
1608
  const oauth = validateCodexOAuth();
1607
1609
  if (!oauth.present) {
1608
1610
  process.stderr.write("OAuth not configured. Run: codex login\n");
1609
- process.stderr.write(" Then re-run: skalpel configure\n");
1611
+ process.stderr.write(" Then re-run: npx skalpel\n");
1610
1612
  process.stderr.write(" (Skalpel will fall back to OPENAI_API_KEY env var if OAuth missing.)\n");
1611
1613
  }
1612
1614
  }