nexus-agents 2.30.5 → 2.30.6
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-3QB7RYPU.js → chunk-23G7NV6B.js} +4 -3
- package/dist/chunk-23G7NV6B.js.map +1 -0
- package/dist/{chunk-VIT7VLL5.js → chunk-MD2ABS6R.js} +3 -3
- package/dist/{chunk-WZSC46BL.js → chunk-Q52QFWDQ.js} +2 -2
- package/dist/{chunk-MBFIXCG3.js → chunk-T7SJVP5R.js} +169 -65
- package/dist/chunk-T7SJVP5R.js.map +1 -0
- package/dist/{chunk-5HPIESKY.js → chunk-ZVUNIQLB.js} +4 -2
- package/dist/chunk-ZVUNIQLB.js.map +1 -0
- package/dist/cli.js +17 -6
- package/dist/cli.js.map +1 -1
- package/dist/{consensus-vote-APVO4C5T.js → consensus-vote-MFGKPIAO.js} +2 -2
- package/dist/{expert-bridge-7OFH3ZXI.js → expert-bridge-IKR23WRI.js} +2 -2
- package/dist/index.d.ts +5 -1
- package/dist/index.js +5 -5
- package/dist/{setup-command-JP65RU7R.js → setup-command-JVFJWD7A.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-3QB7RYPU.js.map +0 -1
- package/dist/chunk-5HPIESKY.js.map +0 -1
- package/dist/chunk-MBFIXCG3.js.map +0 -1
- /package/dist/{chunk-VIT7VLL5.js.map → chunk-MD2ABS6R.js.map} +0 -0
- /package/dist/{chunk-WZSC46BL.js.map → chunk-Q52QFWDQ.js.map} +0 -0
- /package/dist/{consensus-vote-APVO4C5T.js.map → consensus-vote-MFGKPIAO.js.map} +0 -0
- /package/dist/{expert-bridge-7OFH3ZXI.js.map → expert-bridge-IKR23WRI.js.map} +0 -0
- /package/dist/{setup-command-JP65RU7R.js.map → setup-command-JVFJWD7A.js.map} +0 -0
|
@@ -2211,9 +2211,10 @@ async function* bufferStream(stream, size, options = {}) {
|
|
|
2211
2211
|
}
|
|
2212
2212
|
|
|
2213
2213
|
// src/adapters/streaming.ts
|
|
2214
|
+
var DEFAULT_COLLECT_STREAM_MAX_CHUNKS = 1e5;
|
|
2214
2215
|
async function collectStream(stream, options = {}) {
|
|
2215
2216
|
const chunks = [];
|
|
2216
|
-
const maxChunks = options.maxChunks ??
|
|
2217
|
+
const maxChunks = options.maxChunks ?? DEFAULT_COLLECT_STREAM_MAX_CHUNKS;
|
|
2217
2218
|
try {
|
|
2218
2219
|
for await (const chunk of stream) {
|
|
2219
2220
|
if (options.signal?.aborted === true) {
|
|
@@ -12346,7 +12347,7 @@ async function processVotesWithCascade(votes, opts) {
|
|
|
12346
12347
|
var CONTRARIAN_ESCALATION_THRESHOLD = 0.8;
|
|
12347
12348
|
async function runContrarianCheck(proposal, log) {
|
|
12348
12349
|
try {
|
|
12349
|
-
const { executeExpert } = await import("./expert-bridge-
|
|
12350
|
+
const { executeExpert } = await import("./expert-bridge-IKR23WRI.js");
|
|
12350
12351
|
const prompt = [
|
|
12351
12352
|
"You are a contrarian analyst. Your job is to find reasons this proposal should be REJECTED.",
|
|
12352
12353
|
"Look for: YAGNI (not needed), MISALIGNED (wrong tech/architecture), SECURITY_RISK, SCOPE_CREEP.",
|
|
@@ -12716,4 +12717,4 @@ export {
|
|
|
12716
12717
|
CONSENSUS_VOTE_OUTPUT_SCHEMA,
|
|
12717
12718
|
registerConsensusVoteTool
|
|
12718
12719
|
};
|
|
12719
|
-
//# sourceMappingURL=chunk-
|
|
12720
|
+
//# sourceMappingURL=chunk-23G7NV6B.js.map
|