nexus-agents 2.111.0 → 2.112.0
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-JEAS3Q3P.js → chunk-6LFHI2KF.js} +2 -2
- package/dist/{chunk-G6JFRU5Z.js → chunk-7EYPNMFQ.js} +7 -4
- package/dist/{chunk-G6JFRU5Z.js.map → chunk-7EYPNMFQ.js.map} +1 -1
- package/dist/{chunk-RHJLO7F4.js → chunk-7XAA2CSJ.js} +60 -6
- package/dist/{chunk-RHJLO7F4.js.map → chunk-7XAA2CSJ.js.map} +1 -1
- package/dist/cli.js +3 -3
- package/dist/index.js +2 -2
- package/dist/{setup-command-YJEJM76A.js → setup-command-TEKCWGGU.js} +3 -3
- package/package.json +1 -1
- /package/dist/{chunk-JEAS3Q3P.js.map → chunk-6LFHI2KF.js.map} +0 -0
- /package/dist/{setup-command-YJEJM76A.js.map → setup-command-TEKCWGGU.js.map} +0 -0
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
checkSqlite,
|
|
9
9
|
defaultConfig,
|
|
10
10
|
initDataDirectories
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-7EYPNMFQ.js";
|
|
12
12
|
import {
|
|
13
13
|
probeAllClis
|
|
14
14
|
} from "./chunk-F2ULTSZ6.js";
|
|
@@ -1987,4 +1987,4 @@ export {
|
|
|
1987
1987
|
setupCommand,
|
|
1988
1988
|
setupCommandAsync
|
|
1989
1989
|
};
|
|
1990
|
-
//# sourceMappingURL=chunk-
|
|
1990
|
+
//# sourceMappingURL=chunk-6LFHI2KF.js.map
|
|
@@ -40,7 +40,7 @@ import {
|
|
|
40
40
|
} from "./chunk-CH7QIDHQ.js";
|
|
41
41
|
|
|
42
42
|
// src/version.ts
|
|
43
|
-
var VERSION = true ? "2.
|
|
43
|
+
var VERSION = true ? "2.112.0" : "dev";
|
|
44
44
|
|
|
45
45
|
// src/config/schemas-core.ts
|
|
46
46
|
import { z } from "zod";
|
|
@@ -1688,7 +1688,10 @@ var HARNESS_FILES = [
|
|
|
1688
1688
|
{ harness: "Windsurf", path: ".windsurf/rules/agents.md" },
|
|
1689
1689
|
{ harness: "Aider", path: ".aider.conf.yml" },
|
|
1690
1690
|
{ harness: "Continue", path: ".continue/rules/agents.md" },
|
|
1691
|
-
{ harness: "Cline", path: ".clinerules/agents.md" }
|
|
1691
|
+
{ harness: "Cline", path: ".clinerules/agents.md" },
|
|
1692
|
+
// Gemini CLI reads a root-level GEMINI.md natively (unlike the .rules/-dir
|
|
1693
|
+
// harnesses); it redirects to AGENTS.md per the federation (#3446 Phase 4).
|
|
1694
|
+
{ harness: "Gemini", path: "GEMINI.md" }
|
|
1692
1695
|
];
|
|
1693
1696
|
function checkHarnessAlignment(cwd = process.cwd()) {
|
|
1694
1697
|
const agentsMdPath = join2(cwd, "AGENTS.md");
|
|
@@ -2096,7 +2099,7 @@ async function runDoctorFix(result) {
|
|
|
2096
2099
|
writeLine2("\u2500".repeat(40));
|
|
2097
2100
|
let fixCount = 0;
|
|
2098
2101
|
if (!result.dataDirectory.rootExists || result.dataDirectory.subdirectories.some((d) => !d.exists || !d.writable)) {
|
|
2099
|
-
const { runSetup } = await import("./setup-command-
|
|
2102
|
+
const { runSetup } = await import("./setup-command-TEKCWGGU.js");
|
|
2100
2103
|
const setupResult = runSetup({
|
|
2101
2104
|
skipMcp: true,
|
|
2102
2105
|
skipRules: true,
|
|
@@ -2208,4 +2211,4 @@ export {
|
|
|
2208
2211
|
startStdioServer,
|
|
2209
2212
|
closeServer
|
|
2210
2213
|
};
|
|
2211
|
-
//# sourceMappingURL=chunk-
|
|
2214
|
+
//# sourceMappingURL=chunk-7EYPNMFQ.js.map
|