@duheso/zerocli 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/dist/cli.mjs +17 -43
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -119224,7 +119224,7 @@ function buildProviderInfoLines() {
119224
119224
  const sLen = ` ● ${sL} ${sReady}`.length;
119225
119225
  out.push(boxRow(sRow, W2, sLen));
119226
119226
  out.push(`${rgb(...BORDER)}╚${"═".repeat(W2 - 2)}╝${RESET}`);
119227
- out.push(` ${DIM}${rgb(...DIMCOL)}zero ${RESET}${rgb(...ACCENT)}v${"1.0.0"}${RESET}`);
119227
+ out.push(` ${DIM}${rgb(...DIMCOL)}zero ${RESET}${rgb(...ACCENT)}v${"1.0.1"}${RESET}`);
119228
119228
  return out;
119229
119229
  }
119230
119230
  function printStartupScreen() {}
@@ -359780,38 +359780,12 @@ function CouncilResultView({ result }) {
359780
359780
  }
359781
359781
  function renderCouncilToolUse(input) {
359782
359782
  const promptText = input.prompt ?? "";
359783
- return /* @__PURE__ */ jsx_runtime140.jsxs(ThemedBox_default, {
359784
- flexDirection: "column",
359785
- marginTop: 1,
359786
- children: [
359787
- /* @__PURE__ */ jsx_runtime140.jsx(ThemedText, {
359788
- bold: true,
359789
- color: "ansi:yellow",
359790
- children: "⚖️ Invocando o Tribunal do Conselho..."
359791
- }),
359792
- /* @__PURE__ */ jsx_runtime140.jsx(ThemedBox_default, {
359793
- marginLeft: 2,
359794
- children: /* @__PURE__ */ jsx_runtime140.jsxs(ThemedText, {
359795
- dimColor: true,
359796
- children: [
359797
- "Questão: ",
359798
- promptText.substring(0, 100),
359799
- promptText.length > 100 ? "..." : ""
359800
- ]
359801
- })
359802
- }),
359803
- input.pack && input.pack !== "default" && /* @__PURE__ */ jsx_runtime140.jsx(ThemedBox_default, {
359804
- marginLeft: 2,
359805
- children: /* @__PURE__ */ jsx_runtime140.jsxs(ThemedText, {
359806
- dimColor: true,
359807
- children: [
359808
- "Pack: ",
359809
- input.pack
359810
- ]
359811
- })
359812
- })
359813
- ]
359814
- });
359783
+ const truncated = promptText.substring(0, 80) + (promptText.length > 80 ? "..." : "");
359784
+ const parts = [`"${truncated}"`];
359785
+ if (input.pack && input.pack !== "default") {
359786
+ parts.push(`pack: ${input.pack}`);
359787
+ }
359788
+ return parts.join(", ");
359815
359789
  }
359816
359790
  function renderCouncilError(error42) {
359817
359791
  return /* @__PURE__ */ jsx_runtime140.jsx(ThemedBox_default, {
@@ -378070,7 +378044,7 @@ function getAnthropicEnvMetadata() {
378070
378044
  function getBuildAgeMinutes() {
378071
378045
  if (false)
378072
378046
  ;
378073
- const buildTime = new Date("2026-05-21T19:13:29.465Z").getTime();
378047
+ const buildTime = new Date("2026-05-21T19:25:54.034Z").getTime();
378074
378048
  if (isNaN(buildTime))
378075
378049
  return;
378076
378050
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -420094,7 +420068,7 @@ function buildPrimarySection() {
420094
420068
  });
420095
420069
  return [{
420096
420070
  label: "Version",
420097
- value: "1.0.0"
420071
+ value: "1.0.1"
420098
420072
  }, {
420099
420073
  label: "Session name",
420100
420074
  value: nameValue
@@ -488397,7 +488371,7 @@ var init_bridge_kick = __esm(() => {
488397
488371
  var call60 = async () => {
488398
488372
  return {
488399
488373
  type: "text",
488400
- value: `${"1.0.0"} (built ${"2026-05-21T19:13:29.465Z"})`
488374
+ value: `${"1.0.0"} (built ${"2026-05-21T19:25:54.034Z"})`
488401
488375
  };
488402
488376
  }, version2, version_default;
488403
488377
  var init_version = __esm(() => {
@@ -564420,7 +564394,7 @@ function WelcomeV2() {
564420
564394
  dimColor: true,
564421
564395
  children: [
564422
564396
  "v",
564423
- "1.0.0",
564397
+ "1.0.1",
564424
564398
  " "
564425
564399
  ]
564426
564400
  })
@@ -564654,7 +564628,7 @@ function WelcomeV2() {
564654
564628
  dimColor: true,
564655
564629
  children: [
564656
564630
  "v",
564657
- "1.0.0",
564631
+ "1.0.1",
564658
564632
  " "
564659
564633
  ]
564660
564634
  })
@@ -564901,7 +564875,7 @@ function AppleTerminalWelcomeV2(t0) {
564901
564875
  dimColor: true,
564902
564876
  children: [
564903
564877
  "v",
564904
- "1.0.0",
564878
+ "1.0.1",
564905
564879
  " "
564906
564880
  ]
564907
564881
  });
@@ -565174,7 +565148,7 @@ function AppleTerminalWelcomeV2(t0) {
565174
565148
  dimColor: true,
565175
565149
  children: [
565176
565150
  "v",
565177
- "1.0.0",
565151
+ "1.0.1",
565178
565152
  " "
565179
565153
  ]
565180
565154
  });
@@ -585419,7 +585393,7 @@ Usage: claude --remote "your task description"`, () => gracefulShutdown(1));
585419
585393
  pendingHookMessages
585420
585394
  }, renderAndRun);
585421
585395
  }
585422
- }).version("1.0.0", "-v, --version", "Output the version number");
585396
+ }).version("1.0.1", "-v, --version", "Output the version number");
585423
585397
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
585424
585398
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
585425
585399
  if (canUserConfigureAdvisor()) {
@@ -586085,7 +586059,7 @@ if (false) {}
586085
586059
  async function main2() {
586086
586060
  const args = process.argv.slice(2);
586087
586061
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
586088
- console.log(`${"1.0.0"} (ZeroCLI)`);
586062
+ console.log(`${"1.0.1"} (ZeroCLI)`);
586089
586063
  return;
586090
586064
  }
586091
586065
  if (args.includes("--provider")) {
@@ -586227,4 +586201,4 @@ async function main2() {
586227
586201
  }
586228
586202
  main2();
586229
586203
 
586230
- //# debugId=031117298F15084964756E2164756E21
586204
+ //# debugId=6DF6B4CA1B9C6B1264756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duheso/zerocli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Zero CLI to any LLM — OpenAI, Gemini, DeepSeek, Ollama, and 200+ models",
5
5
  "type": "module",
6
6
  "bin": {