code wiki / _hdl_build / nx_work_predict.nx
nx_work_predict.nx
buildroot/runtime/_hdl_build/nx_work_predict.nx
about
nx_work_predict.nx -- FUTURE-axis runner: read capability_ladder.tsv and print the ADJACENT-POSSIBLE
frontier (probable-next work: prerequisites DONE, node not yet built), ranked by layer (nearest the
hardware root first = the genuine growth front). Prints + writes a durable report for the planning
surface. Grounded entirely in the ladder data -- no model prose. Sovereign.
nx_work_predict [ladder.tsv]
license_tier: ORIGINAL
dependencies 2 imports · 0 importers
imports: nx_syscalls.nxnx_work_predict_lib.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
| 10 | const WPR_LADDER: *u8 = "/mnt/c/Users/elder/nishi-core/nxc2/knowledge/registry/capability_ladder.tsv" |
| 11 | const WPR_REPORT: *u8 = "/mnt/c/Users/elder/.claude/projects/C--Users-elder/memory/worklog/predict_next.txt" |
| 12 | const WPR_BUFCAP: i64 = 4194304 // 4MB: ladder is ~40KB, ample headroom |
| 13 | const WPR_OUTCAP: i64 = 1048576 |
functions
| 15 | func wpp(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 } |
| 16 | func wpn(v: i64) -> i64 |
| 25 | func wpr_read(path: *u8, buf: *u8, cap: i64) -> i64 |
| 34 | func wpr_strlen(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } return n } called by 1: main |
| 36 | func main(argc: i64, argv: *i64) -> i64 |