jinzd-ai-cli 0.4.135 → 0.4.137

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-UJLTBN7R.js";
4
+ } from "./chunk-OGQSPINV.js";
5
5
  import "./chunk-2ZD3YTVM.js";
6
- import "./chunk-PVZE6NWC.js";
6
+ import "./chunk-EBOCXEMG.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.135";
9
+ var VERSION = "0.4.137";
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
 
3
3
  // src/core/constants.ts
4
- var VERSION = "0.4.135";
4
+ var VERSION = "0.4.137";
5
5
  var APP_NAME = "ai-cli";
6
6
  var CONFIG_DIR_NAME = ".aicli";
7
7
  var CONFIG_FILE_NAME = "config.json";
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  truncateForPersist
4
- } from "./chunk-5XL4HXY5.js";
4
+ } from "./chunk-YHPTGPSG.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-PVZE6NWC.js";
14
+ } from "./chunk-EBOCXEMG.js";
15
15
  import {
16
16
  redactJson
17
17
  } from "./chunk-7ZJN4KLV.js";
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  CONFIG_DIR_NAME
4
- } from "./chunk-PVZE6NWC.js";
4
+ } from "./chunk-EBOCXEMG.js";
5
5
 
6
6
  // src/diagnostics/tool-stats.ts
7
7
  import { existsSync, readFileSync, writeFileSync, mkdirSync, renameSync } from "fs";
@@ -8,7 +8,7 @@ import {
8
8
  CONFIG_FILE_NAME,
9
9
  HISTORY_DIR_NAME,
10
10
  PLUGINS_DIR_NAME
11
- } from "./chunk-PVZE6NWC.js";
11
+ } from "./chunk-EBOCXEMG.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-PVZE6NWC.js";
4
+ } from "./chunk-EBOCXEMG.js";
5
5
 
6
6
  // src/tools/builtin/run-tests.ts
7
7
  import { execSync, spawnSync } from "child_process";
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  CONFIG_DIR_NAME,
4
4
  VERSION
5
- } from "./chunk-PVZE6NWC.js";
5
+ } from "./chunk-EBOCXEMG.js";
6
6
 
7
7
  // src/diagnostics/crash-log.ts
8
8
  import {
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  schemaToJsonSchema
4
- } from "./chunk-P73ARSFY.js";
4
+ } from "./chunk-OAX25W3S.js";
5
5
  import {
6
6
  AuthError,
7
7
  ProviderError,
@@ -5,12 +5,12 @@ import {
5
5
  } from "./chunk-3BICTI5M.js";
6
6
  import {
7
7
  runTestsTool
8
- } from "./chunk-Y2IWJDJA.js";
8
+ } from "./chunk-PC63O6KH.js";
9
9
  import {
10
10
  getDangerLevel,
11
11
  isFileWriteTool,
12
12
  runTool
13
- } from "./chunk-P73ARSFY.js";
13
+ } from "./chunk-OAX25W3S.js";
14
14
  import {
15
15
  EnvLoader,
16
16
  NetworkError,
@@ -23,7 +23,7 @@ import {
23
23
  SUBAGENT_ALLOWED_TOOLS,
24
24
  SUBAGENT_DEFAULT_MAX_ROUNDS,
25
25
  SUBAGENT_MAX_ROUNDS_LIMIT
26
- } from "./chunk-PVZE6NWC.js";
26
+ } from "./chunk-EBOCXEMG.js";
27
27
  import {
28
28
  fileCheckpoints
29
29
  } from "./chunk-4BKXL7SM.js";
@@ -3427,17 +3427,36 @@ var webSearchTool = {
3427
3427
  }
3428
3428
  const order = engine === "auto" ? ["bing", "google"] : engine === "bing" ? ["bing"] : ["google"];
3429
3429
  const errors = [];
