@nexus-cortex/cli 4.85.0 → 4.87.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.
Files changed (2) hide show
  1. package/.env.example +6 -0
  2. 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexus-cortex/cli",
3
- "version": "4.85.0",
3
+ "version": "4.87.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.85.0",
22
+ "@nexus-cortex/core": "4.87.0",
23
23
  "chalk": "^4.1.2",
24
24
  "cli-spinners": "^2.9.0",
25
25
  "commander": "^11.0.0",