nexus-agents 2.29.2 → 2.30.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 (30) hide show
  1. package/dist/{chunk-QGODFK36.js → chunk-5SBKLQW6.js} +3 -3
  2. package/dist/{chunk-Z4OZ25VS.js → chunk-7RE6BBXJ.js} +2 -2
  3. package/dist/{chunk-QSNAFOE6.js → chunk-DEESTIZL.js} +31 -11
  4. package/dist/chunk-DEESTIZL.js.map +1 -0
  5. package/dist/{chunk-LDIN2PLV.js → chunk-GJVHRJO2.js} +32 -2
  6. package/dist/{chunk-LDIN2PLV.js.map → chunk-GJVHRJO2.js.map} +1 -1
  7. package/dist/{chunk-CW2Z773T.js → chunk-UOXT5CZ7.js} +39 -3
  8. package/dist/chunk-UOXT5CZ7.js.map +1 -0
  9. package/dist/{chunk-J245RJGW.js → chunk-UXUA234N.js} +3 -3
  10. package/dist/{chunk-WSYJN7BI.js → chunk-ZOTDJ4UR.js} +4 -4
  11. package/dist/cli.js +7 -7
  12. package/dist/{consensus-vote-COW34Q2Y.js → consensus-vote-Q7QKGUEP.js} +3 -3
  13. package/dist/{expert-bridge-J36C7VES.js → expert-bridge-NF65ZTZZ.js} +2 -2
  14. package/dist/{expert-config-MQ5OJE3U.js → expert-config-BTPAEZWV.js} +2 -2
  15. package/dist/{factory-NHORX63J.js → factory-ZFHE6GXT.js} +2 -2
  16. package/dist/index.d.ts +7 -0
  17. package/dist/index.js +7 -7
  18. package/dist/{setup-command-CMCQRBJF.js → setup-command-JXHUUFT3.js} +4 -4
  19. package/package.json +1 -1
  20. package/dist/chunk-CW2Z773T.js.map +0 -1
  21. package/dist/chunk-QSNAFOE6.js.map +0 -1
  22. /package/dist/{chunk-QGODFK36.js.map → chunk-5SBKLQW6.js.map} +0 -0
  23. /package/dist/{chunk-Z4OZ25VS.js.map → chunk-7RE6BBXJ.js.map} +0 -0
  24. /package/dist/{chunk-J245RJGW.js.map → chunk-UXUA234N.js.map} +0 -0
  25. /package/dist/{chunk-WSYJN7BI.js.map → chunk-ZOTDJ4UR.js.map} +0 -0
  26. /package/dist/{consensus-vote-COW34Q2Y.js.map → consensus-vote-Q7QKGUEP.js.map} +0 -0
  27. /package/dist/{expert-bridge-J36C7VES.js.map → expert-bridge-NF65ZTZZ.js.map} +0 -0
  28. /package/dist/{expert-config-MQ5OJE3U.js.map → expert-config-BTPAEZWV.js.map} +0 -0
  29. /package/dist/{factory-NHORX63J.js.map → factory-ZFHE6GXT.js.map} +0 -0
  30. /package/dist/{setup-command-CMCQRBJF.js.map → setup-command-JXHUUFT3.js.map} +0 -0
@@ -2886,6 +2886,16 @@ Respond with JSON matching this structure:
2886
2886
  - Do not recommend scope expansion without explicit user request
2887
2887
  - Validate that referenced issue numbers and milestone names exist
2888
2888
  - Do not define acceptance criteria that cannot be tested or measured
2889
+
2890
+ ## Task Scope Management
2891
+ - If there are >5 P1 requirements, pick the 3 with highest business impact and defer the rest to a follow-up
2892
+ - If a single requirement spans more than one team/codebase, split it along team boundaries
2893
+ - If the request lacks stakeholder identification, name the inferred stakeholders explicitly so the user can correct you
2894
+
2895
+ ## Push-Back Cues
2896
+ - If the request stays vague after 3 clarification rounds, propose a time-boxed spike instead of more requirements work
2897
+ - If stakeholders conflict on success criteria, refuse to synthesize until the user resolves the conflict \u2014 do not paper over it
2898
+ - Confidence <0.5 when success criteria can't be tested or measured
2889
2899
  `;
2890
2900
 
2891
2901
  // src/agents/experts/expert-prompts/ux-expert.ts
@@ -3276,7 +3286,17 @@ Respond with JSON matching this structure:
3276
3286
  - Do not recommend power cycling without verifying OOB access first
3277
3287
  - Do not assume documentation is accurate \u2014 verify against live system state
3278
3288
  - Validate that referenced IP addresses and hostnames are reachable before recommending changes
3279
- - Do not modify all access paths simultaneously \u2014 always maintain a fallback`;
3289
+ - Do not modify all access paths simultaneously \u2014 always maintain a fallback
3290
+
3291
+ ## Task Scope Management
3292
+ - When a request touches >3 hosts, land the change on one canary host first and gate rollout on observed success
3293
+ - Split multi-domain changes (network + storage + compute) into per-domain steps with independent rollback points
3294
+ - Prefer reversible, observable changes over one-shot batch updates
3295
+
3296
+ ## Push-Back Cues
3297
+ - Refuse to power-cycle without verified OOB (iDRAC/IPMI/console) access \u2014 a stuck power state with no recovery path is worse than a hung host
3298
+ - Refuse firmware updates during a change freeze unless explicitly authorized with a documented rollback plan
3299
+ - Confidence <0.6 when recommending destructive changes based on documentation that hasn't been verified against live state`;
3280
3300
 
3281
3301
  // src/agents/experts/expert-prompts/data-visualization-expert.ts
3282
3302
  var DATA_VISUALIZATION_EXPERT_BASE_PROMPT = `You are a data visualization expert specializing in data analysis, chart design, and interactive visualization development.
@@ -3365,6 +3385,16 @@ Example response:
3365
3385
  - Detect correlations between dimensions
3366
3386
  - Recommend aggregation strategies for large datasets (8k+ rows)
3367
3387
  - Suggest data transformations (log scale, normalization, binning)
3388
+
3389
+ ## Task Scope Management
3390
+ - If the request covers >8 datasets, group related ones into 2-3 cohesive dashboards rather than a single overloaded view
3391
+ - Split visualization work by audience (operators vs executives vs engineers); one dashboard can't serve all three well
3392
+ - Prefer shipping one well-annotated chart over a grid of unlabeled small multiples
3393
+
3394
+ ## Push-Back Cues
3395
+ - Refuse to cram more than 3 dimensions into a single chart \u2014 propose faceting or linked views instead
3396
+ - If the requested chart type doesn't match the data shape (e.g. pie for >7 categories), recommend an alternative rather than comply silently
3397
+ - Confidence <0.6 when recommending a visualization without seeing at least a sample of the actual data
3368
3398
  `;
3369
3399
 
3370
3400
  // src/agents/experts/expert-config.ts
@@ -3837,4 +3867,4 @@ export {
3837
3867
  validateExpertConfig,
3838
3868
  safeValidateExpertConfig
3839
3869
  };
3840
- //# sourceMappingURL=chunk-LDIN2PLV.js.map
3870
+ //# sourceMappingURL=chunk-GJVHRJO2.js.map