nexus-agents 2.151.0 → 2.151.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.
@@ -18,7 +18,7 @@ import {
18
18
  DEFAULT_TASK_TTL_MS,
19
19
  DEFAULT_TOOL_RATE_LIMITS,
20
20
  clampTaskTtl
21
- } from "./chunk-O6PPXOH6.js";
21
+ } from "./chunk-SJFARLAQ.js";
22
22
  import {
23
23
  executeExpert
24
24
  } from "./chunk-JYHSZDKL.js";
@@ -44392,13 +44392,16 @@ var PR_REVIEW_ROLES = [
44392
44392
  "scope_steward"
44393
44393
  ];
44394
44394
  var MAX_DIFF_LENGTH = 5e4;
44395
+ var MAX_REPO_CONTEXT_LENGTH = 2e3;
44395
44396
  var MAX_DESCRIPTION_LENGTH = 1e4;
44396
44397
  var PR_REVIEW_ASYNC_HINT = "A pr_review run fans out to 5 live LLM voters and can exceed the synchronous MCP request timeout. Retry with `dispatch: 'async'` to get a jobId immediately, then poll get_job_result({ jobId }) for the result.";
44397
44398
  var PrReviewInputSchema = z91.object({
44398
44399
  prTitle: z91.string().min(1).max(500).describe("PR title"),
44399
44400
  prDescription: z91.string().max(MAX_DESCRIPTION_LENGTH).optional().describe("PR body / description"),
44400
44401
  prDiff: z91.string().min(1).max(MAX_DIFF_LENGTH).describe(`Unified diff text (max ${String(MAX_DIFF_LENGTH)} chars; truncate before calling)`),
44401
- repoContext: z91.string().max(2e3).optional().describe("Optional one-paragraph repo context (architecture, conventions)"),
44402
+ repoContext: z91.string().max(MAX_REPO_CONTEXT_LENGTH).optional().describe(
44403
+ `Optional one-paragraph repo context (architecture, conventions; max ${String(MAX_REPO_CONTEXT_LENGTH)} chars; trim before calling)`
44404
+ ),
44402
44405
  baseRef: z91.string().max(200).optional().describe("Base branch ref (e.g. main)"),
44403
44406
  headRef: z91.string().max(200).optional().describe("Head branch ref"),
44404
44407
  /**
@@ -51273,4 +51276,4 @@ export {
51273
51276
  shutdownFeedbackSubscriber,
51274
51277
  createEventBusBridge
51275
51278
  };
51276
- //# sourceMappingURL=chunk-KRCL3VT6.js.map
51279
+ //# sourceMappingURL=chunk-IR7FP4SS.js.map