@nexus-cortex/cli 4.84.0 → 4.86.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 +11 -0
- package/package.json +2 -2
package/.env.example
CHANGED
|
@@ -157,6 +157,12 @@ MENTORSHIP_ENABLED=true
|
|
|
157
157
|
# Forced-tool_choice backstop (AskForAdvice v2): on HIGH-confidence thrash, FORCE the model to
|
|
158
158
|
# call AskForAdvice for one turn. Voluntary heed is ~0 (0/47 lifted transcripts), so forcing is
|
|
159
159
|
# what actually makes the mentor fire. OFF by default — the v2 forcing path is not yet TB2-validated.
|
|
160
|
+
# 🔴 MASTER GATE for the ENTIRE v2 forced-choice chain. Setting this =true (with MENTORSHIP_ENABLED=true)
|
|
161
|
+
# is the ONLY thing that produces a forced tool_choice, which in turn activates ALL of the v2 provider
|
|
162
|
+
# fixes for that forced turn: DeepSeek thinking-mode disable, tools-array restriction to the forced tool,
|
|
163
|
+
# and parallel_tool_calls off. With this =false, every one of those paths is inert and request behavior
|
|
164
|
+
# is byte-identical to pre-v2 (verified end-to-end 2026-08-29) — the code ships DARK. Flip to true only
|
|
165
|
+
# after the forced-consult efficacy bench confirms it actually breaks the retry-loop.
|
|
160
166
|
CORTEX_MENTOR_FORCE=false
|
|
161
167
|
# Trigger helper-model review on tool errors (only applies when mentorship is enabled)
|
|
162
168
|
MENTORSHIP_TRIGGER_ON_ERROR=false
|
|
@@ -276,10 +282,15 @@ ENABLE_DEFERRED_TOOL_LOADING=true
|
|
|
276
282
|
# pointing the model at SearchTools (to reach the tools the deferred filter hides) and,
|
|
277
283
|
# when mentorship is active, AskForAdvice. Turn 1 stays a pristine narrow door; the
|
|
278
284
|
# pointer lands only after the model has acted. No-op when deferred loading is off.
|
|
285
|
+
# GLOBAL BASELINE for models WITHOUT a card opinion (harness serves 17 models / 7 providers).
|
|
286
|
+
# The per-model CARD OVERRIDES this (deepseek-v4-flash ships liftNudge:true; pro/vision leave it
|
|
287
|
+
# to this baseline). Set true to enable the signpost fleet-wide for un-carded models; a card can
|
|
288
|
+
# still opt a specific model out. Precedence: card > this env > default.
|
|
279
289
|
CORTEX_LIFT_NUDGE=false
|
|
280
290
|
# CORTEX_HEADLESS_DROP_ASKUSER — in NON-INTERACTIVE sessions (stateless /v1/messages,
|
|
281
291
|
# headless API, piped oneshot) there is no human to answer AskUserQuestion, so it is a
|
|
282
292
|
# stall trap; drop it at the tool source. Kept in interactive TUIs.
|
|
293
|
+
# GLOBAL BASELINE for un-carded models; the per-model card overrides. Precedence: card > env > default.
|
|
283
294
|
CORTEX_HEADLESS_DROP_ASKUSER=false
|
|
284
295
|
# Programmatic Tool Calling (compose tool calls in a script) — experimental
|
|
285
296
|
ENABLE_PTC=false
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexus-cortex/cli",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.86.0",
|
|
4
4
|
"description": "Nexus Cortex CLI - Terminal interface for multi-provider LLM orchestration",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -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.86.0",
|
|
23
23
|
"chalk": "^4.1.2",
|
|
24
24
|
"cli-spinners": "^2.9.0",
|
|
25
25
|
"commander": "^11.0.0",
|