jinzd-ai-cli 0.4.175 → 0.4.177

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.
@@ -1,9 +1,9 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  ConfigManager
4
- } from "./chunk-IILP3TAQ.js";
4
+ } from "./chunk-FREVMRQ6.js";
5
5
  import "./chunk-TZQHYZKT.js";
6
- import "./chunk-2VQC6W5H.js";
6
+ import "./chunk-BS33F4AI.js";
7
7
  import "./chunk-PDX44BCA.js";
8
8
 
9
9
  // src/cli/batch.ts
@@ -6,7 +6,7 @@ import { platform } from "os";
6
6
  import chalk from "chalk";
7
7
 
8
8
  // src/core/constants.ts
9
- var VERSION = "0.4.175";
9
+ var VERSION = "0.4.177";
10
10
  var APP_NAME = "ai-cli";
11
11
  var CONFIG_DIR_NAME = ".aicli";
12
12
  var CONFIG_FILE_NAME = "config.json";
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  CONFIG_DIR_NAME
4
- } from "./chunk-2VQC6W5H.js";
4
+ } from "./chunk-BS33F4AI.js";
5
5
 
6
6
  // src/diagnostics/tool-stats.ts
7
7
  import { existsSync, readFileSync, writeFileSync, mkdirSync, renameSync } from "fs";
@@ -5,10 +5,10 @@ import {
5
5
  } from "./chunk-HDSKW7Q3.js";
6
6
  import {
7
7
  runTestsTool
8
- } from "./chunk-BR7HYO64.js";
8
+ } from "./chunk-GWTCIEDB.js";
9
9
  import {
10
10
  runTool
11
- } from "./chunk-Z4P4LVQV.js";
11
+ } from "./chunk-5JACO5OK.js";
12
12
  import {
13
13
  getDangerLevel,
14
14
  isFileWriteTool
@@ -25,7 +25,7 @@ import {
25
25
  SUBAGENT_ALLOWED_TOOLS,
26
26
  SUBAGENT_DEFAULT_MAX_ROUNDS,
27
27
  SUBAGENT_MAX_ROUNDS_LIMIT
28
- } from "./chunk-2VQC6W5H.js";
28
+ } from "./chunk-BS33F4AI.js";
29
29
  import {
30
30
  fileCheckpoints
31
31
  } from "./chunk-4BKXL7SM.js";
@@ -3269,6 +3269,38 @@ function extractDescription(html) {
3269
3269
  return m ? m[1].trim() : "";
3270
3270
  }
3271
3271
  var MAX_OUTPUT = 16e3;
