jinzd-ai-cli 0.2.25 → 0.2.26
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/{chunk-SVYDE375.js → chunk-3PBMD3H6.js} +1 -1
- package/dist/{chunk-Q7YDWBRA.js → chunk-BSUW2USA.js} +1 -1
- package/dist/index.js +5 -4
- package/dist/{run-tests-XBOM5EGQ.js → run-tests-GPPAKSCT.js} +1 -1
- package/dist/{server-XFUSRZEO.js → server-HSGK6BPN.js} +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -36,7 +36,7 @@ import {
|
|
|
36
36
|
theme,
|
|
37
37
|
truncateOutput,
|
|
38
38
|
undoStack
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-BSUW2USA.js";
|
|
40
40
|
import {
|
|
41
41
|
AGENTIC_BEHAVIOR_GUIDELINE,
|
|
42
42
|
AUTHOR,
|
|
@@ -56,7 +56,7 @@ import {
|
|
|
56
56
|
REPO_URL,
|
|
57
57
|
SKILLS_DIR_NAME,
|
|
58
58
|
VERSION
|
|
59
|
-
} from "./chunk-
|
|
59
|
+
} from "./chunk-3PBMD3H6.js";
|
|
60
60
|
|
|
61
61
|
// src/index.ts
|
|
62
62
|
import { program } from "commander";
|
|
@@ -866,6 +866,7 @@ function createDefaultCommands() {
|
|
|
866
866
|
" /bug [--copy] - Generate bug report template (--copy to clipboard)",
|
|
867
867
|
" /diff [--stats] - Show all file modifications in this session",
|
|
868
868
|
" /fork [checkpoint] - Fork session from checkpoint or current position",
|
|
869
|
+
" /yolo [on|off] - Toggle session auto-approve (skip confirmations)",
|
|
869
870
|
" /exit - Exit"
|
|
870
871
|
] : [];
|
|
871
872
|
console.log("\nAvailable commands:");
|
|
@@ -1905,7 +1906,7 @@ ${hint}` : "")
|
|
|
1905
1906
|
description: "Run project tests and show structured report",
|
|
1906
1907
|
usage: "/test [command|filter]",
|
|
1907
1908
|
async execute(args, _ctx) {
|
|
1908
|
-
const { executeTests } = await import("./run-tests-
|
|
1909
|
+
const { executeTests } = await import("./run-tests-GPPAKSCT.js");
|
|
1909
1910
|
const argStr = args.join(" ").trim();
|
|
1910
1911
|
let testArgs = {};
|
|
1911
1912
|
if (argStr) {
|
|
@@ -5515,7 +5516,7 @@ program.command("web").description("Start Web UI server with browser-based chat
|
|
|
5515
5516
|
console.error("Error: Invalid port number. Must be between 1 and 65535.");
|
|
5516
5517
|
process.exit(1);
|
|
5517
5518
|
}
|
|
5518
|
-
const { startWebServer } = await import("./server-
|
|
5519
|
+
const { startWebServer } = await import("./server-HSGK6BPN.js");
|
|
5519
5520
|
await startWebServer({ port, host: options.host });
|
|
5520
5521
|
});
|
|
5521
5522
|
program.command("user [action] [username]").description("Manage Web UI users (list | create <name> | delete <name> | reset-password <name> | migrate <name>)").action(async (action, username) => {
|
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
setupProxy,
|
|
25
25
|
spawnAgentContext,
|
|
26
26
|
truncateOutput
|
|
27
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-BSUW2USA.js";
|
|
28
28
|
import {
|
|
29
29
|
AGENTIC_BEHAVIOR_GUIDELINE,
|
|
30
30
|
CONTEXT_FILE_CANDIDATES,
|
|
@@ -36,7 +36,7 @@ import {
|
|
|
36
36
|
PLAN_MODE_SYSTEM_ADDON,
|
|
37
37
|
SKILLS_DIR_NAME,
|
|
38
38
|
VERSION
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-3PBMD3H6.js";
|
|
40
40
|
import {
|
|
41
41
|
AuthManager
|
|
42
42
|
} from "./chunk-CPLT6CD3.js";
|