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.
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-
|
|
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-
|
|
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);
|