3272
+ var MAX_BODY_BYTES = 2e6;
3273
+ async function readBodyCapped(resp, maxBytes) {
3274
+ const body = resp.body;
3275
+ if (!body) {
3276
+ const buf = new Uint8Array(await resp.arrayBuffer());
3277
+ return buf.length > maxBytes ? buf.slice(0, maxBytes) : buf;
3278
+ }
3279
+ const reader = body.getReader();
3280
+ const chunks = [];
3281
+ let total = 0;
3282
+ while (total < maxBytes) {
3283
+ const { done, value } = await reader.read();
3284
+ if (done) break;
3285
+ chunks.push(value);
3286
+ total += value.length;
3287
+ }
3288
+ if (total >= maxBytes) {
3289
+ try {
3290
+ await reader.cancel();
3291
+ } catch {
3292
+ }
3293
+ }
3294
+ const out = new Uint8Array(Math.min(total, maxBytes));
3295
+ let offset = 0;
3296
+ for (const c of chunks) {
3297
+ if (offset >= out.length) break;
3298
+ const take = Math.min(c.length, out.length - offset);
3299
+ out.set(take === c.length ? c : c.subarray(0, take), offset);
3300
+ offset += take;
3301
+ }
3302
+ return out;
3303
+ }
3272
3304
  function parseIpPart(s) {
3273
3305
  if (/^0x[0-9a-f]+$/i.test(s)) return parseInt(s, 16);
3274
3306
  if (/^0[0-7]+$/.test(s)) return parseInt(s, 8);
@@ -3439,15 +3471,15 @@ var webFetchTool = {
3439
3471
  resp = r;
3440
3472
  break;
3441
3473
  }
3442
- clearTimeout(timeoutId);
3443
3474
  if (!resp) throw new NetworkError(`Too many redirects (>${MAX_REDIRECTS}): ${url}`);
3444
3475
  finalUrl = currentUrl;
3445
3476
  contentType = resp.headers.get("content-type") ?? "";
3446
3477
  if (!resp.ok) {
3447
3478
  throw new NetworkError(`HTTP ${resp.status} ${resp.statusText}`, resp.status);
3448
3479
  }
3449
- const buf = await resp.arrayBuffer();
3450
- rawHtml = new TextDecoder("utf-8", { fatal: false }).decode(buf.slice(0, 2e6));
3480
+ const bodyBytes = await readBodyCapped(resp, MAX_BODY_BYTES);
3481
+ clearTimeout(timeoutId);
3482
+ rawHtml = new TextDecoder("utf-8", { fatal: false }).decode(bodyBytes);
3451
3483
  } catch (err) {
3452
3484
  clearTimeout(timeoutId);
3453
3485
  if (err.name === "AbortError") {
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  // src/core/constants.ts
4
- var VERSION = "0.4.175";
4
+ var VERSION = "0.4.177";
5
5
  var APP_NAME = "ai-cli";
6
6
  var CONFIG_DIR_NAME = ".aicli";
7
7
  var CONFIG_FILE_NAME = "config.json";
@@ -8,7 +8,7 @@ import {
8
8
  CONFIG_FILE_NAME,
9
9
  HISTORY_DIR_NAME,
10
10
  PLUGINS_DIR_NAME
11
- } from "./chunk-2VQC6W5H.js";
11
+ } from "./chunk-BS33F4AI.js";
12
12
 
13
13
  // src/config/config-manager.ts
14
14
  import { readFileSync, writeFileSync, existsSync, mkdirSync } from "fs";
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  TEST_TIMEOUT
4
- } from "./chunk-2VQC6W5H.js";
4
+ } from "./chunk-BS33F4AI.js";
5
5
 
6
6
  // src/tools/builtin/run-tests.ts
7
7
  import { execSync, spawnSync } from "child_process";
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  truncateForPersist
4
- } from "./chunk-3TDOXLFG.js";
4
+ } from "./chunk-6T25OYRW.js";
5
5
  import {
6
6
  APP_NAME,
7
7
  CONFIG_DIR_NAME,
@@ -11,7 +11,7 @@ import {
11
11
  MCP_PROTOCOL_VERSION,
12
12
  MCP_TOOL_PREFIX,
13
13
  VERSION
14
- } from "./chunk-2VQC6W5H.js";
14
+ } from "./chunk-BS33F4AI.js";
15
15
 
16
16
  // src/mcp/client.ts
17
17
  import { spawn } from "child_process";
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  CONFIG_DIR_NAME,
4
4
  VERSION
5
- } from "./chunk-2VQC6W5H.js";
5
+ } from "./chunk-BS33F4AI.js";
6
6
 
7
7
  // src/diagnostics/crash-log.ts
8
8
  import {
@@ -10,11 +10,11 @@ import {
10
10
  import "./chunk-HIU2SH4V.js";
11
11
  import {
12
12
  ConfigManager
13
- } from "./chunk-IILP3TAQ.js";
13
+ } from "./chunk-FREVMRQ6.js";
14
14
  import "./chunk-TZQHYZKT.js";
15
15
  import {
16
16
  VERSION
17
- } from "./chunk-2VQC6W5H.js";
17
+ } from "./chunk-BS33F4AI.js";
18
18
  import "./chunk-PDX44BCA.js";
19
19
 
20
20
  // src/cli/ci.ts
@@ -36,7 +36,7 @@ import {
36
36
  TEST_TIMEOUT,
37
37
  VERSION,
38
38
  buildUserIdentityPrompt
39
- } from "./chunk-2VQC6W5H.js";
39
+ } from "./chunk-BS33F4AI.js";
40
40
  import "./chunk-PDX44BCA.js";
