nx_dr_conductor_cli.nx
buildroot/runtime/nx_dr_conductor_cli.nx
about
nx_dr_conductor_cli.nx -- callable MCP/API surface for the Co-Scientist conductor (DR-4).
Runs the whole deterministic research loop (verify-yield -> Elo tournament -> opp-cost
budget dispatch) over N candidate research vectors and emits the ranked plan + which
vectors earn deep compute.
nx_dr_conductor <budget> [supported total cost]... per vector: 3 ints
e.g. nx_dr_conductor 8 8 10 3 2 10 2 9 10 5 0 10 1
-> {"selected":2,"spent":8,"vectors":[{"rank":1,"id":0,"quality":800,"rating":..,"selected":1},...]}
license_tier: ORIGINAL No hw writes (Rule 26). expect_exit: 0
dependencies 2 imports · 0 importers
imports: nx_dr_conductor.nxnx_syscalls.nx
imported by: nobody (leaf or entry point)
call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown
structs
| none |
consts
| none |
functions
| 12 | func cd_puts(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 } |
| 13 | func cd_q() -> i64 { let b: *u8 = sys_mmap(1); b[0] = 34 as u8; sys_write(1, b, 1); return 0 } |
| 14 | func cd_key(name: *u8) -> i64 { cd_q(); cd_puts(name); cd_q(); cd_puts(":" as *u8); return 0 } |
| 15 | func cd_num(v: i64) -> i64 |
| 27 | func cd_atoi(a: *u8) -> i64 called by 1: main |
| 37 | func main(argc: i64, argv: *i64) -> i64 |