nexus-agents 2.48.0 → 2.52.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-UXRR7M6E.js → chunk-B6AFGOS5.js} +724 -696
- package/dist/chunk-B6AFGOS5.js.map +1 -0
- package/dist/{chunk-KC3NUWZT.js → chunk-CYTWXE7N.js} +54 -2
- package/dist/chunk-CYTWXE7N.js.map +1 -0
- package/dist/{chunk-CH722DBX.js → chunk-DUF6MXMY.js} +2 -2
- package/dist/{chunk-E24JT23A.js → chunk-O6GZH7GZ.js} +3 -3
- package/dist/chunk-O6GZH7GZ.js.map +1 -0
- package/dist/{chunk-M53BBBCB.js → chunk-QGM2CANY.js} +3 -3
- package/dist/cli.js +23 -9
- package/dist/cli.js.map +1 -1
- package/dist/{consensus-vote-N5RRFYER.js → consensus-vote-VFTADRFB.js} +2 -2
- package/dist/index.d.ts +366 -323
- package/dist/index.js +9 -5
- package/dist/index.js.map +1 -1
- package/dist/{issue-triage-VLP2PXR6.js → issue-triage-2YK6NOJD.js} +2 -2
- package/dist/{setup-command-PLGFVKLM.js → setup-command-OETFAZUF.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-E24JT23A.js.map +0 -1
- package/dist/chunk-KC3NUWZT.js.map +0 -1
- package/dist/chunk-UXRR7M6E.js.map +0 -1
- /package/dist/{chunk-CH722DBX.js.map → chunk-DUF6MXMY.js.map} +0 -0
- /package/dist/{chunk-M53BBBCB.js.map → chunk-QGM2CANY.js.map} +0 -0
- /package/dist/{consensus-vote-N5RRFYER.js.map → consensus-vote-VFTADRFB.js.map} +0 -0
- /package/dist/{issue-triage-VLP2PXR6.js.map → issue-triage-2YK6NOJD.js.map} +0 -0
- /package/dist/{setup-command-PLGFVKLM.js.map → setup-command-OETFAZUF.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -143,6 +143,7 @@ import {
|
|
|
143
143
|
GraphBuilder,
|
|
144
144
|
HarnessExecutor,
|
|
145
145
|
HarnessExecutorError,
|
|
146
|
+
HarnessVerifyAdapter,
|
|
146
147
|
ICTMConfigSchema,
|
|
147
148
|
ICTMInferenceResultSchema,
|
|
148
149
|
InMemoryAuditStorage,
|
|
@@ -631,6 +632,7 @@ import {
|
|
|
631
632
|
transformHarnessProgress,
|
|
632
633
|
transformInstanceResult,
|
|
633
634
|
transformTestResult,
|
|
635
|
+
translateEvaluationResult,
|
|
634
636
|
updateContext,
|
|
635
637
|
validateCapabilities,
|
|
636
638
|
validateCommand,
|
|
@@ -656,7 +658,7 @@ import {
|
|
|
656
658
|
validateWorkflowDependencies,
|
|
657
659
|
withLogging,
|
|
658
660
|
writePredictions
|
|
659
|
-
} from "./chunk-
|
|
661
|
+
} from "./chunk-B6AFGOS5.js";
|
|
660
662
|
import {
|
|
661
663
|
getTokenEnvVars,
|
|
662
664
|
hasToken,
|
|
@@ -779,7 +781,7 @@ import {
|
|
|
779
781
|
validateApiKeyPresence,
|
|
780
782
|
validateToolInput,
|
|
781
783
|
withTimeout
|
|
782
|
-
} from "./chunk-
|
|
784
|
+
} from "./chunk-CYTWXE7N.js";
|
|
783
785
|
import "./chunk-2TV2R2V4.js";
|
|
784
786
|
import {
|
|
785
787
|
AgentActionSchema,
|
|
@@ -813,7 +815,7 @@ import {
|
|
|
813
815
|
sanitizeInput,
|
|
814
816
|
validateAgentAction,
|
|
815
817
|
validateCorroboration
|
|
816
|
-
} from "./chunk-
|
|
818
|
+
} from "./chunk-O6GZH7GZ.js";
|
|
817
819
|
import {
|
|
818
820
|
GitHubProvider,
|
|
819
821
|
ScmError
|
|
@@ -851,7 +853,7 @@ import {
|
|
|
851
853
|
connectTransport,
|
|
852
854
|
createServer,
|
|
853
855
|
startStdioServer
|
|
854
|
-
} from "./chunk-
|
|
856
|
+
} from "./chunk-QGM2CANY.js";
|
|
855
857
|
import "./chunk-ULDKSIS7.js";
|
|
856
858
|
import {
|
|
857
859
|
MemoryError
|
|
@@ -6687,7 +6689,7 @@ function buildVotingInput(plan, config) {
|
|
|
6687
6689
|
}
|
|
6688
6690
|
async function executeSingleVote(plan, config, log) {
|
|
6689
6691
|
try {
|
|
6690
|
-
const { executeVoting } = await import("./consensus-vote-
|
|
6692
|
+
const { executeVoting } = await import("./consensus-vote-VFTADRFB.js");
|
|
6691
6693
|
const input = buildVotingInput(plan, config);
|
|
6692
6694
|
const result = await executeVoting(input, log);
|
|
6693
6695
|
return parseVotingResult(result);
|
|
@@ -7025,6 +7027,7 @@ export {
|
|
|
7025
7027
|
HARM_PHYSICAL_CATEGORY,
|
|
7026
7028
|
HarnessExecutor,
|
|
7027
7029
|
HarnessExecutorError,
|
|
7030
|
+
HarnessVerifyAdapter,
|
|
7028
7031
|
HigherOrderVotingConfigSchema,
|
|
7029
7032
|
HigherOrderVotingResultSchema,
|
|
7030
7033
|
HigherOrderVotingStrategy,
|
|
@@ -7811,6 +7814,7 @@ export {
|
|
|
7811
7814
|
transformInstanceResult,
|
|
7812
7815
|
transformStream,
|
|
7813
7816
|
transformTestResult,
|
|
7817
|
+
translateEvaluationResult,
|
|
7814
7818
|
unwrap,
|
|
7815
7819
|
unwrapOr,
|
|
7816
7820
|
updateContext,
|