@elvatis_com/openclaw-cli-bridge-elvatis 1.8.0 → 1.8.1

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 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.8.0`
5
+ **Current version:** `1.8.1`
6
6
 
7
7
  ---
8
8
 
@@ -368,6 +368,9 @@ npm test # vitest run (83 tests)
368
368
 
369
369
  ## Changelog
370
370
 
371
+ ### v1.8.1
372
+ - **fix:** `--now` flag now works when followed by additional text (e.g. `/cli-bitnet --now hello`) — was using `===` instead of `startsWith`.
373
+
371
374
  ### v1.8.0
372
375
  - **feat:** BitNet local inference — `local-bitnet/bitnet-2b` routes to llama-server on 127.0.0.1:8082. No API key, no internet, pure CPU inference (2.87 tok/s on i7-6700K). Use `/cli-bitnet` to switch.
373
376
  - **feat:** `/bridge-status` shows BitNet server health as 5th provider.
package/SKILL.md CHANGED
@@ -68,4 +68,4 @@ On gateway restart, if any session has expired, a **WhatsApp alert** is sent aut
68
68
 
69
69
  See `README.md` for full configuration reference and architecture diagram.
70
70
 
71
- **Version:** 1.8.0
71
+ **Version:** 1.8.1
package/index.ts CHANGED
@@ -939,7 +939,7 @@ function proxyTestRequest(
939
939
  const plugin = {
940
940
  id: "openclaw-cli-bridge-elvatis",
941
941
  name: "OpenClaw CLI Bridge",
942
- version: "1.8.0",
942
+ version: "1.8.1",
943
943
  description:
944
944
  "Phase 1: openai-codex auth bridge. " +
945
945
  "Phase 2: HTTP proxy for gemini/claude CLIs. " +
@@ -1408,7 +1408,7 @@ const plugin = {
1408
1408
  acceptsArgs: true,
1409
1409
  requireAuth: false,
1410
1410
  handler: async (ctx: PluginCommandContext): Promise<PluginCommandResult> => {
1411
- const forceNow = (ctx.args ?? "").trim().toLowerCase() === "--now";
1411
+ const forceNow = (ctx.args ?? "").trim().toLowerCase().startsWith("--now");
1412
1412
  api.logger.info(`[cli-bridge] /${name} by ${ctx.senderId ?? "?"} forceNow=${forceNow}`);
1413
1413
  return switchModel(api, model, label, forceNow);
1414
1414
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "openclaw-cli-bridge-elvatis",
3
3
  "name": "OpenClaw CLI Bridge",
4
- "version": "1.8.0",
4
+ "version": "1.8.1",
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.8.0",
3
+ "version": "1.8.1",
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": {