@elvatis_com/openclaw-cli-bridge-elvatis 1.3.2 → 1.3.3

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/index.ts CHANGED
@@ -746,14 +746,10 @@ const plugin = {
746
746
  const codexAuthPath = cfg.codexAuthPath ?? DEFAULT_CODEX_AUTH_PATH;
747
747
  const grokSessionPath = cfg.grokSessionPath ?? DEFAULT_SESSION_PATH;
748
748
 
749
- // ── Grok session restore (non-blocking) ───────────────────────────────────
750
- void tryRestoreGrokSession(grokSessionPath, (msg) => api.logger.info(msg));
751
-
752
- // ── Auto-connect all browser providers on startup (non-blocking) ──────────
753
- void (async () => {
754
- await new Promise(r => setTimeout(r, 3000)); // wait for proxy to start
755
- await ensureAllProviderContexts((msg) => api.logger.info(msg));
756
- })();
749
+ // Grok session restore on startup REMOVED — on-demand only via /grok-login.
750
+
751
+ // Auto-connect on startup REMOVED — browsers are launched on-demand via /xxx-login only.
752
+ // Spawning 4 persistent Chromium contexts at startup caused OOM under load.
757
753
 
758
754
  // ── Phase 1: openai-codex auth bridge ─────────────────────────────────────
759
755
  if (enableCodex) {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "openclaw-cli-bridge-elvatis",
3
3
  "name": "OpenClaw CLI Bridge",
4
- "version": "1.3.2",
4
+ "version": "1.3.3",
5
5
  "description": "Phase 1: openai-codex auth bridge. Phase 2: local HTTP proxy routing model calls through gemini/claude CLIs (vllm provider).",
6
6
  "providers": [
7
7
  "openai-codex"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elvatis_com/openclaw-cli-bridge-elvatis",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "Bridges gemini, claude, and codex CLI tools as OpenClaw model providers. Reads existing CLI auth without re-login.",
5
5
  "type": "module",
6
6
  "openclaw": {