3430
- for (const eng of order) {
3430
+ let weakBingFallback = null;
3431
+ let weakBingReason = null;
3432
+ for (let i = 0; i < order.length; i++) {
3433
+ const eng = order[i];
3434
+ const isLastEngine = i === order.length - 1;
3431
3435
  try {
3432
3436
  const results = eng === "bing" ? await searchBing(query, numResults) : await searchGoogle(query, numResults);
3433
- if (results.length > 0) {
3434
- return formatResults(query, eng, results);
3437
+ if (results.length === 0) {
3438
+ errors.push(`${eng}: 0 results`);
3439
+ continue;
3440
+ }
3441
+ if (eng === "bing" && !isLastEngine) {
3442
+ const verdict = classifyBingWeakness(query, results);
3443
+ if (verdict !== null) {
3444
+ errors.push(`bing: ${verdict}, trying ${order[i + 1]}`);
3445
+ weakBingFallback = results;
3446
+ weakBingReason = verdict;
3447
+ continue;
3448
+ }
3435
3449
  }
3436
- errors.push(`${eng}: 0 results`);
3450
+ return formatResults(query, eng, results);
3437
3451
  } catch (err) {
3438
3452
  errors.push(`${eng}: ${err instanceof Error ? err.message : String(err)}`);
3439
3453
  }
3440
3454
  }
3455
+ if (weakBingFallback) {
3456
+ return formatResults(query, "bing", weakBingFallback, {
3457
+ warning: `engine signaled weak relevance (${weakBingReason}). These results may be Bing's "popular sites" fallback rather than real matches. Consider rephrasing the query (shorter, fewer constraints), or use web_fetch against a known authoritative URL (e.g. baike.baidu.com, mfa.gov.cn, news.cctv.com).`
3458
+ });
3459
+ }
3441
3460
  throw new NetworkError(
3442
3461
  `web_search failed across all engines.
3443
3462
  ${errors.map((e) => " - " + e).join("\n")}
@@ -3445,6 +3464,94 @@ Tip: a CAPTCHA wall or a result-page redesign can cause this. Try web_fetch with
3445
3464
  );
3446
3465
  }
3447
3466
  };
3467
+ function classifyBingWeakness(query, results) {
3468
+ if (results.length < 3) return null;
3469
+ if (hasZeroKeywordOverlap(query, results)) {
3470
+ return "zero query-keyword overlap (no result mentions any query term)";
3471
+ }
3472
+ const hostCounts = /* @__PURE__ */ new Map();
3473
+ for (const r of results) {
3474
+ try {
3475
+ const host = new URL(r.url).hostname.replace(/^www\./, "");
3476
+ hostCounts.set(host, (hostCounts.get(host) ?? 0) + 1);
3477
+ } catch {
3478
+ }
3479
+ }
3480
+ const maxSameHost = Math.max(0, ...hostCounts.values());
3481
+ if (maxSameHost / results.length >= 0.6) {
3482
+ return `domain monoculture (${maxSameHost}/${results.length} same host)`;
3483
+ }
3484
+ const noiseRe = NOISE_DOMAIN_RE;
3485
+ const noiseCount = results.filter((r) => noiseRe.test(r.url) || noiseRe.test(r.title)).length;
3486
+ if (noiseCount / results.length >= 0.4) {
3487
+ return `${noiseCount}/${results.length} results from known-noise domains`;
3488
+ }
3489
+ return null;
3490
+ }
3491
+ var NOISE_DOMAIN_RE = new RegExp(
3492
+ "\\b(" + [
3493
+ // Network/CDN noise tests
3494
+ "speedtest\\.net",
3495
+ "fast\\.com",
3496
+ "ookla\\.com",
3497
+ // Adult content sites observed in v0.4.135/136 traces
3498
+ "samh130",
3499
+ "91secomic",
3500
+ "cnshaik",
3501
+ "suishenpu",
3502
+ // CN entertainment / video portals Bing uses as "popular sites" filler
3503
+ "youku\\.(com|tv)",
3504
+ "iqiyi\\.com",
3505
+ "world-iqiyi\\.com",
3506
+ "4gtv\\.tv",
3507
+ "doubao\\.com",
3508
+ "doubao\\.zube\\.cn",
3509
+ "gamersky\\.com",
3510
+ // CN academic noise (when query is news-y, not academic)
3511
+ "cnki\\.(net|com\\.cn)",
3512
+ // Non-news health spam
3513
+ "encompasshealth",
3514
+ // Baidu Baike "single digit / single character" entries
3515
+ "baike\\.baidu\\.com\\/item\\/5\\b",
3516
+ "baike\\.baidu\\.com\\/item\\/[^/]*\\d{4,}",
3517
+ // Generic baidu redirect / 知道 / 经验 / 健康 when off-topic — caught via TITLE match
3518
+ "baidu\\.com\\/s\\?",
3519
+ // Kansas Rehab Hospital pattern (observed v0.4.135 dev)
3520
+ "kansas",
3521
+ // 麻豆 entertainment (TW/CN content site)
3522
+ "\u9EBB\u8C46",
3523
+ // 抖音 / Steam tutorials (Baidu Jingyan) — common popular noise
3524
+ "\u6296\u97F3",
3525
+ "17c\u5F71\u89C6"
3526
+ ].join("|") + ")",
3527
+ "i"
3528
+ );
3529
+ function extractQueryTokens(query) {
3530
+ const tokens = /* @__PURE__ */ new Set();
3531
+ const cjkRuns = query.match(/[一-鿿]+/g) ?? [];
3532
+ for (const run of cjkRuns) {
3533
+ if (run.length < 2) continue;
3534
+ for (let i = 0; i < run.length - 1; i++) {
3535
+ tokens.add(run.slice(i, i + 2));
3536
+ }
3537
+ }
3538
+ const ascii = query.match(/[a-zA-Z]{3,}/g) ?? [];
3539
+ for (const w of ascii) tokens.add(w.toLowerCase());
3540
+ const digits = query.match(/\d{2,}/g) ?? [];
3541
+ for (const d of digits) tokens.add(d);
3542
+ return tokens;
3543
+ }
3544
+ function hasZeroKeywordOverlap(query, results) {
3545
+ const tokens = extractQueryTokens(query);
3546
+ if (tokens.size === 0) return false;
3547
+ for (const r of results) {
3548
+ const haystack = (r.title + " " + r.snippet).toLowerCase();
3549
+ for (const t of tokens) {
3550
+ if (haystack.includes(t.toLowerCase())) return false;
3551
+ }
3552
+ }
3553
+ return true;
3554
+ }
3448
3555
  async function searchBing(query, num) {
3449
3556
  const url = new URL("https://cn.bing.com/search");
3450
3557
  url.searchParams.set("q", query);
@@ -3532,13 +3639,18 @@ function stripTags2(html) {
3532
3639
  function decodeHtmlEntities(s) {
3533
3640
  return s.replace(/&amp;/g, "&").replace(/&lt;/g, "<").replace(/&gt;/g, ">").replace(/&quot;/g, '"').replace(/&#39;/g, "'").replace(/&#x2F;/g, "/").replace(/&nbsp;/g, " ");
3534
3641
  }
3535
- function formatResults(query, engine, results) {
3536
- const header = `Search results for "${query}" via ${engine} (${results.length} results):
3642
+ function formatResults(query, engine, results, opts) {
3643
+ let preamble = `Search results for "${query}" via ${engine} (${results.length} results):
3537
3644
  `;
3645
+ if (opts?.warning) {
3646
+ preamble = `\u26A0\uFE0F WEAK RESULTS WARNING: ${opts.warning}
3647
+
3648
+ ${preamble}`;
3649
+ }
3538
3650
  const body = results.map((r, i) => `${i + 1}. **${r.title}**
3539
3651
  URL: ${r.url}
3540
3652
  ${decodeHtmlEntities(r.snippet) || "(no snippet extracted)"}`).join("\n\n");
3541
- return header + "\n" + body;
3653
+ return preamble + "\n" + body;
3542
3654
  }
3543
3655
 
3544
3656
  // src/tools/builtin/save-last-response.ts
@@ -36,7 +36,7 @@ import {
36
36
  TEST_TIMEOUT,
37
37
  VERSION,
38
38
  buildUserIdentityPrompt
39
- } from "./chunk-PVZE6NWC.js";
39
+ } from "./chunk-EBOCXEMG.js";
40
40
  import "./chunk-PDX44BCA.js";
41
41
  export {
42
42
  AGENTIC_BEHAVIOR_GUIDELINE,
@@ -2,25 +2,25 @@
2
2
  import {
3
3
  getConfigDirUsage,
4
4
  listRecentCrashes
5
- } from "./chunk-BS6JUZPS.js";
5
+ } from "./chunk-RES5PFFV.js";
6
6
  import {
7
7
  ProviderRegistry
8
- } from "./chunk-NCZWD2KK.js";
8
+ } from "./chunk-SAHPM6XW.js";
9
9
  import {
10
10
  ConfigManager
11
- } from "./chunk-UJLTBN7R.js";
11
+ } from "./chunk-OGQSPINV.js";
12
12
  import {
13
13
  getStatsSnapshot,
14
14
  getTopFailingTools,
15
15
  getTopUsedTools,
16
16
  resetStats
17
- } from "./chunk-P73ARSFY.js";
17
+ } from "./chunk-OAX25W3S.js";
18
18
  import "./chunk-2ZD3YTVM.js";
