agentv 4.24.0 → 4.24.1-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.
- package/dist/{artifact-writer-7CKE5ILM.js → artifact-writer-SHHWQAXG.js} +4 -4
- package/dist/{chunk-D5HCHBPT.js → chunk-5CC472UM.js} +3 -5
- package/dist/{chunk-D5HCHBPT.js.map → chunk-5CC472UM.js.map} +1 -1
- package/dist/{chunk-EFA3SBAY.js → chunk-BTSHFGH3.js} +47 -17
- package/dist/{chunk-EFA3SBAY.js.map → chunk-BTSHFGH3.js.map} +1 -1
- package/dist/{chunk-KTHVVL7Q.js → chunk-OQKETJT6.js} +3 -3
- package/dist/{chunk-NM4NQSUT.js → chunk-QCNJEI4K.js} +6 -6
- package/dist/{chunk-HL3MTSIW.js → chunk-XGWXNNH6.js} +7 -7
- package/dist/{chunk-HL3MTSIW.js.map → chunk-XGWXNNH6.js.map} +1 -1
- package/dist/cli.js +5 -5
- package/dist/{dist-IA3D556U.js → dist-AWHCD22R.js} +3 -3
- package/dist/index.js +5 -5
- package/dist/{interactive-4NRIFB5R.js → interactive-AAYWH73N.js} +5 -5
- package/dist/studio/assets/{index-jBBmFdWd.js → index-8Vc4sq0b.js} +1 -1
- package/dist/studio/assets/index-C25w7gi1.js +116 -0
- package/dist/studio/index.html +1 -1
- package/dist/{ts-eval-loader-SYQYQPMC-FKU23VX3.js → ts-eval-loader-F7Y5QBKH-RTDAVGXO.js} +2 -2
- package/package.json +1 -1
- package/dist/studio/assets/index-DZpM1lzZ.js +0 -116
- /package/dist/{artifact-writer-7CKE5ILM.js.map → artifact-writer-SHHWQAXG.js.map} +0 -0
- /package/dist/{chunk-KTHVVL7Q.js.map → chunk-OQKETJT6.js.map} +0 -0
- /package/dist/{chunk-NM4NQSUT.js.map → chunk-QCNJEI4K.js.map} +0 -0
- /package/dist/{dist-IA3D556U.js.map → dist-AWHCD22R.js.map} +0 -0
- /package/dist/{interactive-4NRIFB5R.js.map → interactive-AAYWH73N.js.map} +0 -0
- /package/dist/{ts-eval-loader-SYQYQPMC-FKU23VX3.js.map → ts-eval-loader-F7Y5QBKH-RTDAVGXO.js.map} +0 -0
|
@@ -13,11 +13,11 @@ import {
|
|
|
13
13
|
writeArtifacts,
|
|
14
14
|
writeArtifactsFromResults,
|
|
15
15
|
writePerTestArtifacts
|
|
16
|
-
} from "./chunk-
|
|
17
|
-
import "./chunk-
|
|
16
|
+
} from "./chunk-OQKETJT6.js";
|
|
17
|
+
import "./chunk-5CC472UM.js";
|
|
18
18
|
import "./chunk-QOBQ5XYF.js";
|
|
19
19
|
import "./chunk-BPGJ4HBU.js";
|
|
20
|
-
import "./chunk-
|
|
20
|
+
import "./chunk-XGWXNNH6.js";
|
|
21
21
|
import "./chunk-ZKO2LGRR.js";
|
|
22
22
|
import "./chunk-NPVGBFF6.js";
|
|
23
23
|
import "./chunk-HQDCIXVH.js";
|
|
@@ -38,4 +38,4 @@ export {
|
|
|
38
38
|
writeArtifactsFromResults,
|
|
39
39
|
writePerTestArtifacts
|
|
40
40
|
};
|
|
41
|
-
//# sourceMappingURL=artifact-writer-
|
|
41
|
+
//# sourceMappingURL=artifact-writer-SHHWQAXG.js.map
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
parseYamlValue,
|
|
13
13
|
toCamelCaseDeep,
|
|
14
14
|
toSnakeCaseDeep
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-XGWXNNH6.js";
|
|
16
16
|
|
|
17
17
|
// ../../packages/core/dist/index.js
|
|
18
18
|
import { readFileSync } from "node:fs";
|
|
@@ -1557,8 +1557,6 @@ var RunBudgetTracker = class {
|
|
|
1557
1557
|
return this.capUsd;
|
|
1558
1558
|
}
|
|
1559
1559
|
};
|
|
1560
|
-
var ANSI_YELLOW = "\x1B[33m";
|
|
1561
|
-
var ANSI_RESET = "\x1B[0m";
|
|
1562
1560
|
function parseEnvOutput(stdout) {
|
|
1563
1561
|
const result = {};
|
|
1564
1562
|
for (const line of stdout.split("\n")) {
|
|
@@ -1581,7 +1579,7 @@ function runBeforeSessionHook(command) {
|
|
|
1581
1579
|
const isWindows = process.platform === "win32";
|
|
1582
1580
|
const shell = isWindows ? "cmd" : "sh";
|
|
1583
1581
|
const shellFlag = isWindows ? "/c" : "-c";
|
|
1584
|
-
console.log(
|
|
1582
|
+
console.log(`Running before_session hook: ${command}`);
|
|
1585
1583
|
const result = spawnSync(shell, [shellFlag, command], {
|
|
1586
1584
|
encoding: "utf8",
|
|
1587
1585
|
// Do not inherit stdio — capture stdout for parsing, forward stderr manually
|
|
@@ -2269,4 +2267,4 @@ export {
|
|
|
2269
2267
|
TranscriptProvider,
|
|
2270
2268
|
createAgentKernel
|
|
2271
2269
|
};
|
|
2272
|
-
//# sourceMappingURL=chunk-
|
|
2270
|
+
//# sourceMappingURL=chunk-5CC472UM.js.map
|