nexus-agents 2.99.0 → 2.100.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.
Files changed (27) hide show
  1. package/dist/{chunk-O6EXYWHP.js → chunk-B364VMMP.js} +144 -82
  2. package/dist/{chunk-O6EXYWHP.js.map → chunk-B364VMMP.js.map} +1 -1
  3. package/dist/{chunk-VPH2M5H7.js → chunk-BFN7RO3R.js} +4 -4
  4. package/dist/{chunk-VPH2M5H7.js.map → chunk-BFN7RO3R.js.map} +1 -1
  5. package/dist/{chunk-WHFCVKAV.js → chunk-FU2AMASK.js} +3 -3
  6. package/dist/{chunk-6IHEDRKI.js → chunk-H4LBBFCO.js} +2 -2
  7. package/dist/{chunk-EM7NUGMG.js → chunk-P453545L.js} +21 -2
  8. package/dist/chunk-P453545L.js.map +1 -0
  9. package/dist/{chunk-AN3IGMJT.js → chunk-TYELRYRO.js} +9 -4
  10. package/dist/chunk-TYELRYRO.js.map +1 -0
  11. package/dist/cli.js +12 -7
  12. package/dist/cli.js.map +1 -1
  13. package/dist/{consensus-vote-5D7FNWYM.js → consensus-vote-PGOS5AA6.js} +3 -3
  14. package/dist/{expert-bridge-EOVHUCJ4.js → expert-bridge-L25WFHQF.js} +2 -2
  15. package/dist/{factory-NJRJAZKK.js → factory-PVN7DDNZ.js} +2 -2
  16. package/dist/index.d.ts +27 -0
  17. package/dist/index.js +6 -6
  18. package/dist/{setup-command-PHTP43V7.js → setup-command-RRBGCIBW.js} +4 -4
  19. package/package.json +1 -1
  20. package/dist/chunk-AN3IGMJT.js.map +0 -1
  21. package/dist/chunk-EM7NUGMG.js.map +0 -1
  22. /package/dist/{chunk-WHFCVKAV.js.map → chunk-FU2AMASK.js.map} +0 -0
  23. /package/dist/{chunk-6IHEDRKI.js.map → chunk-H4LBBFCO.js.map} +0 -0
  24. /package/dist/{consensus-vote-5D7FNWYM.js.map → consensus-vote-PGOS5AA6.js.map} +0 -0
  25. /package/dist/{expert-bridge-EOVHUCJ4.js.map → expert-bridge-L25WFHQF.js.map} +0 -0
  26. /package/dist/{factory-NJRJAZKK.js.map → factory-PVN7DDNZ.js.map} +0 -0
  27. /package/dist/{setup-command-PHTP43V7.js.map → setup-command-RRBGCIBW.js.map} +0 -0
package/dist/cli.js CHANGED
@@ -24,7 +24,7 @@ import {
24
24
  import {
25
25
  setupCommandAsync,
26
26
  verifyCommand
27
- } from "./chunk-WHFCVKAV.js";
27
+ } from "./chunk-FU2AMASK.js";
28
28
  import "./chunk-HFNHJZOK.js";
29
29
  import {
30
30
  AuthHandler,
@@ -164,7 +164,7 @@ import {
164
164
  validateCommand,
165
165
  validateWorkflow,
166
166
  wrapInMarkdownFence
167
- } from "./chunk-O6EXYWHP.js";
167
+ } from "./chunk-B364VMMP.js";
168
168
  import "./chunk-3ACDP4E6.js";
169
169
  import {
170
170
  resolveToken
@@ -177,7 +177,7 @@ import "./chunk-SU7RKNIZ.js";
177
177
  import "./chunk-V2C2MC6H.js";
178
178
  import {
179
179
  shutdownExpertBridge
180
- } from "./chunk-6IHEDRKI.js";
180
+ } from "./chunk-H4LBBFCO.js";
181
181
  import {
182
182
  DEFAULT_VOTE_TIMEOUT_MS,
183
183
  ErrorPolicySchema,
@@ -187,7 +187,7 @@ import {
187
187
  executeVoting,
188
188
  registerConsensusVoteTool,
189
189
  warnIfSimulatedOutsideTests
190
- } from "./chunk-AN3IGMJT.js";
190
+ } from "./chunk-TYELRYRO.js";
191
191
  import "./chunk-BO6QUVXI.js";
192
192
  import "./chunk-J76KHBF3.js";
193
193
  import {
@@ -249,7 +249,7 @@ import {
249
249
  loadConfig,
250
250
  runDoctor,
251
251
  validateNexusEnv
252
- } from "./chunk-VPH2M5H7.js";
252
+ } from "./chunk-BFN7RO3R.js";
253
253
  import "./chunk-HBZUXO4Q.js";
254
254
  import "./chunk-CJODZY4U.js";
255
255
  import {
@@ -266,7 +266,7 @@ import {
266
266
  getAvailableClis,
267
267
  isRecord,
268
268
  probeAllClis
269
- } from "./chunk-EM7NUGMG.js";
269
+ } from "./chunk-P453545L.js";
270
270
  import "./chunk-A7XUXJWL.js";
271
271
  import "./chunk-AH67WRET.js";
272
272
  import "./chunk-ZM4O442V.js";
@@ -17152,6 +17152,10 @@ var DevPipelineInputSchema = z8.object({
17152
17152
  /** Pipeline execution mode. */
17153
17153
  mode: z8.enum(["autonomous", "harness"]).default("autonomous").describe(
17154
17154
  "'autonomous': full pipeline. 'harness': stops after decompose, returns tasks for caller to implement."
17155
+ ),
17156
+ /** Local pre-ship quality gate (typecheck/lint/tests) mode (#3356). */
17157
+ qualityGate: z8.enum(["off", "advisory", "blocking"]).default("off").describe(
17158
+ "Pre-ship local quality gate. 'off' (default): skip. 'advisory': run + record feedback, never fail. 'blocking': a red gate fails the pipeline."
17155
17159
  )
17156
17160
  });
17157
17161
  async function resolveTaskInput(input) {
@@ -17224,7 +17228,8 @@ async function runDevPipelineHandler(args, logger18) {
17224
17228
  const pipelineOptions = {
17225
17229
  ...input.sessionId !== void 0 ? { sessionId: input.sessionId } : {},
17226
17230
  ...input.dryRun ? { dryRun: true } : {},
17227
- ...input.mode === "harness" ? { mode: "harness" } : {}
17231
+ ...input.mode === "harness" ? { mode: "harness" } : {},
17232
+ ...input.qualityGate !== "off" ? { qualityGate: input.qualityGate } : {}
17228
17233
  };
17229
17234
  const hasOptions = Object.keys(pipelineOptions).length > 0;
17230
17235
  const result = await runDevPipeline(taskText, stages, hasOptions ? pipelineOptions : void 0);