nexus-agents 2.77.8 → 2.77.9

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.
@@ -8,7 +8,7 @@ import {
8
8
  checkSqlite,
9
9
  defaultConfig,
10
10
  initDataDirectories
11
- } from "./chunk-35C7VCMT.js";
11
+ } from "./chunk-OZLCOG3N.js";
12
12
  import {
13
13
  probeAllClis
14
14
  } from "./chunk-MV4R2ZIJ.js";
@@ -1948,4 +1948,4 @@ export {
1948
1948
  setupCommand,
1949
1949
  setupCommandAsync
1950
1950
  };
1951
- //# sourceMappingURL=chunk-ZHM23HEX.js.map
1951
+ //# sourceMappingURL=chunk-MZF4DKQJ.js.map
@@ -40,7 +40,7 @@ import {
40
40
  } from "./chunk-GOT7OAL5.js";
41
41
 
42
42
  // src/version.ts
43
- var VERSION = true ? "2.77.8" : "dev";
43
+ var VERSION = true ? "2.77.9" : "dev";
44
44
 
45
45
  // src/config/schemas-core.ts
46
46
  import { z } from "zod";
@@ -2121,7 +2121,7 @@ async function runDoctorFix(result) {
2121
2121
  writeLine2("\u2500".repeat(40));
2122
2122
  let fixCount = 0;
2123
2123
  if (!result.dataDirectory.rootExists || result.dataDirectory.subdirectories.some((d) => !d.exists || !d.writable)) {
2124
- const { runSetup } = await import("./setup-command-AXJA4OGF.js");
2124
+ const { runSetup } = await import("./setup-command-R3HO5FXE.js");
2125
2125
  const setupResult = runSetup({
2126
2126
  skipMcp: true,
2127
2127
  skipRules: true,
@@ -2231,4 +2231,4 @@ export {
2231
2231
  startStdioServer,
2232
2232
  closeServer
2233
2233
  };
2234
- //# sourceMappingURL=chunk-35C7VCMT.js.map
2234
+ //# sourceMappingURL=chunk-OZLCOG3N.js.map
package/dist/cli.js CHANGED
@@ -22,7 +22,7 @@ import {
22
22
  import {
23
23
  setupCommandAsync,
24
24
  verifyCommand
25
- } from "./chunk-ZHM23HEX.js";
25
+ } from "./chunk-MZF4DKQJ.js";
26
26
  import "./chunk-CM3TORGV.js";
27
27
  import {
28
28
  AuthHandler,
@@ -33,6 +33,7 @@ import {
33
33
  ImprovementReviewInputSchema,
34
34
  Orchestrator,
35
35
  OrchestratorFactory,
36
+ PaperStatusSchema,
36
37
  PuppeteerOrchestrator,
37
38
  READONLY_POLICY,
38
39
  ResearchDiscoverInputSchema,
@@ -152,7 +153,7 @@ import {
152
153
  validateCommand,
153
154
  validateWorkflow,
154
155
  wrapInMarkdownFence
155
- } from "./chunk-M5NSVRK6.js";
156
+ } from "./chunk-M36XZWG2.js";
156
157
  import "./chunk-ED6VQWNG.js";
157
158
  import {
158
159
  resolveToken
@@ -215,7 +216,7 @@ import {
215
216
  loadConfig,
216
217
  runDoctor,
217
218
  validateNexusEnv
218
- } from "./chunk-35C7VCMT.js";
219
+ } from "./chunk-OZLCOG3N.js";
219
220
  import "./chunk-5WHWKY32.js";
220
221
  import {
221
222
  DEFAULTS
@@ -7166,13 +7167,7 @@ var TechniqueStatusSchema = z2.enum([
7166
7167
  "not-started",
7167
7168
  "rejected"
7168
7169
  ]);
7169
- var PaperStatusSchema = z2.enum([
7170
- "implemented",
7171
- "planned",
7172
- "partial",
7173
- "not-started",
7174
- "rejected"
7175
- ]);
7170
+ var PaperStatusSchema2 = PaperStatusSchema;
7176
7171
  var TechniquePrioritySchema = z2.enum(["P1", "P2", "P3", "P4"]).nullable();
7177
7172
  var TechniqueComplexitySchema = z2.enum(["low", "medium", "high"]);
7178
7173
  var RelevanceSchema = z2.enum(["high", "medium", "low"]);
@@ -7220,7 +7215,7 @@ var ResearchPaperSchema = z2.object({
7220
7215
  /** Related GitHub issues */
7221
7216
  related_issues: z2.array(z2.number().int().positive()).optional().default([]),
7222
7217
  /** Implementation status */
7223
- implementation_status: PaperStatusSchema.optional().default("not-started"),
7218
+ implementation_status: PaperStatusSchema2.optional().default("not-started"),
7224
7219
  // ── Quality Assessment (Issue #1571) ──────────────────────────
7225
7220
  /** Citation count from Semantic Scholar (auto-fetched) */
7226
7221
  citation_count: z2.number().nonnegative().optional(),