19
19
  import {
20
20
  DEV_STATE_FILE_NAME,
21
21
  MEMORY_FILE_NAME,
22
22
  VERSION
23
- } from "./chunk-PVZE6NWC.js";
23
+ } from "./chunk-EBOCXEMG.js";
24
24
  import "./chunk-PDX44BCA.js";
25
25
 
26
26
  // src/diagnostics/doctor-cli.ts
@@ -36,7 +36,7 @@ import {
36
36
  VERSION,
37
37
  buildUserIdentityPrompt,
38
38
  runTestsTool
39
- } from "./chunk-OMB3XLCV.js";
39
+ } from "./chunk-64ZV6EIF.js";
40
40
  import {
41
41
  hasSemanticIndex,
42
42
  semanticSearch
@@ -7123,17 +7123,36 @@ var webSearchTool = {
7123
7123
  }
7124
7124
  const order = engine === "auto" ? ["bing", "google"] : engine === "bing" ? ["bing"] : ["google"];
7125
7125
  const errors = [];
7126
- for (const eng of order) {
7126
+ let weakBingFallback = null;
7127
+ let weakBingReason = null;
7128
+ for (let i = 0; i < order.length; i++) {
7129
+ const eng = order[i];
7130
+ const isLastEngine = i === order.length - 1;
7127
7131
  try {
7128
7132
  const results = eng === "bing" ? await searchBing(query, numResults) : await searchGoogle(query, numResults);
7129
- if (results.length > 0) {
7130
- return formatResults(query, eng, results);
7133
+ if (results.length === 0) {
7134
+ errors.push(`${eng}: 0 results`);
7135
+ continue;
7136
+ }
7137
+ if (eng === "bing" && !isLastEngine) {
7138
+ const verdict = classifyBingWeakness(query, results);
7139
+ if (verdict !== null) {
7140
+ errors.push(`bing: ${verdict}, trying ${order[i + 1]}`);
7141
+ weakBingFallback = results;
7142
+ weakBingReason = verdict;
7143
+ continue;
7144
+ }
7131
7145
  }
7132
- errors.push(`${eng}: 0 results`);
7146
+ return formatResults(query, eng, results);
7133
7147
  } catch (err) {
7134
7148
  errors.push(`${eng}: ${err instanceof Error ? err.message : String(err)}`);
7135
7149
  }
7136
7150
  }
7151
+ if (weakBingFallback) {
7152
+ return formatResults(query, "bing", weakBingFallback, {
7153
+ warning: `engine signaled weak relevance (${weakBingReason}). These results may be Bing's "popular sites" fallback rather than real matches. Consider rephrasing the query (shorter, fewer constraints), or use web_fetch against a known authoritative URL (e.g. baike.baidu.com, mfa.gov.cn, news.cctv.com).`
7154
+ });
7155
+ }
7137
7156
  throw new NetworkError(
7138
7157
  `web_search failed across all engines.
7139
7158
  ${errors.map((e) => " - " + e).join("\n")}
@@ -7141,6 +7160,94 @@ Tip: a CAPTCHA wall or a result-page redesign can cause this. Try web_fetch with
7141
7160
  );
7142
7161
  }
7143
7162
  };
7163
+ function classifyBingWeakness(query, results) {
7164
+ if (results.length < 3) return null;
7165
+ if (hasZeroKeywordOverlap(query, results)) {
7166
+ return "zero query-keyword overlap (no result mentions any query term)";
7167
+ }
7168
+ const hostCounts = /* @__PURE__ */ new Map();
7169
+ for (const r of results) {
7170
+ try {
7171
+ const host = new URL(r.url).hostname.replace(/^www\./, "");
7172
+ hostCounts.set(host, (hostCounts.get(host) ?? 0) + 1);
7173
+ } catch {
7174
+ }
7175
+ }
7176
+ const maxSameHost = Math.max(0, ...hostCounts.values());
7177
+ if (maxSameHost / results.length >= 0.6) {
7178
+ return `domain monoculture (${maxSameHost}/${results.length} same host)`;
7179
+ }
7180
+ const noiseRe = NOISE_DOMAIN_RE;
7181
+ const noiseCount = results.filter((r) => noiseRe.test(r.url) || noiseRe.test(r.title)).length;
7182
+ if (noiseCount / results.length >= 0.4) {
7183
+ return `${noiseCount}/${results.length} results from known-noise domains`;
7184
+ }
7185
+ return null;
7186
+ }
7187
+ var NOISE_DOMAIN_RE = new RegExp(
7188
+ "\\b(" + [
7189
+ // Network/CDN noise tests
7190
+ "speedtest\\.net",
7191
+ "fast\\.com",
7192
+ "ookla\\.com",
7193
+ // Adult content sites observed in v0.4.135/136 traces
7194
+ "samh130",
7195
+ "91secomic",
7196
+ "cnshaik",
7197
+ "suishenpu",
7198
+ // CN entertainment / video portals Bing uses as "popular sites" filler
7199
+ "youku\\.(com|tv)",
7200
+ "iqiyi\\.com",
7201
+ "world-iqiyi\\.com",
7202
+ "4gtv\\.tv",
7203
+ "doubao\\.com",
7204
+ "doubao\\.zube\\.cn",
7205
+ "gamersky\\.com",
7206
+ // CN academic noise (when query is news-y, not academic)
7207
+ "cnki\\.(net|com\\.cn)",
7208
+ // Non-news health spam
7209
+ "encompasshealth",
7210
+ // Baidu Baike "single digit / single character" entries
7211
+ "baike\\.baidu\\.com\\/item\\/5\\b",
7212
+ "baike\\.baidu\\.com\\/item\\/[^/]*\\d{4,}",
7213
+ // Generic baidu redirect / 知道 / 经验 / 健康 when off-topic — caught via TITLE match
7214
+ "baidu\\.com\\/s\\?",
7215
+ // Kansas Rehab Hospital pattern (observed v0.4.135 dev)
7216
+ "kansas",
7217
+ // 麻豆 entertainment (TW/CN content site)
7218
+ "\u9EBB\u8C46",
7219
+ // 抖音 / Steam tutorials (Baidu Jingyan) — common popular noise
7220
+ "\u6296\u97F3",
7221
+ "17c\u5F71\u89C6"
7222
+ ].join("|") + ")",
7223
+ "i"
7224
+ );
7225
+ function extractQueryTokens(query) {
7226
+ const tokens = /* @__PURE__ */ new Set();
7227
+ const cjkRuns = query.match(/[一-鿿]+/g) ?? [];
7228
+ for (const run of cjkRuns) {
7229
+ if (run.length < 2) continue;
7230
+ for (let i = 0; i < run.length - 1; i++) {
7231
+ tokens.add(run.slice(i, i + 2));
7232
+ }
7233
+ }
7234
+ const ascii = query.match(/[a-zA-Z]{3,}/g) ?? [];
7235
+ for (const w of ascii) tokens.add(w.toLowerCase());
7236
+ const digits = query.match(/\d{2,}/g) ?? [];
7237
+ for (const d of digits) tokens.add(d);
7238
+ return tokens;
7239
+ }
7240
+ function hasZeroKeywordOverlap(query, results) {
7241
+ const tokens = extractQueryTokens(query);
7242
+ if (tokens.size === 0) return false;
7243
+ for (const r of results) {
7244
+ const haystack = (r.title + " " + r.snippet).toLowerCase();
7245
+ for (const t of tokens) {
7246
+ if (haystack.includes(t.toLowerCase())) return false;
7247
+ }
7248
+ }
7249
+ return true;
7250
+ }
7144
7251
  async function searchBing(query, num) {
7145
7252
  const url = new URL("https://cn.bing.com/search");
7146
7253
  url.searchParams.set("q", query);
@@ -7228,13 +7335,18 @@ function stripTags2(html) {
7228
7335
  function decodeHtmlEntities(s) {
7229
7336
  return s.replace(/&amp;/g, "&").replace(/&lt;/g, "<").replace(/&gt;/g, ">").replace(/&quot;/g, '"').replace(/&#39;/g, "'").replace(/&#x2F;/g, "/").replace(/&nbsp;/g, " ");
7230
7337
  }
7231
- function formatResults(query, engine, results) {
7232
- const header = `Search results for "${query}" via ${engine} (${results.length} results):
7338
+ function formatResults(query, engine, results, opts) {
7339
+ let preamble = `Search results for "${query}" via ${engine} (${results.length} results):
7233
7340
  `;
7341
+ if (opts?.warning) {
7342
+ preamble = `\u26A0\uFE0F WEAK RESULTS WARNING: ${opts.warning}
7343
+
7344
+ ${preamble}`;
7345
+ }
7234
7346
  const body = results.map((r, i) => `${i + 1}. **${r.title}**
7235
7347
  URL: ${r.url}
7236
7348
  ${decodeHtmlEntities(r.snippet) || "(no snippet extracted)"}`).join("\n\n");
7237
- return header + "\n" + body;
7349
+ return preamble + "\n" + body;
7238
7350
  }
7239
7351
 
7240
7352
  // src/tools/builtin/save-last-response.ts
@@ -12394,7 +12506,7 @@ ${undoResults.map((r) => ` \u2022 ${r}`).join("\n")}` });
12394
12506
  case "test": {
12395
12507
  this.send({ type: "info", message: "\u{1F9EA} Running tests..." });
12396
12508
  try {
12397
- const { executeTests } = await import("./run-tests-P436Z5DF.js");
12509
+ const { executeTests } = await import("./run-tests-R4T6GRZL.js");
12398
12510
  const argStr = args.join(" ").trim();
12399
12511
  let testArgs = {};
12400
12512
  if (argStr) {
@@ -386,7 +386,7 @@ ${content}`);
386
386
  }
387
387
  }
388
388
  async function runTaskMode(config, providers, configManager, topic) {
389
- const { TaskOrchestrator } = await import("./task-orchestrator-WTBUOVNZ.js");
389
+ const { TaskOrchestrator } = await import("./task-orchestrator-4WIXJWI2.js");
390
390
  const orchestrator = new TaskOrchestrator(config, providers, configManager);
391
391
  let interrupted = false;
392
392
  const onSigint = () => {
package/dist/index.js CHANGED
@@ -16,12 +16,12 @@ import {
16
16
  saveDevState,
17
17
  sessionHasMeaningfulContent,
18
18
  setupProxy
19
- } from "./chunk-SUJFSZ6U.js";
19
+ } from "./chunk-FFOF5X3A.js";
20
20
  import {
21
21
  getConfigDirUsage,
22
22
  listRecentCrashes,
23
23
  writeCrashLog
24
- } from "./chunk-BS6JUZPS.js";
24
+ } from "./chunk-RES5PFFV.js";
25
25
  import {
26
26
  CONTENT_ONLY_STREAM_REMINDER,
27
27
  HALLUCINATION_CORRECTION_MESSAGE,
@@ -39,10 +39,10 @@ import {
39
39
  looksLikeDocumentBody,
40
40
  stripPseudoToolCalls,
41
41
  stripToolCallReminder
42
- } from "./chunk-NCZWD2KK.js";
42
+ } from "./chunk-SAHPM6XW.js";
43
43
  import {
44
44
  ConfigManager
45
- } from "./chunk-UJLTBN7R.js";
45
+ } from "./chunk-OGQSPINV.js";
46
46
  import {
47
47
  ToolExecutor,
48
48
  ToolRegistry,
@@ -61,16 +61,16 @@ import {
61
61
  spawnAgentContext,
62
62
  theme,
63
63
  undoStack
64
- } from "./chunk-5XL4HXY5.js";
64
+ } from "./chunk-YHPTGPSG.js";
65
65
  import "./chunk-3BICTI5M.js";
