@nexus-cortex/cli 4.69.0 → 4.70.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 +22 -0
- 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,10 @@ 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
|
+
# Anchor FRAME (4.70.0): true/persist = the anchored tool surface never lifts
|
|
464
|
+
# (stays the only surface all session); false/lifted forces the lift. Unset =
|
|
465
|
+
# the model card's frameProfile, default lifted. Experiment lever.
|
|
466
|
+
#CORTEX_TOOL_ANCHOR_PERSIST=false
|
|
445
467
|
# RL-entry cue line prepended as the first system line (refuted in P1 — do not
|
|
446
468
|
# ship; kept as an experiment lever).
|
|
447
469
|
#CORTEX_ANCHOR_CUE=
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexus-cortex/cli",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.70.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.70.0",
|
|
23
23
|
"chalk": "^4.1.2",
|
|
24
24
|
"cli-spinners": "^2.9.0",
|
|
25
25
|
"commander": "^11.0.0",
|