jinzd-ai-cli 0.1.81 → 0.1.82
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-V6L5YODQ.js → chunk-53QOLO5G.js} +5 -2
- package/dist/{chunk-H7LFI7DR.js → chunk-FT3ADEOO.js} +1 -1
- package/dist/index.js +4 -4
- package/dist/{run-tests-2DBGW6UL.js → run-tests-UZ7FHZMQ.js} +1 -1
- package/dist/{server-ROU3ULQ7.js → server-XNXTXMUH.js} +2 -2
- package/package.json +1 -1
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
SUBAGENT_MAX_ROUNDS_LIMIT,
|
|
17
17
|
VERSION,
|
|
18
18
|
runTestsTool
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-FT3ADEOO.js";
|
|
20
20
|
|
|
21
21
|
// src/config/config-manager.ts
|
|
22
22
|
import { readFileSync, writeFileSync, existsSync, mkdirSync } from "fs";
|
|
@@ -5339,7 +5339,7 @@ import { basename as basename4 } from "path";
|
|
|
5339
5339
|
function parseSimpleYaml(yaml) {
|
|
5340
5340
|
const result = {};
|
|
5341
5341
|
for (const line of yaml.split("\n")) {
|
|
5342
|
-
const match = line.match(/^(\w+)\s*:\s*(.+)$/);
|
|
5342
|
+
const match = line.replace(/\r$/, "").match(/^(\w+)\s*:\s*(.+)$/);
|
|
5343
5343
|
if (match) {
|
|
5344
5344
|
result[match[1]] = match[2].trim().replace(/^['"]|['"]$/g, "");
|
|
5345
5345
|
}
|
|
@@ -5432,6 +5432,9 @@ var SkillManager = class {
|
|
|
5432
5432
|
}
|
|
5433
5433
|
const skill = parseSkillFile(filePath);
|
|
5434
5434
|
if (skill) {
|
|
5435
|
+
if (skill.meta.name === "SKILL" && !entry.endsWith(".md")) {
|
|
5436
|
+
skill.meta.name = entry;
|
|
5437
|
+
}
|
|
5435
5438
|
this.skills.set(skill.meta.name, skill);
|
|
5436
5439
|
if (skill.content.length > SKILL_CONTENT_WARN_CHARS) {
|
|
5437
5440
|
process.stderr.write(
|
package/dist/index.js
CHANGED
|
@@ -35,7 +35,7 @@ import {
|
|
|
35
35
|
theme,
|
|
36
36
|
truncateOutput,
|
|
37
37
|
undoStack
|
|
38
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-53QOLO5G.js";
|
|
39
39
|
import {
|
|
40
40
|
AGENTIC_BEHAVIOR_GUIDELINE,
|
|
41
41
|
AUTHOR,
|
|
@@ -55,7 +55,7 @@ import {
|
|
|
55
55
|
REPO_URL,
|
|
56
56
|
SKILLS_DIR_NAME,
|
|
57
57
|
VERSION
|
|
58
|
-
} from "./chunk-
|
|
58
|
+
} from "./chunk-FT3ADEOO.js";
|
|
59
59
|
|
|
60
60
|
// src/index.ts
|
|
61
61
|
import { program } from "commander";
|
|
@@ -1904,7 +1904,7 @@ ${hint}` : "")
|
|
|
1904
1904
|
description: "Run project tests and show structured report",
|
|
1905
1905
|
usage: "/test [command|filter]",
|
|
1906
1906
|
async execute(args, _ctx) {
|
|
1907
|
-
const { executeTests } = await import("./run-tests-
|
|
1907
|
+
const { executeTests } = await import("./run-tests-UZ7FHZMQ.js");
|
|
1908
1908
|
const argStr = args.join(" ").trim();
|
|
1909
1909
|
let testArgs = {};
|
|
1910
1910
|
if (argStr) {
|
|
@@ -5291,7 +5291,7 @@ program.command("web").description("Start Web UI server with browser-based chat
|
|
|
5291
5291
|
console.error("Error: Invalid port number. Must be between 1 and 65535.");
|
|
5292
5292
|
process.exit(1);
|
|
5293
5293
|
}
|
|
5294
|
-
const { startWebServer } = await import("./server-
|
|
5294
|
+
const { startWebServer } = await import("./server-XNXTXMUH.js");
|
|
5295
5295
|
await startWebServer({ port, host: options.host });
|
|
5296
5296
|
});
|
|
5297
5297
|
program.command("sessions").description("List recent conversation sessions").action(async () => {
|
|
@@ -23,7 +23,7 @@ import {
|
|
|
23
23
|
setupProxy,
|
|
24
24
|
spawnAgentContext,
|
|
25
25
|
truncateOutput
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-53QOLO5G.js";
|
|
27
27
|
import {
|
|
28
28
|
AGENTIC_BEHAVIOR_GUIDELINE,
|
|
29
29
|
CONTEXT_FILE_CANDIDATES,
|
|
@@ -36,7 +36,7 @@ import {
|
|
|
36
36
|
SKILLS_DIR_NAME,
|
|
37
37
|
VERSION,
|
|
38
38
|
__require
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-FT3ADEOO.js";
|
|
40
40
|
|
|
41
41
|
// src/web/server.ts
|
|
42
42
|
import express from "express";
|