agentv 4.30.0 → 4.31.0-next.1

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.
Files changed (26) hide show
  1. package/dist/{artifact-writer-JJLJUUUY.js → artifact-writer-K4B2S7OE.js} +4 -4
  2. package/dist/{chunk-L3FMZXCD.js → chunk-2Z2V7RJO.js} +12 -29
  3. package/dist/{chunk-L3FMZXCD.js.map → chunk-2Z2V7RJO.js.map} +1 -1
  4. package/dist/{chunk-B2YJVU72.js → chunk-BCZHBAUK.js} +43 -55
  5. package/dist/chunk-BCZHBAUK.js.map +1 -0
  6. package/dist/{chunk-YFVD6FC6.js → chunk-BMSSZSND.js} +3 -3
  7. package/dist/{chunk-LUZRCQNH.js → chunk-FLSABQ33.js} +12 -12
  8. package/dist/chunk-FLSABQ33.js.map +1 -0
  9. package/dist/{chunk-J4AMO3MD.js → chunk-NACNTFNH.js} +9 -9
  10. package/dist/{chunk-J4AMO3MD.js.map → chunk-NACNTFNH.js.map} +1 -1
  11. package/dist/cli.js +5 -5
  12. package/dist/{dist-GYCHDLTZ.js → dist-2E6ZNN32.js} +5 -5
  13. package/dist/index.js +5 -5
  14. package/dist/{interactive-DIQOOZX4.js → interactive-22PLS22Z.js} +5 -5
  15. package/dist/studio/assets/{index-SVeKAE-f.js → index-Bh_LwYWq.js} +1 -1
  16. package/dist/studio/assets/{index-BUmBj4ej.js → index-DsVyXC9S.js} +1 -1
  17. package/dist/studio/index.html +1 -1
  18. package/dist/{ts-eval-loader-JL5DGTJL-U5LTKGOE.js → ts-eval-loader-TWWSN6OX-VRZ43CUR.js} +2 -2
  19. package/package.json +1 -1
  20. package/dist/chunk-B2YJVU72.js.map +0 -1
  21. package/dist/chunk-LUZRCQNH.js.map +0 -1
  22. /package/dist/{artifact-writer-JJLJUUUY.js.map → artifact-writer-K4B2S7OE.js.map} +0 -0
  23. /package/dist/{chunk-YFVD6FC6.js.map → chunk-BMSSZSND.js.map} +0 -0
  24. /package/dist/{dist-GYCHDLTZ.js.map → dist-2E6ZNN32.js.map} +0 -0
  25. /package/dist/{interactive-DIQOOZX4.js.map → interactive-22PLS22Z.js.map} +0 -0
  26. /package/dist/{ts-eval-loader-JL5DGTJL-U5LTKGOE.js.map → ts-eval-loader-TWWSN6OX-VRZ43CUR.js.map} +0 -0
@@ -45,7 +45,7 @@ import {
45
45
  validateFileReferences,
46
46
  validateTargetsFile,
47
47
  validateWorkspacePaths
48
- } from "./chunk-B2YJVU72.js";
48
+ } from "./chunk-BCZHBAUK.js";
49
49
  import {
50
50
  RESULT_INDEX_FILENAME,
51
51
  aggregateRunDir,
@@ -53,7 +53,7 @@ import {
53
53
  resolveRunManifestPath,
54
54
  toSnakeCaseDeep as toSnakeCaseDeep2,
55
55
  writeArtifactsFromResults
56
- } from "./chunk-YFVD6FC6.js";
56
+ } from "./chunk-BMSSZSND.js";
57
57
  import {
58
58
  DEFAULT_CATEGORY,
59
59
  addProject,
@@ -73,7 +73,7 @@ import {
73
73
  toTranscriptJsonLines,
74
74
  transpileEvalYamlFile,
75
75
  trimBaselineResult
76
- } from "./chunk-LUZRCQNH.js";
76
+ } from "./chunk-FLSABQ33.js";
77
77
  import {
78
78
  DEFAULT_THRESHOLD,
79
79
  createBuiltinRegistry,
@@ -103,7 +103,7 @@ import {
103
103
  runStartsWithAssertion,
104
104
  toCamelCaseDeep,
105
105
  toSnakeCaseDeep
106
- } from "./chunk-L3FMZXCD.js";
106
+ } from "./chunk-2Z2V7RJO.js";
107
107
  import {
108
108
  __commonJS,
109
109
  __require,
@@ -4053,7 +4053,7 @@ var evalRunCommand = command({
4053
4053
  },
4054
4054
  handler: async (args) => {
4055
4055
  if (args.evalPaths.length === 0 && process.stdin.isTTY) {
4056
- const { launchInteractiveWizard } = await import("./interactive-DIQOOZX4.js");
4056
+ const { launchInteractiveWizard } = await import("./interactive-22PLS22Z.js");
4057
4057
  await launchInteractiveWizard();
4058
4058
  return;
4059
4059
  }
@@ -11148,17 +11148,17 @@ async function handleRunLog(c4, { searchDir }) {
11148
11148
  const meta = await findRunById(searchDir, filename);
11149
11149
  if (!meta) return c4.json({ error: "Run not found" }, 404);
11150
11150
  if (meta.source === "remote") {
11151
- return c4.json({ error: "Console log is not available for remote runs" }, 404);
11151
+ return c4.json({ error: "Run log is not available for remote runs" }, 404);
11152
11152
  }
11153
11153
  const logPath = path21.join(path21.dirname(meta.path), "console.log");
11154
11154
  if (!existsSync15(logPath)) {
11155
- return c4.json({ error: "Console log not found for this run" }, 404);
11155
+ return c4.json({ error: "Run log not found for this run" }, 404);
11156
11156
  }
11157
11157
  try {
11158
11158
  const content = readFileSync12(logPath, "utf8");
11159
11159
  return c4.text(content);
11160
11160
  } catch {
11161
- return c4.json({ error: "Failed to read console log" }, 500);
11161
+ return c4.json({ error: "Failed to read run log" }, 500);
11162
11162
  }
11163
11163
  }
11164
11164
  async function handleRunDetail(c4, { searchDir }) {
@@ -13583,4 +13583,4 @@ export {
13583
13583
  preprocessArgv,
13584
13584
  runCli
13585
13585
  };
13586
- //# sourceMappingURL=chunk-J4AMO3MD.js.map
13586
+ //# sourceMappingURL=chunk-NACNTFNH.js.map