code wiki / _hdl_build / nx_hosting_backlog.nx
nx_hosting_backlog.nx
buildroot/runtime/_hdl_build/nx_hosting_backlog.nx
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
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
structs
| none |
consts
| 17 | const W_HW: i64 = 2 |
| 18 | const W_SW: i64 = 3 |
| 19 | const W_USER: i64 = 4 |
| 20 | const W_TIME: i64 = 3 |
| 21 | const NBL: i64 = 14 |
functions
| 13 | func 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 } |
| 14 | func 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 } |
| 23 | func main() -> i64 |