@nexus-cortex/cli 4.83.0 → 4.84.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 +10 -0
- package/package.json +2 -2
package/.env.example
CHANGED
|
@@ -271,6 +271,16 @@ OPENAI_API_MODE=
|
|
|
271
271
|
# Only load essential tools initially; the model discovers the rest via SearchTools.
|
|
272
272
|
# R43 benchmark: 77% input-token reduction on the first turn.
|
|
273
273
|
ENABLE_DEFERRED_TOOL_LOADING=true
|
|
274
|
+
# A′ experiment (deferred-loading arm refinements — default OFF, opt-in per arm):
|
|
275
|
+
# CORTEX_LIFT_NUDGE — at the anchor-lift boundary, append a ONE-LINE system-reminder
|
|
276
|
+
# pointing the model at SearchTools (to reach the tools the deferred filter hides) and,
|
|
277
|
+
# when mentorship is active, AskForAdvice. Turn 1 stays a pristine narrow door; the
|
|
278
|
+
# pointer lands only after the model has acted. No-op when deferred loading is off.
|
|
279
|
+
CORTEX_LIFT_NUDGE=false
|
|
280
|
+
# CORTEX_HEADLESS_DROP_ASKUSER — in NON-INTERACTIVE sessions (stateless /v1/messages,
|
|
281
|
+
# headless API, piped oneshot) there is no human to answer AskUserQuestion, so it is a
|
|
282
|
+
# stall trap; drop it at the tool source. Kept in interactive TUIs.
|
|
283
|
+
CORTEX_HEADLESS_DROP_ASKUSER=false
|
|
274
284
|
# Programmatic Tool Calling (compose tool calls in a script) — experimental
|
|
275
285
|
ENABLE_PTC=false
|
|
276
286
|
# Allow local code-execution tooling
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexus-cortex/cli",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.84.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.84.0",
|
|
23
23
|
"chalk": "^4.1.2",
|
|
24
24
|
"cli-spinners": "^2.9.0",
|
|
25
25
|
"commander": "^11.0.0",
|