41
41
  export {
42
42
  AGENTIC_BEHAVIOR_GUIDELINE,
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  getConfigDirUsage,
4
4
  listRecentCrashes
5
- } from "./chunk-7XTNI3XG.js";
5
+ } from "./chunk-QMQZ6IWU.js";
6
6
  import {
7
7
  ProviderRegistry
8
8
  } from "./chunk-2TG4KU3U.js";
@@ -11,17 +11,17 @@ import {
11
11
  getTopFailingTools,
12
12
  getTopUsedTools,
13
13
  resetStats
14
- } from "./chunk-Z4P4LVQV.js";
14
+ } from "./chunk-5JACO5OK.js";
15
15
  import "./chunk-HIU2SH4V.js";
16
16
  import {
17
17
  ConfigManager
18
- } from "./chunk-IILP3TAQ.js";
18
+ } from "./chunk-FREVMRQ6.js";
19
19
  import "./chunk-TZQHYZKT.js";
20
20
  import {
21
21
  DEV_STATE_FILE_NAME,
22
22
  MEMORY_FILE_NAME,
23
23
  VERSION
24
- } from "./chunk-2VQC6W5H.js";
24
+ } from "./chunk-BS33F4AI.js";
25
25
  import "./chunk-PDX44BCA.js";
26
26
 
27
27
  // src/diagnostics/doctor-cli.ts
@@ -36,7 +36,7 @@ import {
36
36
  VERSION,
37
37
  buildUserIdentityPrompt,
38
38
  runTestsTool
39
- } from "./chunk-HOKHM3GP.js";
39
+ } from "./chunk-4ZV2XIGC.js";
40
40
  import {
41
41
  hasSemanticIndex,
42
42
  semanticSearch
@@ -7237,6 +7237,38 @@ function extractDescription(html) {
7237
7237
  return m ? m[1].trim() : "";
7238
7238
  }
7239
7239
  var MAX_OUTPUT = 16e3;
7240
+ var MAX_BODY_BYTES = 2e6;
7241
+ async function readBodyCapped(resp, maxBytes) {
7242
+ const body = resp.body;
7243
+ if (!body) {
7244
+ const buf = new Uint8Array(await resp.arrayBuffer());
7245
+ return buf.length > maxBytes ? buf.slice(0, maxBytes) : buf;
7246
+ }
7247
+ const reader = body.getReader();
7248
+ const chunks = [];
7249
+ let total = 0;
7250
+ while (total < maxBytes) {
7251
+ const { done, value } = await reader.read();
7252
+ if (done) break;
7253
+ chunks.push(value);
7254
+ total += value.length;
7255
+ }
7256
+ if (total >= maxBytes) {
7257
+ try {
7258
+ await reader.cancel();
7259
+ } catch {
7260
+ }
7261
+ }
7262
+ const out = new Uint8Array(Math.min(total, maxBytes));
7263
+ let offset = 0;
7264
+ for (const c of chunks) {
7265
+ if (offset >= out.length) break;
7266
+ const take = Math.min(c.length, out.length - offset);
7267
+ out.set(take === c.length ? c : c.subarray(0, take), offset);
7268
+ offset += take;
7269
+ }
7270
+ return out;
7271
+ }
7240
7272
  function parseIpPart(s) {
7241
7273
  if (/^0x[0-9a-f]+$/i.test(s)) return parseInt(s, 16);
7242
7274
  if (/^0[0-7]+$/.test(s)) return parseInt(s, 8);
@@ -7407,15 +7439,15 @@ var webFetchTool = {
7407
7439
  resp = r;
7408
7440
  break;
7409
7441
  }
7410
- clearTimeout(timeoutId);
7411
7442
  if (!resp) throw new NetworkError(`Too many redirects (>${MAX_REDIRECTS}): ${url}`);
7412
7443
  finalUrl = currentUrl;
7413
7444
  contentType = resp.headers.get("content-type") ?? "";
7414
7445
  if (!resp.ok) {
7415
7446
  throw new NetworkError(`HTTP ${resp.status} ${resp.statusText}`, resp.status);
7416
7447
  }
7417
- const buf = await resp.arrayBuffer();
7418
- rawHtml = new TextDecoder("utf-8", { fatal: false }).decode(buf.slice(0, 2e6));
7448
+ const bodyBytes = await readBodyCapped(resp, MAX_BODY_BYTES);
7449
+ clearTimeout(timeoutId);
7450
+ rawHtml = new TextDecoder("utf-8", { fatal: false }).decode(bodyBytes);
7419
7451
  } catch (err) {
7420
7452
  clearTimeout(timeoutId);
7421
7453
  if (err.name === "AbortError") {
@@ -13606,7 +13638,7 @@ ${undoResults.map((r) => ` \u2022 ${r}`).join("\n")}` });
13606
13638
  case "test": {
13607
13639
  this.send({ type: "info", message: "\u{1F9EA} Running tests..." });
13608
13640
  try {
13609
- const { executeTests } = await import("./run-tests-H5ER2NJ4.js");
13641
+ const { executeTests } = await import("./run-tests-D5K4ZMDN.js");
13610
13642
  const argStr = args.join(" ").trim();
13611
13643
  let testArgs = {};
13612
13644
  if (argStr) {
@@ -155,7 +155,7 @@ ${content}`);
155
155
  }
156
156
  }