66
66
  import "./chunk-2DXY7UGF.js";
67
- import "./chunk-Y2IWJDJA.js";
67
+ import "./chunk-PC63O6KH.js";
68
68
  import {
69
69
  getStatsSnapshot,
70
70
  getTopFailingTools,
71
71
  getTopUsedTools,
72
72
  installFlushOnExit
73
- } from "./chunk-P73ARSFY.js";
73
+ } from "./chunk-OAX25W3S.js";
74
74
  import "./chunk-2ZD3YTVM.js";
75
75
  import {
76
76
  AGENTIC_BEHAVIOR_GUIDELINE,
@@ -93,7 +93,7 @@ import {
93
93
  SKILLS_DIR_NAME,
94
94
  VERSION,
95
95
  buildUserIdentityPrompt
96
- } from "./chunk-PVZE6NWC.js";
96
+ } from "./chunk-EBOCXEMG.js";
97
97
  import {
98
98
  formatGitContextForPrompt,
99
99
  getGitContext,
@@ -1812,7 +1812,7 @@ No tools match "${filter}".
1812
1812
  const { join: join6 } = await import("path");
1813
1813
  const { existsSync: existsSync6 } = await import("fs");
1814
1814
  const { getGitRoot: getGitRoot2 } = await import("./git-context-7KIP4X2V.js");
1815
- const { MCP_PROJECT_CONFIG_NAME: MCP_PROJECT_CONFIG_NAME2 } = await import("./constants-7LFVO52M.js");
1815
+ const { MCP_PROJECT_CONFIG_NAME: MCP_PROJECT_CONFIG_NAME2 } = await import("./constants-IDR4PDK4.js");
1816
1816
  const { approveProject, hashMcpFile } = await import("./project-trust-IFM7FXEV.js");
1817
1817
  const cwd = process.cwd();
1818
1818
  const projectRoot = getGitRoot2(cwd) ?? cwd;
@@ -2873,7 +2873,7 @@ ${hint}` : "")
2873
2873
  usage: "/test [command|filter]",
2874
2874
  async execute(args, ctx) {
2875
2875
  try {
2876
- const { executeTests } = await import("./run-tests-7VI5TCNL.js");
2876
+ const { executeTests } = await import("./run-tests-QBZH44CO.js");
2877
2877
  const argStr = args.join(" ").trim();
2878
2878
  let testArgs = {};
2879
2879
  if (argStr) {
@@ -7327,7 +7327,7 @@ program.command("web").description("Start Web UI server with browser-based chat
7327
7327
  console.error("Error: Invalid port number. Must be between 1 and 65535.");
7328
7328
  process.exit(1);
7329
7329
  }
7330
- const { startWebServer } = await import("./server-ELFHR6KD.js");
7330
+ const { startWebServer } = await import("./server-DGFNLTX2.js");
7331
7331
  await startWebServer({ port, host: options.host });
7332
7332
  });
7333
7333
  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) => {
@@ -7494,12 +7494,12 @@ program.command("sessions").description("List recent conversation sessions").opt
7494
7494
  console.log(footer + "\n");
7495
7495
  });
7496
7496
  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) => {
7497
- const { runDoctorCli } = await import("./doctor-cli-4FQM4BHM.js");
7497
+ const { runDoctorCli } = await import("./doctor-cli-4SBDC25U.js");
7498
7498
  await runDoctorCli({ json: !!options.json, resetStats: !!options.resetStats });
7499
7499
  });
7500
7500
  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) => {
7501
7501
  try {
7502
- const batch = await import("./batch-NOEJSHCZ.js");
7502
+ const batch = await import("./batch-S546KMT3.js");
7503
7503
  switch (action) {
7504
7504
  case "submit":
7505
7505
  if (!arg) {
@@ -7542,7 +7542,7 @@ program.command("batch <action> [arg] [arg2]").description("Anthropic Message Ba
7542
7542
  }
7543
7543
  });
7544
7544
  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) => {
7545
- const { startMcpServer } = await import("./server-33SKWAUV.js");
7545
+ const { startMcpServer } = await import("./server-ZX6LJKTB.js");
7546
7546
  await startMcpServer({
7547
7547
  allowDestructive: !!options.allowDestructive,
7548
7548
  allowOutsideCwd: !!options.allowOutsideCwd,
@@ -7669,7 +7669,7 @@ program.command("hub [topic]").description("Start multi-agent hub (discuss / bra
7669
7669
  }),
7670
7670
  config.get("customProviders")
7671
7671
  );
7672
- const { startHub } = await import("./hub-JJF5BNY4.js");
7672
+ const { startHub } = await import("./hub-RDZGFPF3.js");
7673
7673
  await startHub(
7674
7674
  {
7675
7675
  topic: topic ?? "",
@@ -2,8 +2,8 @@
2
2
  import {
3
3
  executeTests,
4
4
  runTestsTool
5
- } from "./chunk-Y2IWJDJA.js";
6
- import "./chunk-PVZE6NWC.js";
5
+ } from "./chunk-PC63O6KH.js";
6
+ import "./chunk-EBOCXEMG.js";
7
7
  import "./chunk-PDX44BCA.js";
8
8
  export {
9
9
  executeTests,
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  executeTests,
3
3
  runTestsTool
4
- } from "./chunk-OMB3XLCV.js";
4
+ } from "./chunk-64ZV6EIF.js";
5
5
  import "./chunk-3RG5ZIWI.js";
6
6
  export {
7
7
  executeTests,
@@ -14,7 +14,7 @@ import {
14
14
  loadDevState,
15
15
  persistToolRound,
16
16
  setupProxy
17
- } from "./chunk-SUJFSZ6U.js";
17
+ } from "./chunk-FFOF5X3A.js";
18
18
  import {
19
19
  CONTENT_ONLY_STREAM_REMINDER,
20
20
  HALLUCINATION_CORRECTION_MESSAGE,
@@ -28,10 +28,10 @@ import {
28
28
  looksLikeDocumentBody,
29
29
  stripPseudoToolCalls,
30
30
  stripToolCallReminder
31
- } from "./chunk-NCZWD2KK.js";
31
+ } from "./chunk-SAHPM6XW.js";
32
32
  import {
33
33
  ConfigManager
34
- } from "./chunk-UJLTBN7R.js";
34
+ } from "./chunk-OGQSPINV.js";
35
35
  import {
36
36
  ToolExecutor,
37
37
  ToolRegistry,
@@ -49,14 +49,14 @@ import {
49
49
  spawnAgentContext,
50
50
  truncateOutput,
51
51
  undoStack
52
- } from "./chunk-5XL4HXY5.js";
52
+ } from "./chunk-YHPTGPSG.js";
53
53
  import "./chunk-3BICTI5M.js";
54
54
  import "./chunk-2DXY7UGF.js";
55
- import "./chunk-Y2IWJDJA.js";
55
+ import "./chunk-PC63O6KH.js";
56
56
  import {
57
57
  getDangerLevel,
58
58
  runTool
59
- } from "./chunk-P73ARSFY.js";
59
+ } from "./chunk-OAX25W3S.js";
60
60
  import "./chunk-2ZD3YTVM.js";
61
61
  import {
62
62
  AGENTIC_BEHAVIOR_GUIDELINE,
@@ -76,7 +76,7 @@ import {
76
76
  SKILLS_DIR_NAME,
77
77
  VERSION,
78
78
  buildUserIdentityPrompt
79
- } from "./chunk-PVZE6NWC.js";
79
+ } from "./chunk-EBOCXEMG.js";
80
80
  import {
81
81
  formatGitContextForPrompt,
82
82
  getGitContext,
@@ -2460,7 +2460,7 @@ ${undoResults.map((r) => ` \u2022 ${r}`).join("\n")}` });
2460
2460
  case "test": {
2461
2461
  this.send({ type: "info", message: "\u{1F9EA} Running tests..." });
2462
2462
  try {
2463
- const { executeTests } = await import("./run-tests-7VI5TCNL.js");
2463
+ const { executeTests } = await import("./run-tests-QBZH44CO.js");
2464
2464
  const argStr = args.join(" ").trim();
2465
2465
  let testArgs = {};
2466
2466
  if (argStr) {
@@ -1,19 +1,19 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  ToolRegistry
4
- } from "./chunk-5XL4HXY5.js";
4
+ } from "./chunk-YHPTGPSG.js";
5
5
  import "./chunk-3BICTI5M.js";
6
6
  import "./chunk-2DXY7UGF.js";
7
- import "./chunk-Y2IWJDJA.js";
7
+ import "./chunk-PC63O6KH.js";
8
8
  import {
9
9
  getDangerLevel,
10
10
  runTool,
11
11
  schemaToJsonSchema
12
- } from "./chunk-P73ARSFY.js";
12
+ } from "./chunk-OAX25W3S.js";
13
13
  import "./chunk-2ZD3YTVM.js";
