jinzd-ai-cli 0.1.68 → 0.1.69

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.
@@ -8,7 +8,7 @@ import { platform } from "os";
8
8
  import chalk from "chalk";
9
9
 
10
10
  // src/core/constants.ts
11
- var VERSION = "0.1.68";
11
+ var VERSION = "0.1.69";
12
12
  var APP_NAME = "ai-cli";
13
13
  var CONFIG_DIR_NAME = ".aicli";
14
14
  var CONFIG_FILE_NAME = "config.json";
package/dist/index.js CHANGED
@@ -30,7 +30,7 @@ import {
30
30
  SUBAGENT_MAX_ROUNDS_LIMIT,
31
31
  VERSION,
32
32
  runTestsTool
33
- } from "./chunk-K4Q235ZG.js";
33
+ } from "./chunk-3HISC6FK.js";
34
34
 
35
35
  // src/index.ts
36
36
  import { program } from "commander";
@@ -4598,7 +4598,7 @@ ${hint}` : "")
4598
4598
  description: "Run project tests and show structured report",
4599
4599
  usage: "/test [command|filter]",
4600
4600
  async execute(args, _ctx) {
4601
- const { executeTests } = await import("./run-tests-W7MNGH4I.js");
4601
+ const { executeTests } = await import("./run-tests-4MKYSWRR.js");
4602
4602
  const argStr = args.join(" ").trim();
4603
4603
  let testArgs = {};
4604
4604
  if (argStr) {
@@ -10584,7 +10584,14 @@ Session '${this.resumeSessionId}' not found.
10584
10584
  spawnAgentContext.systemPrompt = systemPrompt;
10585
10585
  spawnAgentContext.modelParams = modelParams;
10586
10586
  spawnAgentContext.configManager = this.config;
10587
+ if (this._interjectionHandler) {
10588
+ process.stdin.removeListener("data", this._interjectionHandler);
10589
+ }
10587
10590
  const toolResults = await this.toolExecutor.executeAll(result.toolCalls);
10591
+ if (this._interjectionHandler) {
10592
+ process.stdin.on("data", this._interjectionHandler);
10593
+ process.stdin.resume();
10594
+ }
10588
10595
  const reasoningContent = "reasoningContent" in result ? result.reasoningContent : void 0;
10589
10596
  const newMsgs = provider.buildToolResultMessages(result.toolCalls, toolResults, reasoningContent);
10590
10597
  extraMessages.push(...newMsgs);
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  executeTests,
4
4
  runTestsTool
5
- } from "./chunk-K4Q235ZG.js";
5
+ } from "./chunk-3HISC6FK.js";
6
6
  export {
7
7
  executeTests,
8
8
  runTestsTool
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jinzd-ai-cli",
3
- "version": "0.1.68",
3
+ "version": "0.1.69",
4
4
  "description": "Cross-platform REPL-style AI CLI with multi-provider support",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",