157
157
  async function runTaskMode(config, providers, configManager, topic) {
158
- const { TaskOrchestrator } = await import("./task-orchestrator-VHEPV4NO.js");
158
+ const { TaskOrchestrator } = await import("./task-orchestrator-T5C7M26Z.js");
159
159
  const orchestrator = new TaskOrchestrator(config, providers, configManager);
160
160
  let interrupted = false;
161
161
  const onSigint = () => {
package/dist/index.js CHANGED
@@ -18,7 +18,7 @@ import {
18
18
  saveDevState,
19
19
  sessionHasMeaningfulContent,
20
20
  setupProxy
21
- } from "./chunk-XGOYR34D.js";
21
+ } from "./chunk-J2P7TRYK.js";
22
22
  import {
23
23
  ToolExecutor,
24
24
  ToolRegistry,
@@ -37,10 +37,10 @@ import {
37
37
  spawnAgentContext,
38
38
  theme,
39
39
  undoStack
40
- } from "./chunk-3TDOXLFG.js";
40
+ } from "./chunk-6T25OYRW.js";
41
41
  import "./chunk-HDSKW7Q3.js";
42
42
  import "./chunk-ZWVIDFGY.js";
43
- import "./chunk-BR7HYO64.js";
43
+ import "./chunk-GWTCIEDB.js";
44
44
  import {
45
45
  SessionManager,
46
46
  getContentText
@@ -49,7 +49,7 @@ import {
49
49
  getConfigDirUsage,
50
50
  listRecentCrashes,
51
51
  writeCrashLog
52
- } from "./chunk-7XTNI3XG.js";
52
+ } from "./chunk-QMQZ6IWU.js";
53
53
  import {
54
54
  CONTENT_ONLY_STREAM_REMINDER,
55
55
  HALLUCINATION_CORRECTION_MESSAGE,
@@ -74,11 +74,11 @@ import {
74
74
  getTopFailingTools,
75
75
  getTopUsedTools,
76
76
  installFlushOnExit
77
- } from "./chunk-Z4P4LVQV.js";
77
+ } from "./chunk-5JACO5OK.js";
78
78
  import "./chunk-HIU2SH4V.js";
79
79
  import {
80
80
  ConfigManager
81
- } from "./chunk-IILP3TAQ.js";
81
+ } from "./chunk-FREVMRQ6.js";
82
82
  import {
83
83
  AuthError,
84
84
  ProviderError,
@@ -105,7 +105,7 @@ import {
105
105
  SKILLS_DIR_NAME,
106
106
  VERSION,
107
107
  buildUserIdentityPrompt
108
- } from "./chunk-2VQC6W5H.js";
108
+ } from "./chunk-BS33F4AI.js";
109
109
  import {
110
110
  formatGitContextForPrompt,
111
111
  getGitContext,
@@ -1786,7 +1786,7 @@ No tools match "${filter}".
1786
1786
  const { join: join6 } = await import("path");
1787
1787
  const { existsSync: existsSync6 } = await import("fs");
1788
1788
  const { getGitRoot: getGitRoot2 } = await import("./git-context-7KIP4X2V.js");
1789
- const { MCP_PROJECT_CONFIG_NAME: MCP_PROJECT_CONFIG_NAME2 } = await import("./constants-LUNDQJ4Y.js");
1789
+ const { MCP_PROJECT_CONFIG_NAME: MCP_PROJECT_CONFIG_NAME2 } = await import("./constants-M342AGRU.js");
1790
1790
  const { approveProject, hashMcpFile } = await import("./project-trust-IFM7FXEV.js");
1791
1791
  const cwd = process.cwd();
1792
1792
  const projectRoot = getGitRoot2(cwd) ?? cwd;
@@ -2847,7 +2847,7 @@ ${hint}` : "")
2847
2847
  usage: "/test [command|filter]",
2848
2848
  async execute(args, ctx) {
2849
2849
  try {
2850
- const { executeTests } = await import("./run-tests-45HF76ZE.js");
2850
+ const { executeTests } = await import("./run-tests-IPISVPII.js");
2851
2851
  const argStr = args.join(" ").trim();
2852
2852
  let testArgs = {};
2853
2853
  if (argStr) {
@@ -7633,7 +7633,7 @@ program.command("web").description("Start Web UI server with browser-based chat
7633
7633
  console.error("Error: Invalid port number. Must be between 1 and 65535.");
7634
7634
  process.exit(1);
7635
7635
  }
7636
- const { startWebServer } = await import("./server-5VRJB5DB.js");
7636
+ const { startWebServer } = await import("./server-4PSO44EU.js");
7637
7637
  await startWebServer({ port, host: options.host });
7638
7638
  });
7639
7639
  program.command("user [action] [username]").description("Manage Web UI users (list | create <name> | delete <name> | reset-password <name> | logout-all <name> | migrate <name>)").action(async (action, username) => {
@@ -7800,12 +7800,12 @@ program.command("sessions").description("List recent conversation sessions").opt
7800
7800
  console.log(footer + "\n");
7801
7801
  });
7802
7802
  program.command("doctor").description("Health check: API keys, config, MCP, recent crashes, tool usage, disk usage").option("--json", "Output as JSON (for scripting)").option("--reset-stats", "Reset accumulated tool usage statistics").action(async (options) => {
7803
- const { runDoctorCli } = await import("./doctor-cli-WAGOVDOE.js");
7803
+ const { runDoctorCli } = await import("./doctor-cli-QH3RPU6D.js");
7804
7804
  await runDoctorCli({ json: !!options.json, resetStats: !!options.resetStats });
7805
7805
  });
7806
7806
  program.command("batch <action> [arg] [arg2]").description("Anthropic Message Batches: submit | list | status <id> | results <id> [out] | cancel <id>").option("--dry-run", "Parse and validate input without submitting (submit only)").action(async (action, arg, arg2, options) => {
7807
7807
  try {
7808
- const batch = await import("./batch-WOGAEPB2.js");
7808
+ const batch = await import("./batch-BHE7FE6R.js");
7809
7809
  switch (action) {
7810
7810
  case "submit":
7811
7811
  if (!arg) {
@@ -7848,7 +7848,7 @@ program.command("batch <action> [arg] [arg2]").description("Anthropic Message Ba
7848
7848
  }
7849
7849
  });
7850
7850
  program.command("mcp-serve").description("Start an MCP server over STDIO, exposing aicli's built-in tools to Claude Desktop / Cursor / other MCP clients").option("--allow-destructive", "Allow bash / run_interactive / task_create (always destructive in MCP mode)").option("--allow-outside-cwd", "Allow tool path arguments to escape the sandbox root \u2014 disabled by default").option("--tools <list>", "Comma-separated whitelist of tools to expose (default: all eligible tools)").option("--cwd <path>", "Working directory AND sandbox root (default: current directory)").action(async (options) => {
7851
- const { startMcpServer } = await import("./server-WHDEDJIF.js");
7851
+ const { startMcpServer } = await import("./server-GQAF6AZW.js");
7852
7852
  await startMcpServer({
7853
7853
  allowDestructive: !!options.allowDestructive,
7854
7854
  allowOutsideCwd: !!options.allowOutsideCwd,
@@ -7857,7 +7857,7 @@ program.command("mcp-serve").description("Start an MCP server over STDIO, exposi
7857
7857
  });
7858
7858
  });
7859
7859
  program.command("ci").description("Headless PR review (code + security) \u2014 reads git/gh diff, optionally posts to PR. Designed for GitHub Actions.").option("--pr <num>", "PR number; diff fetched via `gh pr diff <num>`", (v) => parseInt(v, 10)).option("--base <ref>", "Base ref for `git diff <ref>...HEAD` (ignored when --pr set)").option("--post", "Post review as a PR comment (requires gh CLI + GH_TOKEN, needs --pr)").option("--no-update", "Always create a new comment instead of updating the previous aicli review").option("--skip-code", "Skip the code review section").option("--skip-security", "Skip the security review section").option("--detailed", "Use the detailed code-review prompt").option("--max-diff <n>", "Max diff chars sent to the model (default 30000)", (v) => parseInt(v, 10)).option("--provider <id>", "Override provider (default: config.defaultProvider)").option("--model <id>", "Override model").option("--dry-run", "Print result to stdout instead of posting (overrides --post)").action(async (options) => {
7860
- const { runCi } = await import("./ci-JJJET7WL.js");
7860
+ const { runCi } = await import("./ci-4D5KW4VX.js");
7861
7861
  const result = await runCi({
7862
7862
  pr: options.pr,
7863
7863
  base: options.base,
@@ -8002,7 +8002,7 @@ program.command("hub [topic]").description("Start multi-agent hub (discuss / bra
8002
8002
  }),
8003
8003
  config.get("customProviders")
8004
8004
  );
8005
- const { startHub } = await import("./hub-ZH2ZYZP7.js");
8005
+ const { startHub } = await import("./hub-UAZ4BAFN.js");
8006
8006
  await startHub(
8007
8007
  {
8008
8008
  topic: topic ?? "",
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  executeTests,
3
3
  runTestsTool
4
- } from "./chunk-HOKHM3GP.js";
4
+ } from "./chunk-4ZV2XIGC.js";
5
5
  import "./chunk-3RG5ZIWI.js";
6
6
  export {
7
7
  executeTests,
@@ -2,8 +2,8 @@
2
2
  import {
3
3
  executeTests,
4
4
  runTestsTool
5
- } from "./chunk-BR7HYO64.js";
6
- import "./chunk-2VQC6W5H.js";
5
+ } from "./chunk-GWTCIEDB.js";
6
+ import "./chunk-BS33F4AI.js";
7
7
  import "./chunk-PDX44BCA.js";
8
8
  export {
9
9
  executeTests,
@@ -21,7 +21,7 @@ import {
21
21
  loadDevState,
22
22
  persistToolRound,
23
23
  setupProxy
24
- } from "./chunk-XGOYR34D.js";
24
+ } from "./chunk-J2P7TRYK.js";
25
25
  import {
26
26
  ToolExecutor,
27
27
  ToolRegistry,
@@ -39,10 +39,10 @@ import {
39
39
  spawnAgentContext,
40
40
  truncateOutput,
41
41
  undoStack
42
- } from "./chunk-3TDOXLFG.js";
42
+ } from "./chunk-6T25OYRW.js";
43
43
  import "./chunk-HDSKW7Q3.js";
44
44
  import "./chunk-ZWVIDFGY.js";
45
- import "./chunk-BR7HYO64.js";
45
+ import "./chunk-GWTCIEDB.js";
46
46
  import {
47
47
  SessionManager,
48
48
  getContentText
@@ -64,13 +64,13 @@ import {
64
64
  } from "./chunk-2TG4KU3U.js";
65
65
  import {
66
66
  runTool
67
- } from "./chunk-Z4P4LVQV.js";
67
+ } from "./chunk-5JACO5OK.js";
68
68
  import {
69
69
  getDangerLevel
70
70
  } from "./chunk-HIU2SH4V.js";
71
71
  import {
72
72
  ConfigManager
73
- } from "./chunk-IILP3TAQ.js";
73
+ } from "./chunk-FREVMRQ6.js";
74
74
  import "./chunk-TZQHYZKT.js";
75
75
  import {
76
76
  AGENTIC_BEHAVIOR_GUIDELINE,
@@ -90,7 +90,7 @@ import {
90
90
  SKILLS_DIR_NAME,
91
91
  VERSION,
92
92
  buildUserIdentityPrompt
93
- } from "./chunk-2VQC6W5H.js";
93
+ } from "./chunk-BS33F4AI.js";
94
94
  import {
95
95
  formatGitContextForPrompt,
96
96
  getGitContext,
@@ -2577,7 +2577,7 @@ ${undoResults.map((r) => ` \u2022 ${r}`).join("\n")}` });
2577
2577
  case "test": {
2578
2578
  this.send({ type: "info", message: "\u{1F9EA} Running tests..." });
2579
2579
  try {
2580
- const { executeTests } = await import("./run-tests-45HF76ZE.js");
2580
+ const { executeTests } = await import("./run-tests-IPISVPII.js");
2581
2581
  const argStr = args.join(" ").trim();
2582
2582
  let testArgs = {};
2583
2583
  if (argStr) {
@@ -1,13 +1,13 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  ToolRegistry
4
- } from "./chunk-3TDOXLFG.js";
4
+ } from "./chunk-6T25OYRW.js";
5
5
  import "./chunk-HDSKW7Q3.js";
6
6
  import "./chunk-ZWVIDFGY.js";
7
- import "./chunk-BR7HYO64.js";
7
+ import "./chunk-GWTCIEDB.js";
8
8
  import {
9
9
  runTool
10
- } from "./chunk-Z4P4LVQV.js";
10
+ } from "./chunk-5JACO5OK.js";
11
11
  import {
12
12
  getDangerLevel,
13
13
  schemaToJsonSchema
@@ -15,7 +15,7 @@ import {
15
15
  import "./chunk-TZQHYZKT.js";
16
16
  import {
17
17
  VERSION
18
- } from "./chunk-2VQC6W5H.js";
18
+ } from "./chunk-BS33F4AI.js";
19
19
  import "./chunk-4BKXL7SM.js";
20
20
  import "./chunk-MM3F43H6.js";
21
21
  import "./chunk-KHYD3WXE.js";
@@ -3,20 +3,20 @@ import {
3
3
  ToolRegistry,
4
4
  googleSearchContext,
5
5
  truncateOutput
6
- } from "./chunk-3TDOXLFG.js";
6
+ } from "./chunk-6T25OYRW.js";
7
7
  import "./chunk-HDSKW7Q3.js";
