@nexus-cortex/cli 4.87.0 → 4.88.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.
package/.env.example
CHANGED
|
@@ -164,6 +164,26 @@ MENTORSHIP_ENABLED=true
|
|
|
164
164
|
# is byte-identical to pre-v2 (verified end-to-end 2026-08-29) — the code ships DARK. Flip to true only
|
|
165
165
|
# after the forced-consult efficacy bench confirms it actually breaks the retry-loop.
|
|
166
166
|
CORTEX_MENTOR_FORCE=false
|
|
167
|
+
# Thrash-detector tuning (feeds the forced-consult trigger above; inert while it is off).
|
|
168
|
+
# Windowed density: CORTEX_THRASH_FAILS (default 4) failures within CORTEX_THRASH_WINDOW
|
|
169
|
+
# (default 6) recent calls, after CORTEX_THRASH_MIN_TURNS (default 5) total calls.
|
|
170
|
+
# CUMULATIVE (dilution-immune): real retry-loops interleave successful probes between
|
|
171
|
+
# failing attempts (measured live: 15 fails/108 calls but max 2 per 6-window — the
|
|
172
|
+
# windowed condition alone NEVER fires on them). CORTEX_THRASH_CUM_FAILS (default 12)
|
|
173
|
+
# trips on total session failures instead. NOTE: pass/fail failure-count distributions
|
|
174
|
+
# OVERLAP (the model grinds through 9-18 failures to genuine passes), so this is a
|
|
175
|
+
# SOFT-steering trigger, not a stop signal — tune per deployment.
|
|
176
|
+
#CORTEX_THRASH_FAILS=4
|
|
177
|
+
#CORTEX_THRASH_WINDOW=6
|
|
178
|
+
#CORTEX_THRASH_MIN_TURNS=5
|
|
179
|
+
#CORTEX_THRASH_CUM_FAILS=12
|
|
180
|
+
# AUTO-CONSULT (the DeepSeek-safe retry-loop breaker): on high-confidence thrash the
|
|
181
|
+
# ORCHESTRATOR consults the mentor itself and injects the hint as a system-reminder on
|
|
182
|
+
# the failing tool result — no dependence on the model calling AskForAdvice and no
|
|
183
|
+
# forced tool_choice (which DeepSeek IGNORES whenever the history holds a prior
|
|
184
|
+
# tool_call — provider echo defect, mapped 2026-08-30). Rate-limited by the same
|
|
185
|
+
# per-session consult cap as the tool path. OFF by default — flip after the efficacy bench.
|
|
186
|
+
CORTEX_MENTOR_AUTO=false
|
|
167
187
|
# Trigger helper-model review on tool errors (only applies when mentorship is enabled)
|
|
168
188
|
MENTORSHIP_TRIGGER_ON_ERROR=false
|
|
169
189
|
# Minimum error severity to trigger. Options: low, medium, high
|
|
@@ -186,9 +206,14 @@ MENTORSHIP_TURN_BASED_ENABLED=false
|
|
|
186
206
|
MENTORSHIP_TURN_INTERVAL=10
|
|
187
207
|
# Inject thinking assistance for non-reasoning models
|
|
188
208
|
MENTORSHIP_INTERLEAVED_THINKING=false
|
|
189
|
-
# Detect and alert on repeated failure patterns
|
|
209
|
+
# Detect and alert on repeated failure patterns.
|
|
210
|
+
# ⚠️ PENDING DEPRECATION (backlog def-8ee006743f): superseded by the unified-outcome
|
|
211
|
+
# layer (exact-input prior + family/approach lenses + near-dup breaker + auto-consult).
|
|
212
|
+
# This legacy Phase-2 detector keys on RAW is_error, so it is BLIND to bash exit!=0
|
|
213
|
+
# retry-loops (the #1 class). Do NOT enable or extend it — leave false; slated for removal.
|
|
190
214
|
MENTORSHIP_PATTERN_DETECTION=false
|
|
191
|
-
# Number of similar errors to trigger pattern detection (2-10)
|
|
215
|
+
# Number of similar errors to trigger pattern detection (2-10). (Part of the pending-
|
|
216
|
+
# deprecation MENTORSHIP_PATTERN_DETECTION feature above — no effect while that is false.)
|
|
192
217
|
MENTORSHIP_PATTERN_THRESHOLD=3
|
|
193
218
|
# Post-turn summary + next-action prediction via the helper model
|
|
194
219
|
TURN_SUMMARY_PREDICTION=false
|
|
@@ -533,6 +558,17 @@ CORTEX_TOOL_ANCHOR=bash-edit
|
|
|
533
558
|
#CANON_REPO=
|
|
534
559
|
#CANON_STORE=
|
|
535
560
|
#CANON_AUTO_SYNC=false
|
|
561
|
+
# SCOPED sync (sync-only stores, e.g. containers capturing their own sessions):
|
|
562
|
+
# 'auto' = materialize only the legs whose harness roots exist on THIS machine;
|
|
563
|
+
# or an explicit comma list of harness labels. Unset = full surface (repl
|
|
564
|
+
# default — translate/graph need everything and REFUSE scoped stores).
|
|
565
|
+
#CANON_SYNC_SCOPE=
|
|
566
|
+
# Force a FULL (non-partial) store clone — auto-clones default to
|
|
567
|
+
# --filter=blob:none (history metadata only; ~halves a multi-GB store).
|
|
568
|
+
#CANON_FULL_CLONE=false
|
|
569
|
+
# `canon archive` age threshold: sessions whose last commit is older than this
|
|
570
|
+
# many days move to archive/YYYY-MM (remote keeps all; local worktree stays flat).
|
|
571
|
+
#CANON_ARCHIVE_DAYS=30
|
|
536
572
|
#CANON_AUTO_SYNC_DEBOUNCE_MS=30000
|
|
537
573
|
|
|
538
574
|
# ============================================
|
|
@@ -606,8 +642,8 @@ CORTEX_SURRENDER_NUDGE=true
|
|
|
606
642
|
# tracker AND the poll guard — observed x65 near-identical calls, max 4 consecutive).
|
|
607
643
|
# N-in-window → one diversify nudge; 2N → break. Default off; bench/serving arm it.
|
|
608
644
|
CORTEX_NEARDUP_BREAKER=true
|
|
609
|
-
#NEARDUP_WINDOW=
|
|
610
|
-
#NEARDUP_NUDGE_AT=
|
|
645
|
+
#NEARDUP_WINDOW=30
|
|
646
|
+
#NEARDUP_NUDGE_AT=12
|
|
611
647
|
|
|
612
648
|
|
|
613
649
|
# --- OPTIMAL LIFT CONFIG (appended) ---
|
package/bin/cortex.js
CHANGED
|
@@ -30,6 +30,18 @@ import { homedir } from 'os';
|
|
|
30
30
|
import { createRequire } from 'module';
|
|
31
31
|
import { Agent as UndiciAgent } from 'undici';
|
|
32
32
|
|
|
33
|
+
// 🔴 ENV BOOTSTRAP FIRST (operator directive: seed+load .env "no matter how
|
|
34
|
+
// invoked"). This bin historically NEVER ran bootstrapEnv — it read only the raw
|
|
35
|
+
// shell env, so .env values (DEFAULT_MODEL_ID, CORTEX_CLIENT_FETCH_TIMEOUT_MS, …)
|
|
36
|
+
// never reached the CLI's own pre-send decisions even though the server it spawns
|
|
37
|
+
// loaded them. Must run BEFORE any process.env read below. Best-effort.
|
|
38
|
+
try {
|
|
39
|
+
const { bootstrapEnv } = await import('@nexus-cortex/core');
|
|
40
|
+
const { fileURLToPath: __f } = await import('node:url');
|
|
41
|
+
const { dirname: __d, resolve: __r } = await import('node:path');
|
|
42
|
+
bootstrapEnv(__r(__d(__f(import.meta.url)), '..')); // bin/.. = the cli package root
|
|
43
|
+
} catch { /* core unresolvable or read-only fs — proceed with shell env */ }
|
|
44
|
+
|
|
33
45
|
// Non-streaming turns send response headers only when the WHOLE turn completes,
|
|
34
46
|
// so node fetch's built-in undici defaults (headersTimeout 300s) kill any slow
|
|
35
47
|
// local-model turn with a bare "fetch failed" BEFORE our AbortSignal (10 min)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"single-message.d.ts","sourceRoot":"","sources":["../../../src/commands/chat/single-message.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,UAAU,oBAAoB;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAED,wBAAsB,iBAAiB,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,GAAE,oBAAyB,GAAG,OAAO,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"single-message.d.ts","sourceRoot":"","sources":["../../../src/commands/chat/single-message.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,UAAU,oBAAoB;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAED,wBAAsB,iBAAiB,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,GAAE,oBAAyB,GAAG,OAAO,CAAC,IAAI,CAAC,CA+EzG"}
|
|
@@ -41,7 +41,13 @@ export async function sendSingleMessage(prompt, options = {}) {
|
|
|
41
41
|
method: 'POST',
|
|
42
42
|
headers: { 'Content-Type': 'application/json' },
|
|
43
43
|
body: JSON.stringify(payload),
|
|
44
|
-
|
|
44
|
+
// Configurable via the SAME knob as every other CLI request path
|
|
45
|
+
// (CortexClient/OrchestratorClient) — this was the last hardcoded request
|
|
46
|
+
// timeout in the CLI (a literal 10-min abort, not liftable by any env),
|
|
47
|
+
// which cut long agentic one-shots and forced the TB bench adapter to
|
|
48
|
+
// bypass the CLI entirely (harbor-bench fix-ledger #7). Default matches
|
|
49
|
+
// the other client paths (15 min).
|
|
50
|
+
signal: AbortSignal.timeout(parseInt(process.env.CORTEX_CLIENT_FETCH_TIMEOUT_MS || '900000', 10)),
|
|
45
51
|
});
|
|
46
52
|
if (!resp.ok) {
|
|
47
53
|
const text = await resp.text();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"single-message.js","sourceRoot":"","sources":["../../../src/commands/chat/single-message.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,MAAM,QAAQ,GAAG,OAAO,CAAC,GAAG,CAAC,UAAU,IAAI,oBAAoB,OAAO,CAAC,GAAG,CAAC,IAAI,IAAI,MAAM,EAAE,CAAC;AAU5F,MAAM,CAAC,KAAK,UAAU,iBAAiB,CAAC,MAAc,EAAE,UAAgC,EAAE;IACxF,MAAM,OAAO,GAAG,OAAO,CAAC,SAAS,IAAI,QAAQ,CAAC;IAE9C,sBAAsB;IACtB,IAAI,CAAC;QACH,MAAM,UAAU,GAAG,MAAM,KAAK,CAAC,GAAG,OAAO,SAAS,EAAE;YAClD,MAAM,EAAE,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC;SAClC,CAAC,CAAC;QACH,IAAI,CAAC,UAAU,CAAC,EAAE,EAAE,CAAC;YACnB,MAAM,IAAI,KAAK,CAAC,mBAAmB,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC;QAC1D,CAAC;IACH,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,IAAI,GAAG,CAAC,KAAK,EAAE,IAAI,KAAK,cAAc,IAAI,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,cAAc,CAAC,EAAE,CAAC;YAChF,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,wBAAwB,OAAO,IAAI,CAAC,CAAC;YAC1D,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC;YAC1C,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,yCAAyC,CAAC,CAAC;YAChE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAClB,CAAC;QACD,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,+BAA+B,GAAG,CAAC,OAAO,IAAI,CAAC,CAAC;QACrE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;IAED,gBAAgB;IAChB,MAAM,OAAO,GAAwB;QACnC,KAAK,EAAE,OAAO,CAAC,KAAK,IAAI,OAAO,CAAC,GAAG,CAAC,gBAAgB,IAAI,kBAAkB;QAC1E,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,CAAC;KAC9C,CAAC;IACF,IAAI,OAAO,CAAC,MAAM;QAAE,OAAO,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IACpD,IAAI,OAAO,CAAC,SAAS;QAAE,OAAO,CAAC,UAAU,GAAG,OAAO,CAAC,SAAS,CAAC;IAE9D,eAAe;IACf,IAAI,IAAS,CAAC;IACd,IAAI,CAAC;QACH,MAAM,IAAI,GAAG,MAAM,KAAK,CAAC,GAAG,OAAO,cAAc,EAAE;YACjD,MAAM,EAAE,MAAM;YACd,OAAO,EAAE,EAAE,cAAc,EAAE,kBAAkB,EAAE;YAC/C,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC;YAC7B,MAAM,EAAE,WAAW,CAAC,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"single-message.js","sourceRoot":"","sources":["../../../src/commands/chat/single-message.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexus-cortex/cli",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.88.0",
|
|
4
4
|
"description": "Nexus Cortex CLI - Terminal interface for multi-provider LLM orchestration",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"cortex": "./bin/cortex.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
|
-
"build": "tsc",
|
|
11
|
+
"build": "cp ../../.env.example ./.env.example && tsc",
|
|
12
12
|
"dev": "tsx watch src/index.ts",
|
|
13
13
|
"dev:build": "tsc --watch",
|
|
14
14
|
"dev:chat": "tsx src/index.ts chat",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"prepack": "node ../../scripts/copy-pkg-cortex-scaffold.mjs"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@nexus-cortex/core": "4.
|
|
22
|
+
"@nexus-cortex/core": "4.88.0",
|
|
23
23
|
"chalk": "^4.1.2",
|
|
24
24
|
"cli-spinners": "^2.9.0",
|
|
25
25
|
"commander": "^11.0.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"marked-terminal": "^6.0.0",
|
|
32
32
|
"node-fetch": "^3.3.2",
|
|
33
33
|
"undici": "^7.28.0",
|
|
34
|
-
"nexus-canon": "1.
|
|
34
|
+
"nexus-canon": "1.11.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/diff": "^7.0.2",
|