@nexus-cortex/cli 4.67.0 → 4.69.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.
@@ -1,39 +1,39 @@
1
1
  [
2
- {
3
- "id": "t1-read-server-version",
4
- "taskType": "T1",
5
- "prompt": "Read the file packages/server/package.json in this project and report the exact value of its \"version\" field.",
6
- "verifier": {
7
- "type": "contains",
8
- "all": [
9
- "4.47.3"
10
- ]
2
+ {
3
+ "id": "t1-read-server-version",
4
+ "taskType": "T1",
5
+ "prompt": "Read the file packages/server/package.json in this project and report the exact value of its \"version\" field.",
6
+ "verifier": {
7
+ "type": "contains",
8
+ "all": [
9
+ "4.68.0"
10
+ ]
11
+ }
12
+ },
13
+ {
14
+ "id": "t2-locate-parsehfcompletion",
15
+ "taskType": "T2",
16
+ "prompt": "Search this project's packages/core/src tree for the file that defines the function parseHFCompletion, then report that file's path.",
17
+ "verifier": {
18
+ "type": "contains",
19
+ "all": [
20
+ "hfSpace",
21
+ "normalize.ts"
22
+ ]
23
+ }
24
+ },
25
+ {
26
+ "id": "t3-count-hf-cards",
27
+ "taskType": "T3",
28
+ "prompt": "Count the .ts files directly inside packages/core/src/models/cards/huggingface/ in this project and list their filenames.",
29
+ "verifier": {
30
+ "type": "contains",
31
+ "all": [
32
+ "hf-router.ts",
33
+ "hf-space.ts",
34
+ "hf-space-models.ts",
35
+ "index.ts"
36
+ ]
37
+ }
11
38
  }
12
- },
13
- {
14
- "id": "t2-locate-parsehfcompletion",
15
- "taskType": "T2",
16
- "prompt": "Search this project's packages/core/src tree for the file that defines the function parseHFCompletion, then report that file's path.",
17
- "verifier": {
18
- "type": "contains",
19
- "all": [
20
- "hfSpace",
21
- "normalize.ts"
22
- ]
23
- }
24
- },
25
- {
26
- "id": "t3-count-hf-cards",
27
- "taskType": "T3",
28
- "prompt": "Count the .ts files directly inside packages/core/src/models/cards/huggingface/ in this project and list their filenames.",
29
- "verifier": {
30
- "type": "contains",
31
- "all": [
32
- "hf-router.ts",
33
- "hf-space.ts",
34
- "hf-space-models.ts",
35
- "index.ts"
36
- ]
37
- }
38
- }
39
39
  ]
package/.env.example CHANGED
@@ -447,6 +447,12 @@ MENTORSHIP_ACTIVE_DISCOVERY=false
447
447
  #CORTEX_ANCHOR_CUE=
448
448
  # Session-wide tool profile (independent of first-turn anchoring).
449
449
  #CORTEX_TOOL_PROFILE=full
450
+ # Dedicated-tool steering in ShellTool (redirects bare `cat FILE`/`sed -i`/
451
+ # literal `echo > f`/bare `grep` to Read/Edit/Write/Grep with a guidance
452
+ # error). 'off' disables ALL such redirects — for bash-focused models
453
+ # (narrow-door program: modern + trained small models handle shell idioms
454
+ # natively and work best when bash is not second-guessed). Default: on.
455
+ #CORTEX_TOOL_REDIRECTS=on
450
456
 
451
457
  # ============================================
452
458
  # CANON STORE (cross-harness session rail)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexus-cortex/cli",
3
- "version": "4.67.0",
3
+ "version": "4.69.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.67.0",
22
+ "@nexus-cortex/core": "4.69.0",
23
23
  "chalk": "^4.1.2",
24
24
  "cli-spinners": "^2.9.0",
25
25
  "commander": "^11.0.0",
@@ -31,7 +31,7 @@
31
31
  "marked-terminal": "^6.0.0",
32
32
  "node-fetch": "^3.3.2",
33
33
  "undici": "^7.28.0",
34
- "nexus-canon": "1.9.3"
34
+ "nexus-canon": "1.9.5"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/diff": "^7.0.2",