@duheso/zerocli 1.1.3 → 1.1.4

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.
Files changed (2) hide show
  1. package/dist/cli.mjs +23 -19
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -119226,7 +119226,7 @@ function buildProviderInfoLines() {
119226
119226
  const sLen = ` ● ${sL} ${sReady}`.length;
119227
119227
  out.push(boxRow(sRow, W2, sLen));
119228
119228
  out.push(`${rgb(...BORDER)}╚${"═".repeat(W2 - 2)}╝${RESET}`);
119229
- out.push(` ${DIM}${rgb(...DIMCOL)}zero ${RESET}${rgb(...ACCENT)}v${"1.1.3"}${RESET}`);
119229
+ out.push(` ${DIM}${rgb(...DIMCOL)}zero ${RESET}${rgb(...ACCENT)}v${"1.1.4"}${RESET}`);
119230
119230
  return out;
119231
119231
  }
119232
119232
  function printStartupScreen() {}
@@ -389306,17 +389306,21 @@ var init_WindowsControlTool = __esm(() => {
389306
389306
  if (input.action === "screenshot" && result.success && result.data) {
389307
389307
  const d = result.data;
389308
389308
  return {
389309
- type: "screenshot",
389310
- imageBase64: d.imageBase64,
389311
- width: d.width,
389312
- height: d.height,
389313
- cursor: d.cursor,
389314
- message: result.message || `Screenshot ${d.width}x${d.height}`
389309
+ data: {
389310
+ type: "screenshot",
389311
+ imageBase64: d.imageBase64,
389312
+ width: d.width,
389313
+ height: d.height,
389314
+ cursor: d.cursor,
389315
+ message: result.message || `Screenshot ${d.width}x${d.height}`
389316
+ }
389315
389317
  };
389316
389318
  }
389317
389319
  return {
389318
- type: "text",
389319
- text: JSON.stringify(result, null, 2)
389320
+ data: {
389321
+ type: "text",
389322
+ text: JSON.stringify(result, null, 2)
389323
+ }
389320
389324
  };
389321
389325
  },
389322
389326
  mapToolResultToToolResultBlockParam(data, toolUseID) {
@@ -402276,7 +402280,7 @@ function getAnthropicEnvMetadata() {
402276
402280
  function getBuildAgeMinutes() {
402277
402281
  if (false)
402278
402282
  ;
402279
- const buildTime = new Date("2026-05-23T19:24:40.871Z").getTime();
402283
+ const buildTime = new Date("2026-05-23T19:32:12.653Z").getTime();
402280
402284
  if (isNaN(buildTime))
402281
402285
  return;
402282
402286
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -444300,7 +444304,7 @@ function buildPrimarySection() {
444300
444304
  });
444301
444305
  return [{
444302
444306
  label: "Version",
444303
- value: "1.1.3"
444307
+ value: "1.1.4"
444304
444308
  }, {
444305
444309
  label: "Session name",
444306
444310
  value: nameValue
@@ -512646,7 +512650,7 @@ var init_bridge_kick = __esm(() => {
512646
512650
  var call60 = async () => {
512647
512651
  return {
512648
512652
  type: "text",
512649
- value: `${"1.1.3"} (built ${"2026-05-23T19:24:40.871Z"})`
512653
+ value: `${"1.1.3"} (built ${"2026-05-23T19:32:12.653Z"})`
512650
512654
  };
512651
512655
  }, version2, version_default;
512652
512656
  var init_version = __esm(() => {
@@ -588670,7 +588674,7 @@ function WelcomeV2() {
588670
588674
  dimColor: true,
588671
588675
  children: [
588672
588676
  "v",
588673
- "1.1.3",
588677
+ "1.1.4",
588674
588678
  " "
588675
588679
  ]
588676
588680
  })
@@ -588904,7 +588908,7 @@ function WelcomeV2() {
588904
588908
  dimColor: true,
588905
588909
  children: [
588906
588910
  "v",
588907
- "1.1.3",
588911
+ "1.1.4",
588908
588912
  " "
588909
588913
  ]
588910
588914
  })
@@ -589151,7 +589155,7 @@ function AppleTerminalWelcomeV2(t0) {
589151
589155
  dimColor: true,
589152
589156
  children: [
589153
589157
  "v",
589154
- "1.1.3",
589158
+ "1.1.4",
589155
589159
  " "
589156
589160
  ]
589157
589161
  });
@@ -589424,7 +589428,7 @@ function AppleTerminalWelcomeV2(t0) {
589424
589428
  dimColor: true,
589425
589429
  children: [
589426
589430
  "v",
589427
- "1.1.3",
589431
+ "1.1.4",
589428
589432
  " "
589429
589433
  ]
589430
589434
  });
@@ -609669,7 +609673,7 @@ Usage: claude --remote "your task description"`, () => gracefulShutdown(1));
609669
609673
  pendingHookMessages
609670
609674
  }, renderAndRun);
609671
609675
  }
609672
- }).version("1.1.3", "-v, --version", "Output the version number");
609676
+ }).version("1.1.4", "-v, --version", "Output the version number");
609673
609677
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
609674
609678
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
609675
609679
  if (canUserConfigureAdvisor()) {
@@ -610335,7 +610339,7 @@ if (false) {}
610335
610339
  async function main2() {
610336
610340
  const args = process.argv.slice(2);
610337
610341
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
610338
- console.log(`${"1.1.3"} (ZeroCLI)`);
610342
+ console.log(`${"1.1.4"} (ZeroCLI)`);
610339
610343
  return;
610340
610344
  }
610341
610345
  if (args.includes("--provider")) {
@@ -610477,4 +610481,4 @@ async function main2() {
610477
610481
  }
610478
610482
  main2();
610479
610483
 
610480
- //# debugId=167C45783D090C3E64756E2164756E21
610484
+ //# debugId=3D3AFCEAE71526B464756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duheso/zerocli",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Zero CLI to any LLM \u2014 OpenAI, Gemini, DeepSeek, Ollama, and 200+ models",
5
5
  "type": "module",
6
6
  "bin": {