8
8
  import "./chunk-ZWVIDFGY.js";
9
- import "./chunk-BR7HYO64.js";
9
+ import "./chunk-GWTCIEDB.js";
10
10
  import {
11
11
  runTool
12
- } from "./chunk-Z4P4LVQV.js";
12
+ } from "./chunk-5JACO5OK.js";
13
13
  import {
14
14
  getDangerLevel
15
15
  } from "./chunk-HIU2SH4V.js";
16
16
  import "./chunk-TZQHYZKT.js";
17
17
  import {
18
18
  SUBAGENT_ALLOWED_TOOLS
19
- } from "./chunk-2VQC6W5H.js";
19
+ } from "./chunk-BS33F4AI.js";
20
20
  import "./chunk-4BKXL7SM.js";
21
21
  import "./chunk-MM3F43H6.js";
22
22
  import "./chunk-KHYD3WXE.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jinzd-ai-cli",
3
- "version": "0.4.175",
3
+ "version": "0.4.177",
4
4
  "description": "Cross-platform REPL-style AI CLI with multi-provider support",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -35,7 +35,8 @@
35
35
  "electron:build-win": "npm run build && electron-builder --win",
36
36
  "electron:build-mac": "npm run build && electron-builder --mac",
37
37
  "electron:build-linux": "npm run build && electron-builder --linux",
38
- "electron:build-all": "npm run build && electron-builder --win --mac --linux"
38
+ "electron:build-all": "npm run build && electron-builder --win --mac --linux",
39
+ "release": "node scripts/release.mjs"
39
40
  },
40
41
  "pkg": {
41
42
  "scripts": "dist-cjs/index.cjs",