@nexus-cortex/cli 4.69.1 → 4.71.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 +32 -0
  2. package/package.json +2 -2
package/.env.example CHANGED
@@ -223,6 +223,20 @@ TOOL_BUDGET_SOFT=400
223
223
  TOOL_TIMEOUT_MS=120000
224
224
  # Identical tool calls before loop detection breaks the turn
225
225
  MAX_LOOP_REPETITIONS=5
226
+ # Unified outcome ladder (4.70.0): failing near-duplicate approaches escalate
227
+ # remind -> diversify -> graceful break (docs/UNIFIED_OUTCOME_LADDER.md).
228
+ #LOOP_REMIND_AT=2
229
+ #LOOP_DIVERSIFY_AT=4
230
+ #LOOP_BREAK_AT=6
231
+ # Bench/server profiles: wrap bash commands with `set -o pipefail` so
232
+ # `failing-cmd | tail` classifies as a failure instead of masking behind the
233
+ # pipe's exit 0. NEVER default-on (changes user command semantics).
234
+ #CORTEX_BASH_PIPEFAIL=false
235
+ # Inaction guard (ladder's inverse, 4.70.0): one bounded "act first" retry on a
236
+ # long actless first-turn response in a tool-capable request. Default OFF.
237
+ #CORTEX_INACTION_NUDGE=false
238
+ # Response length (chars) above which the inaction guard may fire.
239
+ #CORTEX_INACTION_MIN_CHARS=4000
226
240
 
227
241
  # ============================================
228
242
  # PROVIDER TOOLING (server-side tools / API surface)
@@ -279,6 +293,10 @@ ROUTER_MIN_SAMPLES=3
279
293
  # Mandatory EndTurn pre-delivery self-audit + Stage 2/3 verifiers. Default OFF; ON =
280
294
  # graded cortex-channel training records (the tool is hidden when off).
281
295
  CORTEX_ENDTURN_GATE=false
296
+ # Stage 4 (4.70.0, requires the gate ON): task-requirements attestation —
297
+ # enumerate each stated requirement with what satisfies it + how it was
298
+ # verified; mutating turns with no checks are challenged. Default OFF.
299
+ #CORTEX_ENDTURN_REQUIREMENTS=false
282
300
 
283
301
  # ============================================
284
302
  # DECISION STORE (prior-recall + recording)
@@ -442,6 +460,20 @@ MENTORSHIP_ACTIVE_DISCOVERY=false
442
460
  # Env override for the model card's anchorProfile (deepseek cards default to
443
461
  # bash-edit). Values: lean | bash-only | bash-plus | bash-edit | none.
444
462
  #CORTEX_TOOL_ANCHOR=bash-edit
463
+ # ── Vision / image-path bridge (item 7) ──
464
+ # Turns an image stays in the request context before being stubbed out.
465
+ # MEASURED: an image ANYWHERE in a vision-exp request disables cache reads for
466
+ # the whole request — evicting after use restores the ~31x cache discount.
467
+ # 'off' keeps images forever.
468
+ #CORTEX_IMAGE_TTL_TURNS=3
469
+ # ReadImage downscales originals above this size to ~800px (provider parity,
470
+ # lossless to the model, ~100x wire cut). 'off' disables.
471
+ #CORTEX_IMAGE_DOWNSCALE_BYTES=2097152
472
+
473
+ # Anchor FRAME (4.70.0): true/persist = the anchored tool surface never lifts
474
+ # (stays the only surface all session); false/lifted forces the lift. Unset =
475
+ # the model card's frameProfile, default lifted. Experiment lever.
476
+ #CORTEX_TOOL_ANCHOR_PERSIST=false
445
477
  # RL-entry cue line prepended as the first system line (refuted in P1 — do not
446
478
  # ship; kept as an experiment lever).
447
479
  #CORTEX_ANCHOR_CUE=
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexus-cortex/cli",
3
- "version": "4.69.1",
3
+ "version": "4.71.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.69.1",
22
+ "@nexus-cortex/core": "4.71.0",
23
23
  "chalk": "^4.1.2",
24
24
  "cli-spinners": "^2.9.0",
25
25
  "commander": "^11.0.0",