@nexus-cortex/server 4.63.8 → 4.63.10

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.
@@ -0,0 +1,14 @@
1
+ [
2
+ {
3
+ "id": "p3h-impl-intervals",
4
+ "taskType": "T2",
5
+ "prompt": "In /home/runner/workspace/omniclaude-v4/.cortex/bench/fixtures/p3-anchor, create src/intervals.js exporting mergeIntervals(list) for [start,end] integer pairs: sort by start and merge OVERLAPPING intervals only — intervals that merely TOUCH (end === next start) must NOT be merged. Throw a TypeError if any pair has end < start. Create src/intervals.test.js (plain Node) printing 'PASS <label>'/'FAIL <label>' per check, covering: [[1,5],[4,8]] -> [[1,8]]; [[1,5],[5,8]] -> [[1,5],[5,8]] (touching stays split); [[3,4],[1,2],[2,3]] -> [[1,2],[2,3],[3,4]]; [[1,0]] throws TypeError. Run it and reply with the full test output.",
6
+ "verifier": { "type": "regex", "pattern": "PASS[\\s\\S]*PASS[\\s\\S]*PASS[\\s\\S]*PASS" }
7
+ },
8
+ {
9
+ "id": "p3h-trace-canontools",
10
+ "taskType": "T3",
11
+ "prompt": "In this repository (omniclaude-v4), for the canon cross-harness tool-mapping layer: (1) which exported constant maps canonical tool concepts to per-harness tool names, (2) which exported type enumerates the harness names, and (3) what is the EXACT grok-build tool name mapped to the edit_file concept? Cite exact identifiers.",
12
+ "verifier": { "type": "contains", "all": ["TOOL_CONCEPTS", "HarnessName", "search_replace"], "caseInsensitive": false }
13
+ }
14
+ ]
@@ -0,0 +1,32 @@
1
+ [
2
+ {
3
+ "id": "p3-fix-ledger",
4
+ "taskType": "T2",
5
+ "prompt": "The Node project at /home/runner/workspace/omniclaude-v4/.cortex/bench/fixtures/p3-anchor has MULTIPLE independent bugs. First run `git -C /home/runner/workspace/omniclaude-v4/.cortex/bench/fixtures/p3-anchor checkout -- .` to reset it. Read README.md for the business rules, then find and fix ALL bugs in src/ledger.js so `node src/run.js` prints the correct summary for the data in src/run.js. Do not modify src/run.js or the data. Actually edit the file, run it to verify, and reply with the exact final JSON line it prints.",
6
+ "verifier": { "type": "contains", "all": ["\"first\":\"bolts\"", "\"latest\":\"12\"", "\"page1Count\":3", "19.15"], "caseInsensitive": false }
7
+ },
8
+ {
9
+ "id": "p3-impl-duration",
10
+ "taskType": "T2",
11
+ "prompt": "In /home/runner/workspace/omniclaude-v4/.cortex/bench/fixtures/p3-anchor, create src/duration.js exporting parseDuration(str) -> total seconds. Rules: str is 1-3 components in strict h,m,s ORDER (e.g. '2h45m10s', '90m', '1h5s'); integers only — reject decimals like '1.5h'; reject unknown units, wrong order (e.g. '10s2h'), empty string, and repeated units, all by throwing a TypeError. Then create src/duration.test.js using plain Node asserts that prints one line per check, 'PASS <label>' or 'FAIL <label>', covering: parseDuration('2h45m10s')===9910, parseDuration('90m')===5400, parseDuration('1h5s')===3605, '1.5h' throws TypeError, '10s2h' throws TypeError. Run it and reply with the full test output.",
12
+ "verifier": { "type": "regex", "pattern": "PASS[\\s\\S]*PASS[\\s\\S]*PASS[\\s\\S]*PASS[\\s\\S]*PASS" }
13
+ },
14
+ {
15
+ "id": "p3-trace-gemini-thinking",
16
+ "taskType": "T3",
17
+ "prompt": "In this repository (omniclaude-v4), trace how tunable Gemini thinking is plumbed to the wire. Report: (1) the exact helper method used to write the nested request param, (2) the exact dotted param path written into the request, (3) the exact model-card field whose value rides that path. Cite exact identifiers from the code.",
18
+ "verifier": { "type": "contains", "all": ["setNestedParam", "generationConfig.thinkingConfig.thinkingLevel", "defaultEffort"], "caseInsensitive": false }
19
+ },
20
+ {
21
+ "id": "p3-trace-searchtools-widening",
22
+ "taskType": "T3",
23
+ "prompt": "In this repository (omniclaude-v4), for the CLI harness deferred-tool path: after the model calls SearchTools, (1) which ClientSideToolFilter method records the discovered tool names, (2) which filter method does the orchestrator re-run before the continuation request so the discovered schemas enter the tools array, and (3) if the model calls a standard-tier tool COLD (never discovered via SearchTools), is the call executed or refused at dispatch? Answer (3) with exactly one word: 'executed' or 'refused'. Cite exact identifiers for (1) and (2).",
24
+ "verifier": { "type": "contains", "all": ["recordDiscoveredTools", "getFilteredTools", "executed"], "caseInsensitive": true }
25
+ },
26
+ {
27
+ "id": "p3-count-essential",
28
+ "taskType": "T3",
29
+ "prompt": "In this repository, count EXACTLY how many tool registrations in packages/core/src/tools/registries/BaseToolRegistry.ts carry discoveryTier: 'essential'. Be exhaustive — do not estimate. Reply with a line of the form 'COUNT: <n>'.",
30
+ "verifier": { "type": "contains", "all": ["COUNT: 14"], "caseInsensitive": true }
31
+ }
32
+ ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexus-cortex/server",
3
- "version": "4.63.8",
3
+ "version": "4.63.10",
4
4
  "description": "Thin Express server wrapper for Nexus Cortex core library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,8 +20,8 @@
20
20
  "prepack": "node ../../scripts/copy-pkg-cortex-scaffold.mjs"
21
21
  },
22
22
  "dependencies": {
23
- "@nexus-cortex/core": "4.63.8",
24
- "@nexus-cortex/executors": "4.63.8",
23
+ "@nexus-cortex/core": "4.63.10",
24
+ "@nexus-cortex/executors": "4.63.10",
25
25
  "chalk": "^5.3.0",
26
26
  "cors": "^2.8.5",
27
27
  "dotenv": "^16.4.5",