code wiki / _hdl_build / nx_hosting_backlog.nx

nx_hosting_backlog.nx

buildroot/runtime/_hdl_build/nx_hosting_backlog.nx

12552 B181 linesdepth 3pulls 4 transitivereach 0 importersview sourcekind tool
docsdependenciesstructsconstsfunctions

about

nx_hosting_backlog.nx -- the PM logs the COMPLETE post-go-live backlog, RANKED by WSJF (composes nx_pm_decision_matrix), to the shared review + plan logs we read together. andelinwest.com is LIVE; the operator's standing directives now drive priority: (a) the site must become a TOP-LEVEL premium brand by MONDAY 2026-06-08 -- PM-led team build, Claude tutoring ONLY; (b) ZERO .sh / non-Nishi anywhere in the hosting/deploy/boot path + enterprise-EXCEED hardening = top sovereignty work; (c) onsite search must be PER-SITE isolated, NO cross-site bleed; (d) a tutoring-effort LEDGER so we measure Claude intervention and drive it toward zero (train our own model). WSJF = Cost-of-Delay/effort: the brand spec + quick wins rank first; the Monday epic decomposes into the cheap sub-items the spec defines. license_tier: ORIGINAL

dependencies 3 imports · 0 importers

nx_pm_decision_matrix.nx nx_pm_review_log.nx nx_syscalls.nx nx_hosting_backlog.nx

imports: nx_pm_decision_matrix.nxnx_pm_review_log.nxnx_syscalls.nx

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main sys_mmap dm_cost_of_delay dm_wsjf dm_confidence_adjust dm_no_regression dm_ready pm_open sys_openat_append pm_w sys_write pm_cstr_len bl_puts sys_write ↻ bl_fputn sys_mmap ↻ sys_write ↻ dm_next_pick pm_flag pm_w ↻ sys_close sys_exit

structs

none

consts

17const W_HW: i64 = 2
18const W_SW: i64 = 3
19const W_USER: i64 = 4
20const W_TIME: i64 = 3
21const NBL: i64 = 14

functions

13func bl_puts(s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} sys_write(1,s,n); return 0 }
called by 1: main calls 1: sys_write
14func bl_fputn(fd: i64, v: i64) -> i64 { let b: *u8=sys_mmap(28); var m: i64=v; let t: *u8=sys_mmap(28); var k: i64=0; if m==0{t[0]=48 as u8;k=1}; while m>0{t[k]=(48+(m%10)) as u8;m=m/10;k=k+1}; var i: i64=0; while i<k{b[i]=t[k-1-i];i=i+1}; sys_write(fd,b,k); return 0 }
called by 1: main calls 2: sys_mmapsys_write
23func main() -> i64