agentv 4.15.9 → 4.16.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-3GULESPF.js → chunk-IRU2UOWN.js} +321 -241
- package/dist/chunk-IRU2UOWN.js.map +1 -0
- package/dist/{chunk-BMPIWUEE.js → chunk-NENUAMR5.js} +52 -24
- package/dist/chunk-NENUAMR5.js.map +1 -0
- package/dist/{chunk-NWHF3BEO.js → chunk-TA2KF32T.js} +8 -8
- package/dist/{chunk-NWHF3BEO.js.map → chunk-TA2KF32T.js.map} +1 -1
- package/dist/cli.js +3 -3
- package/dist/{dist-D45MEPD7.js → dist-U5EXNMON.js} +6 -2
- package/dist/index.js +3 -3
- package/dist/{interactive-AF3EC5PG.js → interactive-IWGFP7T2.js} +7 -7
- package/dist/{interactive-AF3EC5PG.js.map → interactive-IWGFP7T2.js.map} +1 -1
- package/package.json +1 -1
- package/dist/chunk-3GULESPF.js.map +0 -1
- package/dist/chunk-BMPIWUEE.js.map +0 -1
- /package/dist/{dist-D45MEPD7.js.map → dist-U5EXNMON.js.map} +0 -0
|
@@ -44,7 +44,7 @@ import {
|
|
|
44
44
|
validateTargetsFile,
|
|
45
45
|
validateWorkspacePaths,
|
|
46
46
|
writeArtifactsFromResults
|
|
47
|
-
} from "./chunk-
|
|
47
|
+
} from "./chunk-NENUAMR5.js";
|
|
48
48
|
import {
|
|
49
49
|
DEFAULT_CATEGORY,
|
|
50
50
|
DEFAULT_THRESHOLD,
|
|
@@ -56,7 +56,7 @@ import {
|
|
|
56
56
|
discoverCodexSessions,
|
|
57
57
|
discoverCopilotSessions,
|
|
58
58
|
executeScript,
|
|
59
|
-
|
|
59
|
+
getAgentvConfigDir,
|
|
60
60
|
getBenchmark,
|
|
61
61
|
getOutputFilenames,
|
|
62
62
|
getWorkspacePoolRoot,
|
|
@@ -89,7 +89,7 @@ import {
|
|
|
89
89
|
toTranscriptJsonLines,
|
|
90
90
|
transpileEvalYamlFile,
|
|
91
91
|
trimBaselineResult
|
|
92
|
-
} from "./chunk-
|
|
92
|
+
} from "./chunk-IRU2UOWN.js";
|
|
93
93
|
import {
|
|
94
94
|
__commonJS,
|
|
95
95
|
__require,
|
|
@@ -3929,7 +3929,7 @@ var evalRunCommand = command({
|
|
|
3929
3929
|
},
|
|
3930
3930
|
handler: async (args) => {
|
|
3931
3931
|
if (args.evalPaths.length === 0 && process.stdin.isTTY) {
|
|
3932
|
-
const { launchInteractiveWizard } = await import("./interactive-
|
|
3932
|
+
const { launchInteractiveWizard } = await import("./interactive-IWGFP7T2.js");
|
|
3933
3933
|
await launchInteractiveWizard();
|
|
3934
3934
|
return;
|
|
3935
3935
|
}
|
|
@@ -10004,11 +10004,11 @@ import { spawn as spawn3 } from "node:child_process";
|
|
|
10004
10004
|
import { readFile as readFile8 } from "node:fs/promises";
|
|
10005
10005
|
import { join as join5 } from "node:path";
|
|
10006
10006
|
var CHECK_INTERVAL_MS = 24 * 60 * 60 * 1e3;
|
|
10007
|
-
var
|
|
10007
|
+
var CONFIG_DIR = getAgentvConfigDir();
|
|
10008
10008
|
var CACHE_FILE = "version-check.json";
|
|
10009
10009
|
var NPM_REGISTRY_URL = "https://registry.npmjs.org/agentv/latest";
|
|
10010
10010
|
async function getCachedUpdateInfo(path24) {
|
|
10011
|
-
const filePath = path24 ?? join5(
|
|
10011
|
+
const filePath = path24 ?? join5(CONFIG_DIR, CACHE_FILE);
|
|
10012
10012
|
try {
|
|
10013
10013
|
const raw = await readFile8(filePath, "utf-8");
|
|
10014
10014
|
const data = JSON.parse(raw);
|
|
@@ -10041,7 +10041,7 @@ function buildNotice(currentVersion, latestVersion) {
|
|
|
10041
10041
|
Run \`agentv self update\` to upgrade.`;
|
|
10042
10042
|
}
|
|
10043
10043
|
function backgroundUpdateCheck() {
|
|
10044
|
-
const dir =
|
|
10044
|
+
const dir = CONFIG_DIR;
|
|
10045
10045
|
const filePath = join5(dir, CACHE_FILE);
|
|
10046
10046
|
const script = `
|
|
10047
10047
|
const https = require('https');
|
|
@@ -10169,4 +10169,4 @@ export {
|
|
|
10169
10169
|
preprocessArgv,
|
|
10170
10170
|
runCli
|
|
10171
10171
|
};
|
|
10172
|
-
//# sourceMappingURL=chunk-
|
|
10172
|
+
//# sourceMappingURL=chunk-TA2KF32T.js.map
|