@nexus-cortex/cli 4.76.2 → 4.78.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 +11 -0
  2. package/package.json +2 -2
package/.env.example CHANGED
@@ -232,6 +232,10 @@ MAX_LOOP_REPETITIONS=5
232
232
  # `failing-cmd | tail` classifies as a failure instead of masking behind the
233
233
  # pipe's exit 0. NEVER default-on (changes user command semantics).
234
234
  #CORTEX_BASH_PIPEFAIL=false
235
+ # Lift the Bash $() command-substitution block entirely (sandboxed profiles,
236
+ # e.g. bench containers — an OPERATOR decision; the check is a security
237
+ # control). $(( )) arithmetic is never flagged regardless of this setting.
238
+ #CORTEX_ALLOW_CMD_SUBSTITUTION=false
235
239
  # Inaction guard (ladder's inverse, 4.70.0): one bounded "act first" retry on a
236
240
  # long actless first-turn response in a tool-capable request. Default OFF.
237
241
  #CORTEX_INACTION_NUDGE=false
@@ -563,3 +567,10 @@ MENTORSHIP_ACTIVE_DISCOVERY=false
563
567
  # ends by ENUMERATING remaining steps instead of doing them (the honest-premature-
564
568
  # surrender class). Default off; bench/serving profiles arm it.
565
569
  #CORTEX_SURRENDER_NUDGE=true
570
+ # Item 14b — windowed near-dup breaker: outcome-agnostic sliding-window counter over
571
+ # the normalized approach hash (catches varied-param polling invisible to the exact
572
+ # tracker AND the poll guard — observed x65 near-identical calls, max 4 consecutive).
573
+ # N-in-window → one diversify nudge; 2N → break. Default off; bench/serving arm it.
574
+ #CORTEX_NEARDUP_BREAKER=true
575
+ #NEARDUP_WINDOW=20
576
+ #NEARDUP_NUDGE_AT=8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexus-cortex/cli",
3
- "version": "4.76.2",
3
+ "version": "4.78.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.76.2",
22
+ "@nexus-cortex/core": "4.78.0",
23
23
  "chalk": "^4.1.2",
24
24
  "cli-spinners": "^2.9.0",
25
25
  "commander": "^11.0.0",