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.
- package/dist/{chunk-KRCL3VT6.js → chunk-IR7FP4SS.js} +6 -3
- package/dist/{chunk-KRCL3VT6.js.map → chunk-IR7FP4SS.js.map} +1 -1
- package/dist/{chunk-VXN3GODL.js → chunk-QL4Q3HUO.js} +2 -2
- package/dist/{chunk-O6PPXOH6.js → chunk-SJFARLAQ.js} +3 -3
- package/dist/cli.js +3 -3
- package/dist/index.js +2 -2
- package/dist/{setup-command-JERVOJ5Z.js → setup-command-IQ7WFZIM.js} +3 -3
- package/package.json +1 -1
- /package/dist/{chunk-VXN3GODL.js.map → chunk-QL4Q3HUO.js.map} +0 -0
- /package/dist/{chunk-O6PPXOH6.js.map → chunk-SJFARLAQ.js.map} +0 -0
- /package/dist/{setup-command-JERVOJ5Z.js.map → setup-command-IQ7WFZIM.js.map} +0 -0
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
DEFAULT_TASK_TTL_MS,
|
|
19
19
|
DEFAULT_TOOL_RATE_LIMITS,
|
|
20
20
|
clampTaskTtl
|
|
21
|
-
} from "./chunk-
|
|
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(
|
|
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-
|
|
51279
|
+
//# sourceMappingURL=chunk-IR7FP4SS.js.map
|