@elvatis_com/openclaw-cli-bridge-elvatis 1.6.1 → 1.6.2
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/README.md +17 -1
- package/SKILL.md +4 -2
- package/index.ts +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> OpenClaw plugin that bridges locally installed AI CLIs (Codex, Gemini, Claude Code) as model providers — with slash commands for instant model switching, restore, health testing, and model listing.
|
|
4
4
|
|
|
5
|
-
**Current version:** `1.6.
|
|
5
|
+
**Current version:** `1.6.2`
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -360,6 +360,22 @@ npm test # vitest run (83 tests)
|
|
|
360
360
|
|
|
361
361
|
## Changelog
|
|
362
362
|
|
|
363
|
+
### v1.6.2
|
|
364
|
+
- **docs:** Add missing changelog entries (v1.5.1, v1.6.0, v1.6.1), fix /cli-codex54 command name in SKILL.md, add startup re-login alert description to SKILL.md.
|
|
365
|
+
|
|
366
|
+
### v1.6.1
|
|
367
|
+
- **feat:** WhatsApp re-login alerts on startup. After each gateway restart, the session restore loop collects any providers that failed to restore (cookies expired) and sends a single batched WhatsApp notification with the exact `/xxx-login` commands needed. No credential storage — remains fully 2FA-safe.
|
|
368
|
+
|
|
369
|
+
### v1.6.0
|
|
370
|
+
- **feat:** Persistent Chromium profiles for all 4 web providers (Grok, Gemini, Claude.ai, ChatGPT). Browser sessions now survive gateway restarts — cookies are stored in `~/.openclaw/{grok,gemini,claude,chatgpt}-profile/` and restored automatically on startup.
|
|
371
|
+
- **feat:** Re-added `/claude-login`, `/claude-status`, `/claude-logout`, `/chatgpt-login`, `/chatgpt-status`, `/chatgpt-logout` commands with full persistent profile support.
|
|
372
|
+
- **feat:** `/bridge-status` now shows all 4 providers with session state and cookie expiry at a glance.
|
|
373
|
+
- **fix:** Startup restore guard (`_startupRestoreDone`) prevents duplicate browser launches on hot-reloads (SIGUSR1).
|
|
374
|
+
|
|
375
|
+
### v1.5.1
|
|
376
|
+
- **fix:** Hardcoded plugin version `1.3.1` in plugin object updated to `1.5.1`.
|
|
377
|
+
- **docs:** Added `CONTRIBUTING.md` with release checklist and smoketest workflow.
|
|
378
|
+
|
|
363
379
|
### v1.5.0
|
|
364
380
|
- **refactor:** Removed `/claude-login`, `/claude-logout`, `/claude-status`, `/chatgpt-login`, `/chatgpt-logout`, `/chatgpt-status` commands and all related browser automation code. Claude is fully covered by `cli-claude/*` via CLI proxy, ChatGPT by `openai-codex` + `copilot-proxy`.
|
|
365
381
|
- **refactor:** Removed `web-claude/*` and `web-chatgpt/*` proxy routes and model entries from proxy server.
|
package/SKILL.md
CHANGED
|
@@ -39,7 +39,7 @@ Six instant model-switch commands (authorized senders only):
|
|
|
39
39
|
| `/cli-gemini-flash` | `vllm/cli-gemini/gemini-2.5-flash` |
|
|
40
40
|
| `/cli-gemini3` | `vllm/cli-gemini/gemini-3-pro` |
|
|
41
41
|
| `/cli-codex` | `openai-codex/gpt-5.3-codex` |
|
|
42
|
-
| `/cli-
|
|
42
|
+
| `/cli-codex54` | `openai-codex/gpt-5.4` |
|
|
43
43
|
| `/cli-back` | Restore previous model |
|
|
44
44
|
| `/cli-test [model]` | Health check (no model switch) |
|
|
45
45
|
|
|
@@ -54,6 +54,8 @@ Persistent Chromium profiles for 4 web providers (no API key needed):
|
|
|
54
54
|
|
|
55
55
|
Sessions survive gateway restarts. `/bridge-status` shows all 4 at a glance.
|
|
56
56
|
|
|
57
|
+
On gateway restart, if any session has expired, a **WhatsApp alert** is sent automatically with the exact `/xxx-login` commands needed — no guessing required.
|
|
58
|
+
|
|
57
59
|
## Setup
|
|
58
60
|
|
|
59
61
|
1. Enable plugin + restart gateway
|
|
@@ -62,4 +64,4 @@ Sessions survive gateway restarts. `/bridge-status` shows all 4 at a glance.
|
|
|
62
64
|
|
|
63
65
|
See `README.md` for full configuration reference and architecture diagram.
|
|
64
66
|
|
|
65
|
-
**Version:** 1.6.
|
|
67
|
+
**Version:** 1.6.2
|
package/index.ts
CHANGED
|
@@ -854,7 +854,7 @@ function proxyTestRequest(
|
|
|
854
854
|
const plugin = {
|
|
855
855
|
id: "openclaw-cli-bridge-elvatis",
|
|
856
856
|
name: "OpenClaw CLI Bridge",
|
|
857
|
-
version: "1.6.
|
|
857
|
+
version: "1.6.2",
|
|
858
858
|
description:
|
|
859
859
|
"Phase 1: openai-codex auth bridge. " +
|
|
860
860
|
"Phase 2: HTTP proxy for gemini/claude CLIs. " +
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "openclaw-cli-bridge-elvatis",
|
|
3
3
|
"name": "OpenClaw CLI Bridge",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Phase 1: openai-codex auth bridge. Phase 2: local HTTP proxy routing model calls through gemini/claude CLIs (vllm provider).",
|
|
7
7
|
"providers": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elvatis_com/openclaw-cli-bridge-elvatis",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
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": {
|