14
14
  import {
15
15
  VERSION
16
- } from "./chunk-PVZE6NWC.js";
16
+ } from "./chunk-EBOCXEMG.js";
17
17
  import "./chunk-4BKXL7SM.js";
18
18
  import "./chunk-7ZJN4KLV.js";
19
19
  import "./chunk-KHYD3WXE.js";
@@ -3,18 +3,18 @@ import {
3
3
  ToolRegistry,
4
4
  googleSearchContext,
5
5
  truncateOutput
6
- } from "./chunk-5XL4HXY5.js";
6
+ } from "./chunk-YHPTGPSG.js";
7
7
  import "./chunk-3BICTI5M.js";
8
8
  import "./chunk-2DXY7UGF.js";
9
- import "./chunk-Y2IWJDJA.js";
9
+ import "./chunk-PC63O6KH.js";
10
10
  import {
11
11
  getDangerLevel,
12
12
  runTool
13
- } from "./chunk-P73ARSFY.js";
13
+ } from "./chunk-OAX25W3S.js";
14
14
  import "./chunk-2ZD3YTVM.js";
15
15
  import {
16
16
  SUBAGENT_ALLOWED_TOOLS
17
- } from "./chunk-PVZE6NWC.js";
17
+ } from "./chunk-EBOCXEMG.js";
18
18
  import "./chunk-4BKXL7SM.js";
19
19
  import "./chunk-7ZJN4KLV.js";
20
20
  import "./chunk-KHYD3WXE.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jinzd-ai-cli",
3
- "version": "0.4.135",
3
+ "version": "0.4.137",
4
4
  "description": "Cross-platform REPL-style AI CLI with multi-provider support",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",